mint.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "$schema": "https://mintlify.com/schema.json",
  3. "name": "Claude Code Architecture",
  4. "logo": {
  5. "dark": "/docs/logo/dark.svg",
  6. "light": "/docs/logo/light.svg"
  7. },
  8. "favicon": "/docs/favicon.svg",
  9. "colors": {
  10. "primary": "#D97706",
  11. "light": "#F59E0B",
  12. "dark": "#B45309",
  13. "background": {
  14. "dark": "#0F172A",
  15. "light": "#FFFFFF"
  16. }
  17. },
  18. "metadata": {
  19. "og:image": "https://ccb.agent-aura.top/docs/images/og-cover.png",
  20. "twitter:image": "https://ccb.agent-aura.top/docs/images/og-cover.png",
  21. "twitter:card": "summary_large_image"
  22. },
  23. "topbarCtaButton": {
  24. "type": "github",
  25. "url": "https://github.com/claude-code-best/claude-code"
  26. },
  27. "search": {
  28. "prompt": "搜索 Claude Code 架构文档..."
  29. },
  30. "redirects": [
  31. {
  32. "source": "/docs/introduction",
  33. "destination": "/docs/introduction/what-is-claude-code"
  34. }
  35. ],
  36. "navigation": [
  37. {
  38. "group": "开始",
  39. "pages": [
  40. {
  41. "group": "介绍",
  42. "pages": [
  43. "docs/introduction/what-is-claude-code",
  44. "docs/introduction/why-this-whitepaper",
  45. "docs/introduction/architecture-overview"
  46. ]
  47. }
  48. ]
  49. },
  50. {
  51. "group": "对话是如何运转的",
  52. "pages": [
  53. "docs/conversation/the-loop",
  54. "docs/conversation/streaming",
  55. "docs/conversation/multi-turn"
  56. ]
  57. },
  58. {
  59. "group": "工具:AI 的双手",
  60. "pages": [
  61. "docs/tools/what-are-tools",
  62. "docs/tools/file-operations",
  63. "docs/tools/shell-execution",
  64. "docs/tools/search-and-navigation",
  65. "docs/tools/task-management"
  66. ]
  67. },
  68. {
  69. "group": "安全与权限",
  70. "pages": [
  71. "docs/safety/why-safety-matters",
  72. "docs/safety/permission-model",
  73. "docs/safety/sandbox",
  74. "docs/safety/plan-mode"
  75. ]
  76. },
  77. {
  78. "group": "上下文工程",
  79. "pages": [
  80. "docs/context/system-prompt",
  81. "docs/context/project-memory",
  82. "docs/context/compaction",
  83. "docs/context/token-budget"
  84. ]
  85. },
  86. {
  87. "group": "多 Agent 协作",
  88. "pages": [
  89. "docs/agent/sub-agents",
  90. "docs/agent/worktree-isolation",
  91. "docs/agent/coordinator-and-swarm"
  92. ]
  93. },
  94. {
  95. "group": "可扩展性",
  96. "pages": [
  97. "docs/extensibility/mcp-protocol",
  98. "docs/extensibility/hooks",
  99. "docs/extensibility/skills",
  100. "docs/extensibility/custom-agents"
  101. ]
  102. },
  103. {
  104. "group": "揭秘:隐藏功能与内部机制",
  105. "pages": [
  106. "docs/internals/three-tier-gating",
  107. "docs/internals/feature-flags",
  108. "docs/internals/growthbook-ab-testing",
  109. "docs/internals/hidden-features",
  110. "docs/internals/ant-only-world"
  111. ]
  112. }
  113. ],
  114. "excludes": [
  115. "docs/test-plans/**",
  116. "docs/testing-spec.md",
  117. "docs/REVISION-PLAN.md"
  118. ],
  119. "footerSocials": {
  120. "github": "https://github.com/anthropics/claude-code"
  121. }
  122. }