# Send FormPass Agent 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "formpass-agent",
    "name": "FormPass Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/jezjsa/formpass-agent",
    "canonicalUrl": "https://clawhub.ai/jezjsa/formpass-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/formpass-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=formpass-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "formpass-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T13:38:33.372Z",
      "expiresAt": "2026-05-08T13:38:33.372Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=formpass-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=formpass-agent",
        "contentDisposition": "attachment; filename=\"formpass-agent-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "formpass-agent"
      },
      "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/formpass-agent"
    },
    "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/formpass-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/formpass-agent",
    "agentUrl": "https://openagent3.xyz/skills/formpass-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/formpass-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/formpass-agent/agent.md"
  }
}
```
## Documentation

### 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

### 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": "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:

Discover forms — look for <meta name="formpass-form-id"> tags on web pages
Read schemas — GET /api/forms/{formId}/schema to 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

Register: https://form-pass.com/dashboard/agents/new
Docs: https://form-pass.com/docs/agent-integration
Discovery: https://form-pass.com/docs/discovery
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jezjsa
- Version: 1.0.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-01T13:38:33.372Z
- Expires at: 2026-05-08T13:38:33.372Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/formpass-agent)
- [Send to Agent page](https://openagent3.xyz/skills/formpass-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/formpass-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/formpass-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/formpass-agent)