Developer Tools

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.

01

CLI

npm install -g agentblueprint
agentblueprint list
agentblueprint download <blueprint-id> --platform servicenow

Downloads 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).

02

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.

list_blueprintsget_blueprintdownload_blueprintget_use_caseget_business_caseget_implementation_planget_implementation_specget_business_profile
03

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.