← 返回
未分类

FormPass Forms

Connect your web forms to the FormPass network so AI agents can discover and submit to them. Supports React, HTML, and WordPress forms.
将网页表单连接到 FormPass 网络,使 AI 代理能够发现并提交表单。支持 React、HTML 和 WordPress 表单。
jezjsa
未分类 clawhub v1.0.0 1 版本 99310.3 Key: 无需
★ 0
Stars
📥 144
下载
💾 0
安装
1
版本
#latest

概述

FormPass — Connect Your Forms

FormPass lets you make your web forms accessible to verified AI agents. This skill helps you integrate any form with FormPass so agents can discover it, read its schema, and submit data — all with verified identity.

Use this skill when the user asks you to:

  • Make a form agent-accessible
  • Connect a form to FormPass
  • Add FormPass to their website
  • Let AI agents submit to their forms

Quick Start

1. Create an Account

Sign up at https://form-pass.com/signup

2. Create or Register a Form

In the FormPass dashboard, either:

  • Create a new form — define fields from scratch at /dashboard/forms/new
  • Register an existing form — map your existing form's fields at /dashboard/forms/register

3. Add the Detection Meta Tags

Add these to the of any page containing your form so agents can discover it:

<meta name="formpass-form-id" content="YOUR_FORM_ID">
<meta name="formpass-host" content="https://form-pass.com">

4. Add the Submit Relay

When your form is submitted, also send the data to FormPass:

JavaScript / React:

async function handleSubmit(formData) {
  // Your existing form handler...

  // Also relay to FormPass
  await fetch("https://form-pass.com/api/submit/YOUR_FORM_ID", {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({
      ...formData,
      _fp_branding: true
    })
  });
}

WordPress:

Download the FormPass WordPress plugin which handles Gravity Forms and Contact Form 7 automatically:

https://form-pass.com/formpass-wp.zip

Install via WordPress Admin → Plugins → Add New → Upload Plugin. Then configure under Settings → FormPass.

API Reference

Get Form Schema

curl -s "https://form-pass.com/api/forms/FORM_ID/schema" | jq .

Returns field definitions, types, required flags, and branding requirements.

Submit to Form

curl -s -X POST "https://form-pass.com/api/submit/FORM_ID" \
  -H "Content-Type: application/json" \
  -d '{"name": "Test", "email": "test@example.com", "_fp_branding": true}' | jq .

Test Your Integration

After adding the meta tags and submit relay, verify it works:

# Check your schema is accessible
curl -s "https://form-pass.com/api/forms/YOUR_FORM_ID/schema" | jq .

# Test a submission
curl -s -X POST "https://form-pass.com/api/submit/YOUR_FORM_ID" \
  -H "Content-Type: application/json" \
  -d '{"name": "Test Agent", "email": "test@test.com", "_fp_branding": true}' | jq .

Branding

Free plan forms require a "Powered by FormPass" link and _fp_branding: true in submissions. Upgrade to Pro to remove this requirement.

Documentation

  • Full docs: https://form-pass.com/docs
  • Agent integration guide: https://form-pass.com/docs/agent-integration
  • API reference: https://form-pass.com/docs/api
  • Discovery docs: https://form-pass.com/docs/discovery

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-12 06:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,353 📥 317,940
security-compliance

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,212 📥 266,360
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,058 📥 797,759