mint.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. "navigation": [
  19. {
  20. "group": "开始",
  21. "pages": [
  22. "docs/introduction/what-is-claude-code",
  23. "docs/introduction/why-this-whitepaper",
  24. "docs/introduction/architecture-overview"
  25. ]
  26. },
  27. {
  28. "group": "对话是如何运转的",
  29. "pages": [
  30. "docs/conversation/the-loop",
  31. "docs/conversation/streaming",
  32. "docs/conversation/multi-turn"
  33. ]
  34. },
  35. {
  36. "group": "工具:AI 的双手",
  37. "pages": [
  38. "docs/tools/what-are-tools",
  39. "docs/tools/file-operations",
  40. "docs/tools/shell-execution",
  41. "docs/tools/search-and-navigation",
  42. "docs/tools/task-management"
  43. ]
  44. },
  45. {
  46. "group": "安全与权限",
  47. "pages": [
  48. "docs/safety/why-safety-matters",
  49. "docs/safety/permission-model",
  50. "docs/safety/sandbox",
  51. "docs/safety/plan-mode"
  52. ]
  53. },
  54. {
  55. "group": "上下文工程",
  56. "pages": [
  57. "docs/context/system-prompt",
  58. "docs/context/project-memory",
  59. "docs/context/compaction",
  60. "docs/context/token-budget"
  61. ]
  62. },
  63. {
  64. "group": "多 Agent 协作",
  65. "pages": [
  66. "docs/agent/sub-agents",
  67. "docs/agent/worktree-isolation",
  68. "docs/agent/coordinator-and-swarm"
  69. ]
  70. },
  71. {
  72. "group": "可扩展性",
  73. "pages": [
  74. "docs/extensibility/mcp-protocol",
  75. "docs/extensibility/hooks",
  76. "docs/extensibility/skills",
  77. "docs/extensibility/custom-agents"
  78. ]
  79. }
  80. ],
  81. "footerSocials": {
  82. "github": "https://github.com/anthropics/claude-code"
  83. }
  84. }