Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes: Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
formant is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes:
Public facts
6
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Chriscooning
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/chriscooning/formant.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Chriscooning
Protocol compatibility
OpenClaw
Auth modes
api_key, oauth
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
3
Snippets
0
Languages
typescript
Parameters
bash
pnpm formant build forms/<name>.json -o forms/<name>.html
json
{
"id": "form-id",
"title": "Form Title",
"fields": [
{ "id": "welcome", "type": "welcome", "title": "Hello!", "buttonText": "Start" },
{ "id": "name", "type": "text", "title": "Your name?", "required": true },
{ "id": "end", "type": "ending", "title": "Thanks!" }
],
"submit": { "destinations": [{ "type": "excel" }] },
"theme": { "accent": "#6c5ce7", "defaultMode": "auto" }
}bash
# Build pnpm formant build <schema.json> [-o output.html] [--no-minify] [--inline] pnpm formant build forms/<name>.json --local # form + admin, requires FORMANT_ADMIN_PASSWORD pnpm formant preview <schema.json> # build + open in browser # Deploy (interactive menu) pnpm formant deploy <form.html> # Deploy (skip menu) pnpm formant deploy <form.html> --target offline # open in browser pnpm formant deploy <form.html> --target cloudflare # deploy to Cloudflare (recommended, one command) pnpm formant deploy <form.html> --target vercel # deploy to Vercel pnpm formant deploy <form.html> --target vercel --with-sheets # Worker + form + admin, Connect Google Sheet # Local/kiosk: build produces form.html + form-admin.html export FORMANT_ADMIN_PASSWORD=your-secret pnpm formant build forms/<name>.json --local # Google Sheets setup (standalone) bash scripts/setup-sheets.sh
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes:
Role: Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes: also update
skill/SKILL.md.
Generate beautiful, one-question-at-a-time HTML forms. Forms are self-contained single HTML files with keyboard navigation, dark/light mode, smooth transitions, and multiple submit destinations.
theme block to the schema. Use theme: { accent, accentHover?, defaultMode: "auto" }.--with-sheets for Vercelscripts/setup-sheets.shservice-vercel; server-side storage + API keypnpm formant build --local for kioskforms/<name>.jsonpnpm formant build forms/<name>.json -o forms/<name>.html
This produces both forms/<name>.html and forms/<name>.json (schema copy).Share with others: pnpm formant deploy <form.html> --target cloudflare — one command, database included, no setup. Vercel + Postgres also supported but requires adding a database first (see docs/setup-vercel-postgres.md).
Preview / test locally: pnpm formant deploy <form.html> --target offline or pnpm formant preview <schema.json>.
| Target | Best For | Response Collection | Command |
|--------|----------|---------------------|---------|
| Offline | Testing, internal use, email the file | Excel download on submit | pnpm formant deploy <form.html> --target offline |
| Local | Kiosk mode, iPad, no network | IndexedDB (form + admin panel) | pnpm formant build forms/<name>.json --local |
| Cloudflare | Production: one command, no setup | D1 + dashboard | pnpm formant deploy <form.html> --target cloudflare |
| Vercel | Shareable public URL, no server-side storage | Excel download (or add Google Sheets) | pnpm formant deploy <form.html> --target vercel |
| Vercel + Sheets | Connect Google Sheet (one-click OAuth) | Worker + form + admin | pnpm formant deploy <form.html> --target vercel --with-sheets |
| Vercel + Postgres | Production: Vercel + server-side storage | Postgres + dashboard | pnpm formant deploy <form.html> --target vercel --with-backend |
Deploy decision tree: Share with others → Cloudflare (recommended). "Deploy to Vercel" → Recommend Cloudflare first; if they insist, use --target vercel --with-backend and point to docs/setup-vercel-postgres.md. Test locally → Offline or preview. Google Sheets → --with-sheets. Kiosk/offline → --local.
When user says "deploy to Vercel": Recommend Cloudflare first: "For the smoothest experience, I recommend Cloudflare — one command, database included. Shall I use that?" If they agree → --target cloudflare. If they insist → --target vercel --with-backend, and tell them: "Vercel requires adding a database first. See docs/setup-vercel-postgres.md for the 3 steps. Run deploy again after completing them."
When Cloudflare deploy fails (D1 creation): The script shows wrangler output and next steps. Suggest: run cd packages/service && pnpm exec wrangler login if needed; enable Workers at the Cloudflare dashboard; or create the D1 database manually and add database_id to packages/service/wrangler.toml. See docs/setup-cloudflare-d1.md.
Use pnpm formant deploy (not pnpm deploy — that's pnpm's built-in). Run without --target for an interactive menu. See docs/deploy-options.md for full details.
| Type | Purpose | Key Properties |
|------|---------|----------------|
| welcome | Opening screen | buttonText |
| text | Single-line text | placeholder, minLength, maxLength, pattern |
| email | Email input | placeholder (auto-validates format) |
| number | Numeric input | placeholder, min, max, step |
| phone | Phone number | placeholder (loose validation) |
| url | URL input | placeholder |
| textarea | Multi-line text | placeholder, minLength, maxLength, rows |
| choice | Single select cards | options[], allowOther (auto-advances, A-Z keys) |
| multi_choice | Multi select cards | options[], minSelections, maxSelections |
| rating | Star rating | max (1-10), labels |
| scale | Numeric scale (NPS) | min, max (required), minLabel, maxLabel |
| yes_no | Binary choice | yesLabel, noLabel (Y/N keys, auto-advances) |
| date | Date picker | minDate, maxDate (ISO format) |
| dropdown | Dropdown select | options[], searchable (use for 8+ options) |
| statement | Info screen, no input | buttonText |
| ending | Final screen | showSummary, redirectUrl, redirectLabel |
{
"id": "form-id",
"title": "Form Title",
"fields": [
{ "id": "welcome", "type": "welcome", "title": "Hello!", "buttonText": "Start" },
{ "id": "name", "type": "text", "title": "Your name?", "required": true },
{ "id": "end", "type": "ending", "title": "Thanks!" }
],
"submit": { "destinations": [{ "type": "excel" }] },
"theme": { "accent": "#6c5ce7", "defaultMode": "auto" }
}
Ask before generating the schema. Do not default to Excel without asking. Explicitly ask: "Where should responses go?"
| Option | Schema mapping | Notes |
|--------|----------------|-------|
| Excel download | { "type": "excel" } | Client-side XLSX. Works on all hosting targets. |
| CSV download | { "type": "csv" } | Client-side CSV. Lighter than Excel, good for dev. |
| Local (IndexedDB) | { "type": "local" } | Kiosk mode. Use pnpm formant build --local for form + admin. |
| Connect Google Sheet | { "type": "local" } + Worker + admin | One-click OAuth. Use pnpm formant deploy --target vercel --with-sheets. |
| Google Sheets (Apps Script) | { "type": "sheets", "url": "..." } | Requires scripts/setup-sheets.sh |
| Webhook | { "type": "webhook", "url": "..." } | POST JSON to any URL |
| Cloudflare D1 | { "type": "service", "formId": "...", "endpoint": "..." } | Requires Cloudflare deploy |
| Vercel Postgres | { "type": "service", "formId": "...", "endpoint": "https://your-api.vercel.app" } | Deploy service-vercel; POSTGRES_URL required |
Rule: Always include Excel or CSV in submit.destinations unless the user explicitly opts out. Multiple destinations fire in parallel.
Example: "I'll need a few details before building. What questions do you want to ask? Do you have a website URL I should match for branding? And where should responses go — Excel download, Google Sheets, a webhook URL, or Cloudflare D1? I'll include Excel as a fallback unless you prefer otherwise."
Multiple destinations fire in parallel. Always include excel or csv as a fallback (except for local/kiosk mode).
false, hides the "Download Responses" button on the thank-you screen. Use for kiosk/local forms where the admin exports from the admin panel. Default: true. Set automatically to false when building with --local.| Type | Required Fields | Notes |
|------|-----------------|-------|
| excel | -- | Client-side XLSX download. Optional filename. |
| csv | -- | Client-side CSV download. Optional filename. Lighter, good for dev. |
| local | -- | IndexedDB storage. Use with --local build for form + admin. |
| sheets | url | Google Apps Script web app URL |
| webhook | url | POST JSON. Optional headers. Retries once on 5xx. |
| service | formId | Formant hosting service. Optional endpoint (Cloudflare Workers or Vercel Postgres API URL). |
Any field can have a next property:
"next": "field-id" -- always jump to that field"next": { "Happy": "praise", "Unhappy": "complaint", "default": "end" } -- branch on answer valueAll branches must eventually reach the ending field.
id is uniqueending field, reachable from all pathsnext targets reference valid field idschoice and dropdown have non-empty optionsscale has both min and maxsubmit.destinations includes at least { "type": "excel" } or { "type": "csv" }"satisfaction" not "q3")required: true on welcome, statement, or endingForms accept pre-filled values from URL query params. Param names match field IDs.
Example: https://example.com/form.html?name=John&email=john@example.com — the name and email fields will be pre-filled when the user reaches them. Useful for links from emails, internal tools, or CRM systems.
welcome, end with endingchoice for 2-7 options, dropdown for 8+statement to break up long formssubtitle for context, placeholder for text inputs# Build
pnpm formant build <schema.json> [-o output.html] [--no-minify] [--inline]
pnpm formant build forms/<name>.json --local # form + admin, requires FORMANT_ADMIN_PASSWORD
pnpm formant preview <schema.json> # build + open in browser
# Deploy (interactive menu)
pnpm formant deploy <form.html>
# Deploy (skip menu)
pnpm formant deploy <form.html> --target offline # open in browser
pnpm formant deploy <form.html> --target cloudflare # deploy to Cloudflare (recommended, one command)
pnpm formant deploy <form.html> --target vercel # deploy to Vercel
pnpm formant deploy <form.html> --target vercel --with-sheets # Worker + form + admin, Connect Google Sheet
# Local/kiosk: build produces form.html + form-admin.html
export FORMANT_ADMIN_PASSWORD=your-secret
pnpm formant build forms/<name>.json --local
# Google Sheets setup (standalone)
bash scripts/setup-sheets.sh
For complete field property tables, branching rules, submit destination details, theme configuration, and worked examples, see .cursor/skills/formant/schema-reference.md.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key, oauth
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot"
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/contract"
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key",
"oauth"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/chriscooning/formant#input",
"outputSchemaRef": "https://github.com/chriscooning/formant#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:45:23.645Z",
"sourceUpdatedAt": "2026-02-24T19:45:23.645Z",
"freshnessSeconds": 4428257
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:49:41.098Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "have",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:have|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Chriscooning",
"href": "https://github.com/chriscooning/formant",
"sourceUrl": "https://github.com/chriscooning/formant",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:26:35.508Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:45:23.645Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key, oauth",
"href": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:45:23.645Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/chriscooning/formant#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:45:23.645Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/chriscooning-formant/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to formant and adjacent AI workflows.