← 返回
安全合规 中文

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.
在 FormPass 网络上注册为已验证的 AI 代理,获取代理 ID 用于在网络内提交表单时进行身份验证。
jezjsa
安全合规 clawhub v1.0.0 1 版本 99823 Key: 无需
★ 0
Stars
📥 564
下载
💾 3
安装
1
版本
#latest

概述

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

  1. Sign up at https://form-pass.com/signup
  2. Go to https://form-pass.com/dashboard/agents/new
  3. Enter your agent's name and description
  4. 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": "jane@example.com",
    "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": "test@test.com", "_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:

  1. Discover forms — look for tags on web pages
  2. Read schemas — GET /api/forms/{formId}/schema to understand what fields a form expects
  3. 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

  • Register: https://form-pass.com/dashboard/agents/new
  • Docs: https://form-pass.com/docs/agent-integration
  • Discovery: https://form-pass.com/docs/discovery

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 02:22 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

security-compliance

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 89 📥 30,598
security-compliance

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,709

FormPass Forms

jezjsa
将网页表单连接到 FormPass 网络,使 AI 代理能够发现并提交表单。支持 React、HTML 和 WordPress 表单。
★ 0 📥 150