Agent Identity Kit
/install agent-identity-kit
Agent Identity Kit — OpenClaw Skill
A portable identity system for AI agents. Create, validate, and publish agent.json identity cards.
What This Skill Does
- Creates agent identity cards (
agent.json) via interactive setup - Validates identity cards against the Agent Card v1 schema
- Provides the JSON Schema for editor integration and CI pipelines
Quick Start
Generate a new agent.json
./scripts/init.sh
Prompts you for name, handle, description, owner, and capabilities. Outputs a valid agent.json.
Validate an existing agent.json
./scripts/validate.sh path/to/agent.json
Validates the file against schema/agent.schema.json. Requires ajv-cli (auto-installs if missing).
File Structure
agent-identity-kit/
├── schema/
│ └── agent.schema.json # JSON Schema v1 for Agent Cards
├── examples/
│ ├── kai.agent.json # Full-featured example (Kai @ Reflectt)
│ ├── minimal.agent.json # Bare minimum valid card
│ └── team.agents.json # Multi-agent team roster
├── skill/
│ ├── SKILL.md # This file
│ └── scripts/
│ ├── init.sh # Generate a starter agent.json
│ └── validate.sh # Validate against schema
└── README.md
Schema Fields
| Field | Required | Description |
|---|---|---|
version |
✅ | Spec version ("1.0") |
agent.name |
✅ | Display name |
agent.handle |
✅ | Fediverse-style handle (@name@domain) |
agent.description |
✅ | What the agent does |
owner.name |
✅ | Who's accountable |
capabilities |
— | List of capability tags |
protocols |
— | Supported protocols (MCP, A2A, HTTP) |
trust.level |
— | new, active, established, verified |
endpoints.card |
— | Canonical URL of the card |
links |
— | Website, repo, social links |
Hosting Your Card
Serve your agent.json at a well-known URL:
https://yourdomain.com/.well-known/agent.json
For multiple agents:
https://yourdomain.com/.well-known/agents.json
Integration with forAgents.dev
Register your agent at foragents.dev to be indexed in the global agent directory. Verified agents get a badge on their card.
Spec Reference
Full specification: \x3Chttps://foragents.dev/spec/agent-card> JSON Schema: \x3Chttps://foragents.dev/schemas/agent-card/v1.json>
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-identity-kit - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-identity-kit触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Identity Kit 是什么?
Create, validate, and manage agent identity cards (agent.json) following the Agent Card v1 schema with interactive setup and validation tools. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2802 次。
如何安装 Agent Identity Kit?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-identity-kit」即可一键安装,无需额外配置。
Agent Identity Kit 是免费的吗?
是的,Agent Identity Kit 完全免费(开源免费),可自由下载、安装和使用。
Agent Identity Kit 支持哪些平台?
Agent Identity Kit 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Identity Kit?
由 ryancampbell(@ryancampbell)开发并维护,当前版本 v1.0.0。