Bring Blueprints Into Your Workflow
Every blueprint exports as an Agent Skills directory — an open standard for giving coding agents structured context. Supported by Claude Code, Codex, Cursor, and 18+ tools.
Install via npm: npm install -g agentblueprint. The agentblueprint package includes both the CLI and a built-in MCP server for AI coding agents.
CLI
npm install -g agentblueprint
agentblueprint list
agentblueprint download <blueprint-id> --platform servicenowDownloads the full Implementation Spec as an Agent Skills directory. Any coding agent that supports Agent Skills auto-discovers the SKILL.md file.
The download command prompts for an API token on first use. Short ID prefixes work (e.g. dbbf3118 instead of the full UUID).
MCP Server
{
"mcpServers": {
"agent-blueprint": {
"command": "npx",
"args": ["-y", "agentblueprint", "serve"]
}
}
}Add this to your Claude Code, Cursor, Codex, or other MCP-compatible agent config. Your coding agent gets direct access to your blueprints without leaving the editor.
Export from the App
Click “Export Implementation Spec” on any blueprint page to download a ZIP containing the full Agent Skills directory: SKILL.md + GETTING-STARTED.md + 9 reference files + deployment guides + validation script.