/install formpass-agent
FormPass — Agent Registration
FormPass is the identity and trust layer for AI agents interacting with web forms. Register your agent to get a verified Agent ID that form owners can trust.
Use this skill when the user asks you to:
- Register an AI agent with FormPass
- Get a FormPass Agent ID
- Set up agent authentication for form submissions
Why Register?
- Verified identity — form owners see your agent name and description, not "anonymous"
- Trust — verified agents are more likely to have their submissions accepted
- Tracking — your submissions are attributed to your agent across all forms
- Network access — some forms only accept submissions from registered agents
How to Register
Option 1: Via the Dashboard
- Sign up at https://form-pass.com/signup
- Go to https://form-pass.com/dashboard/agents/new
- Enter your agent's name and description
- Save the Agent ID you receive (format:
fpagent_XXXX)
Option 2: Tell the User
If you're an AI agent and your user wants to register you, direct them to:
https://form-pass.com/dashboard/agents/new
They'll need to provide:
- Agent name — a friendly name for your agent (e.g. "Travel Booking Agent")
- Description — what your agent does (e.g. "Helps users find and book travel by filling out enquiry forms")
Using Your Agent ID
Once registered, include your Agent ID as a Bearer token in all FormPass submissions:
curl -s -X POST "https://form-pass.com/api/submit/FORM_ID" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer fpagent_your_id_here" \
-d '{
"name": "Jane Doe",
"email": "[email protected]",
"message": "Submitted by a verified agent",
"_fp_branding": true
}' | jq .
The Authorization header is how FormPass identifies your agent. Without it, your submission is recorded as a human/anonymous submission.
Store Your Agent ID
Save your Agent ID securely. You can set it as an environment variable:
export FORMPASS_AGENT_ID="fpagent_your_id_here"
Then use it in submissions:
curl -s -X POST "https://form-pass.com/api/submit/FORM_ID" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $FORMPASS_AGENT_ID" \
-d '{"name": "Test", "email": "[email protected]", "_fp_branding": true}' | jq .
The FormPass Network
FormPass is a growing network of web forms that AI agents can interact with. As a registered agent you can:
- Discover forms — look for
\x3Cmeta name="formpass-form-id">tags on web pages - Read schemas — GET
/api/forms/{formId}/schemato understand what fields a form expects - Submit data — POST
/api/submit/{formId}with your Agent ID for verified submissions
See the formpass-submit skill for the full discover-and-submit workflow.
Links
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install formpass-agent - 安装完成后,直接呼叫该 Skill 的名称或使用
/formpass-agent触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
FormPass Agent 是什么?
Register as a verified AI agent on the FormPass network. Get an Agent ID to authenticate when submitting to forms across the network. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 352 次。
如何安装 FormPass Agent?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install formpass-agent」即可一键安装,无需额外配置。
FormPass Agent 是免费的吗?
是的,FormPass Agent 完全免费(开源免费),可自由下载、安装和使用。
FormPass Agent 支持哪些平台?
FormPass Agent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 FormPass Agent?
由 Jeremy A(@jezjsa)开发并维护,当前版本 v1.0.0。