经 AI Skill Hub 精选评估,Claude代码蓝图 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
Claude代码蓝图 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Claude代码蓝图 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/faizkhairi/claude-code-blueprint
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"claude----": {
"command": "npx",
"args": ["-y", "claude-code-blueprint"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Claude代码蓝图 执行以下任务... Claude: [自动调用 Claude代码蓝图 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"claude____": {
"command": "npx",
"args": ["-y", "claude-code-blueprint"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<details> <summary><strong>11 Agents</strong> -- Specialized subagents with model tiering (opus/sonnet/haiku)</summary>
| Agent | Model | Role |
|---|---|---|
| project-architect | opus | System design, architecture decisions, technology choices |
| backend-specialist | sonnet | API endpoints, services, database operations, middleware |
| frontend-specialist | sonnet | UI components, state management, forms, styling |
| code-reviewer | sonnet | Code quality, patterns, best practices (read-only) |
| security-reviewer | sonnet | OWASP Top 10, auth flaws, injection attacks (read-only) |
| db-analyst | sonnet | Schema analysis, query optimization, migration planning (read-only) |
| devops-engineer | sonnet | Deployment configs, CI/CD, Docker, infrastructure (read-only) |
| qa-tester | sonnet | Unit tests, integration tests, E2E tests |
| verify-plan | sonnet | 7-point mechanical plan verification (read-only) |
| docs-writer | haiku | README, API docs, changelogs, architecture docs |
| api-documenter | haiku | OpenAPI specs, integration guides (read-only) |
See agents/README.md for permission modes, cost estimates, and maxTurns.
</details>
<details> <summary><strong>17 Skills</strong> -- Natural-language-triggered workflows (no slash commands needed)</summary>
| Category | Skills | Triggers |
|---|---|---|
| Code Quality | review, review-diff | "is this secure?", "scan diff", "check for vulnerabilities" |
| Testing | test-check, e2e-check | "run the tests", "browser test", "are tests passing?" |
| Deployment | deploy-check | "deploy", "push to prod", "ready to ship" |
| Planning | sprint-plan, elicit-requirements | "let's build", "new feature", multi-step tasks |
| Session | load-session, save-session, session-end, save-diary | Session start/end, "save", "bye", "done" |
| Project | init-project, register-project, status, changelog | "new project", "status", "changelog" |
| Database | db-check | "check the schema", "validate models" |
| Utilities | tech-radar | "what's new?", "should we upgrade?" |
See skills/README.md for customization and placeholder variable setup.
</details>
<details> <summary><strong>10 Hooks</strong> -- Deterministic lifecycle automation (100% compliance, unlike ~80% for CLAUDE.md rules)</summary>
| Event | Hook | Purpose |
|---|---|---|
| SessionStart | session-start.sh | Inject workspace context |
| PreToolUse (Bash) | block-git-push.sh | Protect remote repos |
| PreToolUse (Write/Edit) | protect-config.sh | Guard linter/build configs |
| PostToolUse (Write/Edit) | notify-file-changed.sh | Verify reminder |
| PostToolUse (Bash) | post-commit-review.sh | Post-commit review |
| PreCompact | precompact-state.sh | Serialize state to disk |
| Stop | security check + cost-tracker.sh | Last defense + metrics |
| SessionEnd | session-checkpoint.sh | Guaranteed final save |
Plus 2 utility scripts: verify-mcp-sync.sh (MCP config checker) and status-line.sh (branch/project status). The 11th file in the folder is test-hooks.sh — the local test harness, run via bash hooks/test-hooks.sh to verify all hooks. It's not deployed to ~/.claude/hooks/ and isn't counted in the "10 hooks" total.
Run bash hooks/test-hooks.sh to verify all hooks pass (35 automated tests).
See hooks/README.md for the full lifecycle, testing guide, and design principles.
</details>
<details> <summary><strong>5 Rules</strong> -- Path-scoped behavioral constraints (load only when editing matching files)</summary>
| Rule | Activates On | Purpose |
|---|---|---|
| api-endpoints | **/server/api/**/*.{js,ts} | API route conventions |
| database-schema | **/prisma/**, **/drizzle/**, **/migrations/** | Schema design patterns |
| testing | **/*.test.*, **/*.spec.* | Test writing conventions |
| session-lifecycle | Always | Session start/end behaviors |
| memory-session | **/memory/** | Memory repository session management |
See rules/README.md for creating custom rules.
</details>
Also included:
| Component | Purpose |
|---|---|
| [**CLAUDE.md**](CLAUDE.md) | Battle-tested behavioral rules template |
| [**Settings Template**](examples/settings-template.json) | Full hook + permission configuration |
| [**Memory System**](memory/) | Built-in opt-in: Claude remembers preferences and session context across runs (git-ignored for privacy) |
---
Run ./setup.sh from a cloned or forked copy. Choose a preset (minimal/standard/full) and the script handles directory creation, file copying, settings merge, and placeholder replacement. See SETUP.md.
Copy one file. Get three behavioral rules. Done in 60 seconds.
```bash
Fork this repo to customize it as your own living reference. You can pull upstream updates later as the blueprint evolves.
Clone the repo, then selectively copy components into your ~/.claude/ directory.
Browse the repo on GitHub and copy only the specific files you need. No installation required.
protect-config.sh + notify-file-changed.sh + cost-tracker.sh. Copy to ~/.claude/hooks/ and wire into settings.json.verify-plan and code-reviewer../setup.sh (answer Y).---
Works with my framework? Yes. The blueprint is framework-agnostic -- it configures Claude Code, not your stack. More...
Too advanced for me? No. Start with one file (CLAUDE.md). Add more only when you need it. More...
Which plan do I need? Works on Pro, Max, Team, Enterprise, and API. Hooks are free on all plans. More...
A colleague sent you this? Start here: quickstart for referrals.
---
<details> <summary><strong>Plugin Compatibility</strong></summary>
This blueprint is designed as a standalone configuration -- no plugins required. In fact, plugins can interfere with a custom setup:
Known issues: - Plugins that modify CLAUDE.md may overwrite your custom behavioral rules - Plugins that add hooks on the same events (e.g., Stop, PreToolUse) will stack with your hooks -- this can cause slowdowns or conflicting instructions - Plugins that inject context consume tokens from your context window, leaving less room for your agents and memory system - MCP server plugins work well alongside this setup -- they add tools, not rules, so there's no conflict
Recommendation: If you adopt this blueprint, audit your installed plugins and disable any that: 1. Override CLAUDE.md or settings.json hooks 2. Inject prompts on SessionStart (conflicts with your session-lifecycle rule) 3. Add broad permissions that bypass your permission restrictions
Custom setup > generic plugins, because your setup encodes YOUR project's domain knowledge. A plugin can't know your architecture, your team's conventions, or your production constraints.
</details>
---
高质量的开源MCP工具,提供框架无关的参考架构
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:Claude代码蓝图 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | claude-code-blueprint |
| 原始描述 | 开源MCP工具:A battle-tested, framework-agnostic reference architecture for Claude Code. Begi。⭐23 · Shell |
| Topics | mcpai-codingshell |
| GitHub | https://github.com/faizkhairi/claude-code-blueprint |
| License | MIT |
| 语言 | Shell |
收录时间:2026-05-25 · 更新时间:2026-05-26 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端