{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-identity-kit",
    "name": "Agent Identity Kit",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ryancampbell/agent-identity-kit",
    "canonicalUrl": "https://clawhub.ai/ryancampbell/agent-identity-kit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-identity-kit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-identity-kit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "examples/kai.agent.json",
      "examples/minimal.agent.json",
      "examples/team.agents.json",
      "schema/agent.schema.json",
      "scripts/init.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-identity-kit"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agent-identity-kit",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Agent Identity Kit — OpenClaw Skill",
        "body": "A portable identity system for AI agents. Create, validate, and publish agent.json identity cards."
      },
      {
        "title": "What This Skill Does",
        "body": "Creates agent identity cards (agent.json) via interactive setup\nValidates identity cards against the Agent Card v1 schema\nProvides the JSON Schema for editor integration and CI pipelines"
      },
      {
        "title": "Generate a new agent.json",
        "body": "./scripts/init.sh\n\nPrompts you for name, handle, description, owner, and capabilities. Outputs a valid agent.json."
      },
      {
        "title": "Validate an existing agent.json",
        "body": "./scripts/validate.sh path/to/agent.json\n\nValidates the file against schema/agent.schema.json. Requires ajv-cli (auto-installs if missing)."
      },
      {
        "title": "File Structure",
        "body": "agent-identity-kit/\n├── schema/\n│   └── agent.schema.json       # JSON Schema v1 for Agent Cards\n├── examples/\n│   ├── kai.agent.json           # Full-featured example (Kai @ Reflectt)\n│   ├── minimal.agent.json       # Bare minimum valid card\n│   └── team.agents.json         # Multi-agent team roster\n├── skill/\n│   ├── SKILL.md                 # This file\n│   └── scripts/\n│       ├── init.sh              # Generate a starter agent.json\n│       └── validate.sh          # Validate against schema\n└── README.md"
      },
      {
        "title": "Schema Fields",
        "body": "FieldRequiredDescriptionversion✅Spec version (\"1.0\")agent.name✅Display nameagent.handle✅Fediverse-style handle (@name@domain)agent.description✅What the agent doesowner.name✅Who's accountablecapabilities—List of capability tagsprotocols—Supported protocols (MCP, A2A, HTTP)trust.level—new, active, established, verifiedendpoints.card—Canonical URL of the cardlinks—Website, repo, social links"
      },
      {
        "title": "Hosting Your Card",
        "body": "Serve your agent.json at a well-known URL:\n\nhttps://yourdomain.com/.well-known/agent.json\n\nFor multiple agents:\n\nhttps://yourdomain.com/.well-known/agents.json"
      },
      {
        "title": "Integration with forAgents.dev",
        "body": "Register your agent at foragents.dev to be indexed in the global agent directory. Verified agents get a badge on their card."
      },
      {
        "title": "Spec Reference",
        "body": "Full specification: https://foragents.dev/spec/agent-card\nJSON Schema: https://foragents.dev/schemas/agent-card/v1.json"
      }
    ],
    "body": "Agent Identity Kit — OpenClaw Skill\n\nA portable identity system for AI agents. Create, validate, and publish agent.json identity cards.\n\nWhat This Skill Does\nCreates agent identity cards (agent.json) via interactive setup\nValidates identity cards against the Agent Card v1 schema\nProvides the JSON Schema for editor integration and CI pipelines\nQuick Start\nGenerate a new agent.json\n./scripts/init.sh\n\n\nPrompts you for name, handle, description, owner, and capabilities. Outputs a valid agent.json.\n\nValidate an existing agent.json\n./scripts/validate.sh path/to/agent.json\n\n\nValidates the file against schema/agent.schema.json. Requires ajv-cli (auto-installs if missing).\n\nFile Structure\nagent-identity-kit/\n├── schema/\n│   └── agent.schema.json       # JSON Schema v1 for Agent Cards\n├── examples/\n│   ├── kai.agent.json           # Full-featured example (Kai @ Reflectt)\n│   ├── minimal.agent.json       # Bare minimum valid card\n│   └── team.agents.json         # Multi-agent team roster\n├── skill/\n│   ├── SKILL.md                 # This file\n│   └── scripts/\n│       ├── init.sh              # Generate a starter agent.json\n│       └── validate.sh          # Validate against schema\n└── README.md\n\nSchema Fields\nField\tRequired\tDescription\nversion\t✅\tSpec version (\"1.0\")\nagent.name\t✅\tDisplay name\nagent.handle\t✅\tFediverse-style handle (@name@domain)\nagent.description\t✅\tWhat the agent does\nowner.name\t✅\tWho's accountable\ncapabilities\t—\tList of capability tags\nprotocols\t—\tSupported protocols (MCP, A2A, HTTP)\ntrust.level\t—\tnew, active, established, verified\nendpoints.card\t—\tCanonical URL of the card\nlinks\t—\tWebsite, repo, social links\nHosting Your Card\n\nServe your agent.json at a well-known URL:\n\nhttps://yourdomain.com/.well-known/agent.json\n\n\nFor multiple agents:\n\nhttps://yourdomain.com/.well-known/agents.json\n\nIntegration with forAgents.dev\n\nRegister your agent at foragents.dev to be indexed in the global agent directory. Verified agents get a badge on their card.\n\nSpec Reference\n\nFull specification: https://foragents.dev/spec/agent-card JSON Schema: https://foragents.dev/schemas/agent-card/v1.json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ryancampbell/agent-identity-kit",
    "publisherUrl": "https://clawhub.ai/ryancampbell/agent-identity-kit",
    "owner": "ryancampbell",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-identity-kit",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-identity-kit",
    "agentUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-identity-kit/agent.md"
  }
}