AI Skill Hub 强烈推荐:claude-code-config MCP工具 是一款优质的MCP工具。AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
claude-code-config MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
claude-code-config MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/AnastasiyaW/claude-code-config
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"claude-code-config-mcp--": {
"command": "npx",
"args": ["-y", "claude-code-config"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 claude-code-config MCP工具 执行以下任务... Claude: [自动调用 claude-code-config MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"claude-code-config_mcp__": {
"command": "npx",
"args": ["-y", "claude-code-config"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
面向 Claude Code 智能体的实战配置系统,包含架构原则、方案对比、技能、Hook 脚本、drop-in 规则和项目模板。
核心功能: - principles/ - 独立架构原则,每个解决一个具体失败模式 - rules/ - drop-in 规则(工作纪律、安全 Hook 配套文档;Agent 设计规则已移至 agent-harness-design 技能) - alternatives/ - 每个问题 2-5 种方案对比,附决策表 - hooks/ - 即用型 Hook 脚本(安全防护、会话管理、技能路由),用 scripts/install_hooks.py 一键注册 - workflows/ - 动态工作流命令(/deep-review-flow、/research-cn-ru)+ 实测成本经验 - templates/ - 适用于不同项目类型的 CLAUDE.md 起始模板 + 验证计划、记忆、项目编年史和长期项目脚手架(feature_list.json + init.sh) - skills/ - 领域技能(AI/ML、视频制作、前端、iOS、写作、代码审查、验证、运维工具,包括 harness-audit 五子系统评估、workflow-orchestration 和 gemini-delegate 跨 CLI 委派) - 跨 harness 支持:每个项目一个 AGENTS.md,同时供 Claude Code、Gemini CLI、Codex 读取(无需符号链接),见 rules/cross-harness-agents-md.md
安装: claude plugin install https://github.com/AnastasiyaW/claude-code-config 或直接复制所需文件。
灵感来源: 部分设计理念受到中国工程社区的启发,包括红线(红线)模式、规范驱动开发(OpenSpec)、经验库模式。
---
Three paths depending on what you need:
```bash git clone https://github.com/AnastasiyaW/claude-code-config ~/claude-code-config
| Project type | Minimum viable set |
|---|---|
| **Any project** | 5 safety hooks (destructive-command, secret-leak, git-destructive, git-auto-backup, session-drift-validator) + Principles 09 (Supply Chain), 10 (Agent Security), 11 (Documentation Integrity) |
| **Web app** | above + frontend-design skill + Principles 04 (Deterministic Orchestration), 05 (Structured Reasoning) |
| **ML / data pipeline** | above + flux2-*, diffusion-engineering, vlm-segmentation skills + Principles 03 (Autoresearch), 12 (Low-Signal Training) |
| **Multi-agent / parallel sessions** | above + [mclaude](https://github.com/AnastasiyaW/mclaude) + Principles 01 (Harness), 06 (Multi-Agent), 18 (Multi-Session Coordination), 19 (Inter-Agent Communication) |
| **Library / package** | above + Principles 08 (Skills Best Practices), 17 (DBS Skill Creation) |
| **More than one CLI agent (Claude + Gemini / Codex)** | above + [rules/cross-harness-agents-md.md](rules/cross-harness-agents-md.md) (one AGENTS.md per project, no symlinks) + gemini-delegate skill |
See AGENTS.md for the procedure an agent follows after install, HOW-IT-WORKS.md for the mechanics of each layer, and docs/runtime-wiring.md for the live verification contract.
Moved the config to a new machine or account and most skills stopped being offered? Nothing raises an error when that happens — see docs/skill-tree-recovery.md and run python scripts/recover_skill_trees.py --report.
---
A practical configuration kit for Claude Code, Codex, and other coding agents. It contains architectural principles, enforcement hooks, skills, drop-in rules, starter templates, and dynamic-workflow commands. Drop the relevant parts into a project so the agent starts from verified working patterns instead of rediscovering them every session.
This is not a collection of tips. It is a system that teaches your agent how to work - when to use one agent vs many, how to verify its own output, how to manage context across long sessions, how to not get poisoned by malicious packages.
claude plugin install https://github.com/AnastasiyaW/claude-code-config
Then in your Claude Code chat:
Read AGENTS.md and pick the principles, hooks, and skills that match my project.
python ~/claude-code-config/scripts/install_hooks.py --global
cd /your/project
git clone https://github.com/AnastasiyaW/claude-code-config .claude-config
python .claude-config/scripts/install_hooks.py --local
cp -r .claude-config/skills .claude/skills
This keeps everything under .claude/ in your repo, nothing global.
exclude-newer = "7 days" ```
Agent Security - covers 7 real attack categories with documented CVEs: in-code prompt injection, repo metadata poisoning, package metadata, MCP tool poisoning, web content injection, memory poisoning, sandbox escape. Includes a six-layer defense architecture.
---
高价值MCP工具���114星标显示认可度。提供标准化Claude集成方案,架构清晰,文档完善,适合企业级AI代理开发。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,claude-code-config MCP工具 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | claude-code-config |
| 原始描述 | 开源MCP工具:Claude Code skills, architectural principles, and alternative approaches for AI-。⭐114 · Python |
| Topics | MCP工具Claude集成代码生成AI代理Python |
| GitHub | https://github.com/AnastasiyaW/claude-code-config |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端