mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
* feat: 第一版大重构 * fix: 修复类型问题 * chore: 更新版本到 1.3.2 * Add brave as alternative WebSearchTool * fix: 修正顺序 * fix: 修复对穷鬼模式的 auto dream 和 session memory 越过 * feat: 穷鬼模式去除 session-summary * feat: 创建 builtin-tools 包,搬运所有工具实现 将 src/tools/ 下的全部 60 个工具目录迁移至 packages/builtin-tools/src/tools/, 内部导入路径已更新为 src/ alias 模式。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: 更新 src/ 中所有工具引用至 builtin-tools 包,删除 src/tools/ - src/tools.ts 及 178 个 src/ 文件的 import 路径从 ./tools/ 改为 builtin-tools/tools/ - 删除 src/tools/ 整个目录(已迁移至 packages/builtin-tools/) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: 添加 builtin-tools 路径别名至 tsconfig,更新 bun.lock - tsconfig.json 新增 builtin-tools/* 和 builtin-tools 路径映射 - 新增 packages/builtin-tools/src 至 include Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: 为 builtin-tools、mcp-client、agent-tools 添加 @claude-code-best 作用域前缀 所有包名及 import 路径统一添加 @claude-code-best/ 前缀: - builtin-tools → @claude-code-best/builtin-tools - mcp-client → @claude-code-best/mcp-client - agent-tools → @claude-code-best/agent-tools Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: 修复 node 环境没有 bun 的问题 --------- Co-authored-by: Eric-Guo <eric.guocz@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
186 lines
4.9 KiB
JSON
186 lines
4.9 KiB
JSON
{
|
||
"$schema": "https://mintlify.com/schema.json",
|
||
"name": "Claude Code Architecture",
|
||
"logo": {
|
||
"dark": "/docs/logo/dark.svg",
|
||
"light": "/docs/logo/light.svg"
|
||
},
|
||
"favicon": "/docs/favicon.svg",
|
||
"colors": {
|
||
"primary": "#D97706",
|
||
"light": "#F59E0B",
|
||
"dark": "#B45309",
|
||
"background": {
|
||
"dark": "#0F172A",
|
||
"light": "#FFFFFF"
|
||
}
|
||
},
|
||
"metadata": {
|
||
"og:image": "https://ccb.agent-aura.top/docs/images/og-cover.png",
|
||
"twitter:image": "https://ccb.agent-aura.top/docs/images/og-cover.png",
|
||
"twitter:card": "summary_large_image"
|
||
},
|
||
"topbarCtaButton": {
|
||
"type": "github",
|
||
"url": "https://github.com/claude-code-best/claude-code"
|
||
},
|
||
"search": {
|
||
"prompt": "搜索 Claude Code 架构文档..."
|
||
},
|
||
"redirects": [
|
||
{
|
||
"source": "/docs/introduction",
|
||
"destination": "/docs/introduction/what-is-claude-code"
|
||
}
|
||
],
|
||
"navigation": [
|
||
{
|
||
"group": "开始",
|
||
"pages": [
|
||
{
|
||
"group": "介绍",
|
||
"pages": [
|
||
"docs/introduction/what-is-claude-code",
|
||
"docs/introduction/why-this-whitepaper",
|
||
"docs/introduction/architecture-overview"
|
||
]
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"group": "对话是如何运转的",
|
||
"pages": [
|
||
"docs/conversation/the-loop",
|
||
"docs/conversation/streaming",
|
||
"docs/conversation/multi-turn"
|
||
]
|
||
},
|
||
{
|
||
"group": "工具:AI 的双手",
|
||
"pages": [
|
||
"docs/tools/what-are-tools",
|
||
"docs/tools/file-operations",
|
||
"docs/tools/shell-execution",
|
||
"docs/tools/search-and-navigation",
|
||
"docs/tools/task-management"
|
||
]
|
||
},
|
||
{
|
||
"group": "上下文工程",
|
||
"pages": [
|
||
"docs/context/system-prompt",
|
||
"docs/context/project-memory",
|
||
"docs/context/compaction",
|
||
"docs/context/token-budget"
|
||
]
|
||
},
|
||
{
|
||
"group": "多 Agent 协作",
|
||
"pages": [
|
||
"docs/agent/sub-agents",
|
||
"docs/agent/worktree-isolation",
|
||
"docs/agent/coordinator-and-swarm"
|
||
]
|
||
},
|
||
{
|
||
"group": "可扩展性",
|
||
"pages": [
|
||
"docs/extensibility/mcp-protocol",
|
||
"docs/extensibility/mcp-configuration",
|
||
"docs/extensibility/hooks",
|
||
"docs/extensibility/skills",
|
||
"docs/extensibility/custom-agents"
|
||
]
|
||
},
|
||
{
|
||
"group": "安全与权限",
|
||
"pages": [
|
||
"docs/safety/why-safety-matters",
|
||
"docs/safety/permission-model",
|
||
"docs/safety/sandbox",
|
||
"docs/safety/plan-mode",
|
||
"docs/safety/auto-mode"
|
||
]
|
||
},
|
||
{
|
||
"group": "揭秘:隐藏功能与内部机制",
|
||
"pages": [
|
||
"docs/internals/three-tier-gating",
|
||
"docs/internals/feature-flags",
|
||
"docs/internals/growthbook-ab-testing",
|
||
"docs/internals/growthbook-adapter",
|
||
"docs/internals/sentry-setup",
|
||
"docs/internals/hidden-features",
|
||
"docs/internals/ant-only-world",
|
||
"docs/features/debug-mode",
|
||
"docs/features/buddy"
|
||
]
|
||
},
|
||
{
|
||
"group": "隐藏功能详解",
|
||
"pages": [
|
||
{
|
||
"group": "Agent 与协作",
|
||
"pages": [
|
||
"docs/features/coordinator-mode",
|
||
"docs/features/fork-subagent",
|
||
"docs/features/daemon",
|
||
"docs/features/teammem",
|
||
"docs/features/pipes-and-lan",
|
||
"docs/features/lan-pipes",
|
||
"docs/features/uds-inbox"
|
||
]
|
||
},
|
||
{
|
||
"group": "运行模式",
|
||
"pages": [
|
||
"docs/features/kairos",
|
||
"docs/features/voice-mode",
|
||
"docs/features/bridge-mode",
|
||
"docs/features/remote-control-self-hosting",
|
||
"docs/features/proactive",
|
||
"docs/features/ultraplan"
|
||
]
|
||
},
|
||
{
|
||
"group": "工具增强",
|
||
"pages": [
|
||
"docs/features/mcp-skills",
|
||
"docs/features/tree-sitter-bash",
|
||
"docs/features/bash-classifier",
|
||
"docs/features/web-browser-tool",
|
||
"docs/features/web-search-tool",
|
||
"docs/features/experimental-skill-search",
|
||
"docs/features/langfuse-monitoring",
|
||
"docs/features/computer-use",
|
||
"docs/features/claude-in-chrome-mcp"
|
||
]
|
||
},
|
||
{
|
||
"group": "上下文与自动化",
|
||
"pages": [
|
||
"docs/features/token-budget",
|
||
"docs/features/context-collapse",
|
||
"docs/features/workflow-scripts",
|
||
"docs/features/auto-dream"
|
||
]
|
||
},
|
||
"docs/features/tier3-stubs"
|
||
]
|
||
},
|
||
{
|
||
"group": "基础设施与依赖",
|
||
"pages": [
|
||
"docs/auto-updater",
|
||
"docs/lsp-integration",
|
||
"docs/external-dependencies",
|
||
"docs/telemetry-remote-config-audit"
|
||
]
|
||
}
|
||
],
|
||
"excludes": [],
|
||
"footerSocials": {
|
||
"github": "https://github.com/anthropics/claude-code"
|
||
}
|
||
}
|