# Send GateCrash Forms to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gatecrash-forms",
    "name": "GateCrash Forms",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Phoenix2479/gatecrash-forms",
    "canonicalUrl": "https://clawhub.ai/Phoenix2479/gatecrash-forms",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gatecrash-forms",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gatecrash-forms",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "examples/contact.json",
      "examples/feedback.json",
      "examples/registration.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gatecrash-forms",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T12:58:40.080Z",
      "expiresAt": "2026-05-10T12:58:40.080Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gatecrash-forms",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gatecrash-forms",
        "contentDisposition": "attachment; filename=\"gatecrash-forms-0.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gatecrash-forms"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gatecrash-forms"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gatecrash-forms",
    "downloadUrl": "https://openagent3.xyz/downloads/gatecrash-forms",
    "agentUrl": "https://openagent3.xyz/skills/gatecrash-forms/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gatecrash-forms/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gatecrash-forms/agent.md"
  }
}
```
## Documentation

### GateCrash Forms Skill

CLI-first form builder with BYOK (Bring Your Own Keys) philosophy

Generate beautiful, secure HTML forms from JSON schemas. Email notifications via YOUR SMTP server, response storage on YOUR infrastructure. No external services, no gatekeeping.

### ✨ Kimi Claw Ready

Perfect for Kimi's 24/7 cloud agents:

✅ Works natively in Kimi.com browser tabs
✅ Installed via ClawHub's 5,000+ skill library
✅ 40GB cloud storage for form responses
✅ Agent-friendly email providers (agentmail.to, Resend)

Your AI assistant can now generate and manage forms for you!

### Generate a Form

./scripts/generate.sh examples/feedback.json output.html

### Start Server

./scripts/serve.sh 3000

Visits http://localhost:3000 to see all forms.

### Initialize Project

./scripts/init.sh

Creates forms/ and responses/ directories with example forms.

### Features

🎨 8+ Field Types: text, email, textarea, select, radio, checkbox, scale/rating, date
🔒 Security Hardened: XSS prevention, CSRF tokens, honeypot spam protection, rate limiting
📧 BYOK Email: Use your own SMTP server (Zoho, Gmail, SendGrid, etc.)
💾 Local Storage: Responses saved as JSON or CSV
🎨 Beautiful UI: Gradient purple theme, responsive design
🚀 Self-Hosted: Deploy anywhere Node.js runs

### Configuration

Set up your SMTP credentials globally:

gatecrash-forms config smtp.host smtp.example.com
gatecrash-forms config smtp.port 465
gatecrash-forms config smtp.secure true
gatecrash-forms config smtp.auth.user your-email@example.com
gatecrash-forms config smtp.auth.pass your-password

Or configure per-form in the JSON schema.

### Example Form Schema

{
  "title": "Customer Feedback",
  "description": "We'd love to hear from you!",
  "fields": [
    {
      "type": "scale",
      "name": "rating",
      "label": "Overall satisfaction",
      "min": 1,
      "max": 5,
      "required": true
    },
    {
      "type": "checkbox",
      "name": "topics",
      "label": "What interested you most?",
      "options": ["Product", "Service", "Price", "Experience"]
    },
    {
      "type": "textarea",
      "name": "comments",
      "label": "Additional comments",
      "maxLength": 500
    }
  ],
  "submit": {
    "email": "your-email@example.com",
    "storage": "responses/feedback.json"
  }
}

### Use Cases

Customer Feedback: Collect product/service feedback
Contact Forms: Simple contact forms for websites
Event Registration: Sign up forms for workshops/events
Surveys: Market research, user surveys
Lead Generation: Capture leads without third-party services

### Philosophy: We Crash Gates

GateCrash Forms is NOT a service. It's a toolmaker.

✅ Your SMTP server (email notifications)
✅ Your storage (form responses)
✅ Your deployment (host anywhere)
✅ Your data (no external servers)

No GateCrash accounts. No GateCrash servers. No gatekeeping.

### Links

GitHub: https://github.com/Phoenix2479/gatecrash-forms
npm: https://www.npmjs.com/package/gatecrash-forms
Manifesto: Read MANIFESTO.md in the project
Documentation: Full docs in README.md

### Commands Reference

# Generate form from schema
gatecrash-forms generate schema.json output.html

# Start HTTP server
gatecrash-forms serve [port]

# Set global config
gatecrash-forms config <key> <value>

# Initialize project
gatecrash-forms init

# Show help
gatecrash-forms help

### License

MIT - Use it, fork it, sell it. Just don't gatekeep it.

Made with 🔥 by Dinki & Molty

"We crash gates. We don't build new ones."
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Phoenix2479
- Version: 0.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T12:58:40.080Z
- Expires at: 2026-05-10T12:58:40.080Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gatecrash-forms)
- [Send to Agent page](https://openagent3.xyz/skills/gatecrash-forms/agent)
- [JSON manifest](https://openagent3.xyz/skills/gatecrash-forms/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gatecrash-forms/agent.md)
- [Download page](https://openagent3.xyz/downloads/gatecrash-forms)