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 most modern coding agents.
Install via npm: npm install -g agentblueprint. The agentblueprint package includes both the CLI and a built-in MCP server for AI coding agents. API tokens are issued with an engagement; if your organization works with us, you're ready to go.
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 Platform
Click “Export Implementation Spec” on any blueprint page to download a ZIP containing the full Agent Skills directory: SKILL.md, GETTING-STARTED.md, reference files, deployment guides, and a validation script.