Skip to content

Commit 6041102

Browse files
docs: 尝试修复 docs 的位置
1 parent b32dd45 commit 6041102

6 files changed

Lines changed: 101 additions & 86 deletions

File tree

docs/favicon.svg

Lines changed: 4 additions & 0 deletions
Loading

docs/logo/dark.svg

Lines changed: 5 additions & 0 deletions
Loading

docs/logo/light.svg

Lines changed: 5 additions & 0 deletions
Loading

docs/mint.json

Lines changed: 0 additions & 84 deletions
This file was deleted.

mint.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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+
}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-js",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
55
"type": "module",
66
"author": "claude-code-best <claude-code-best@proton.me>",
@@ -44,7 +44,8 @@
4444
"prepare": "git config core.hooksPath .githooks",
4545
"test": "bun test",
4646
"check:unused": "knip-bun",
47-
"health": "bun run scripts/health-check.ts"
47+
"health": "bun run scripts/health-check.ts",
48+
"docs:dev": "npx mintlify dev"
4849
},
4950
"dependencies": {},
5051
"devDependencies": {

0 commit comments

Comments
 (0)