From 604110272f3adf80a41ace495210af86f4a9a8fe Mon Sep 17 00:00:00 2001 From: claude-code-best Date: Wed, 1 Apr 2026 10:09:00 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8D=20?= =?UTF-8?q?docs=20=E7=9A=84=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/favicon.svg | 4 +++ docs/logo/dark.svg | 5 +++ docs/logo/light.svg | 5 +++ docs/mint.json | 84 --------------------------------------------- mint.json | 84 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 5 +-- 6 files changed, 101 insertions(+), 86 deletions(-) create mode 100644 docs/favicon.svg create mode 100644 docs/logo/dark.svg create mode 100644 docs/logo/light.svg delete mode 100644 docs/mint.json create mode 100644 mint.json diff --git a/docs/favicon.svg b/docs/favicon.svg new file mode 100644 index 0000000..9dea2e8 --- /dev/null +++ b/docs/favicon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/docs/logo/dark.svg b/docs/logo/dark.svg new file mode 100644 index 0000000..bee1784 --- /dev/null +++ b/docs/logo/dark.svg @@ -0,0 +1,5 @@ + + + + CCB + diff --git a/docs/logo/light.svg b/docs/logo/light.svg new file mode 100644 index 0000000..efc9982 --- /dev/null +++ b/docs/logo/light.svg @@ -0,0 +1,5 @@ + + + + CCB + diff --git a/docs/mint.json b/docs/mint.json deleted file mode 100644 index cd66406..0000000 --- a/docs/mint.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "$schema": "https://mintlify.com/schema.json", - "name": "Claude Code Architecture", - "logo": { - "dark": "/logo/dark.svg", - "light": "/logo/light.svg" - }, - "favicon": "/favicon.svg", - "colors": { - "primary": "#D97706", - "light": "#F59E0B", - "dark": "#B45309", - "background": { - "dark": "#0F172A", - "light": "#FFFFFF" - } - }, - "navigation": [ - { - "group": "开始", - "pages": [ - "introduction/what-is-claude-code", - "introduction/why-this-whitepaper", - "introduction/architecture-overview" - ] - }, - { - "group": "对话是如何运转的", - "pages": [ - "conversation/the-loop", - "conversation/streaming", - "conversation/multi-turn" - ] - }, - { - "group": "工具:AI 的双手", - "pages": [ - "tools/what-are-tools", - "tools/file-operations", - "tools/shell-execution", - "tools/search-and-navigation", - "tools/task-management" - ] - }, - { - "group": "安全与权限", - "pages": [ - "safety/why-safety-matters", - "safety/permission-model", - "safety/sandbox", - "safety/plan-mode" - ] - }, - { - "group": "上下文工程", - "pages": [ - "context/system-prompt", - "context/project-memory", - "context/compaction", - "context/token-budget" - ] - }, - { - "group": "多 Agent 协作", - "pages": [ - "agent/sub-agents", - "agent/worktree-isolation", - "agent/coordinator-and-swarm" - ] - }, - { - "group": "可扩展性", - "pages": [ - "extensibility/mcp-protocol", - "extensibility/hooks", - "extensibility/skills", - "extensibility/custom-agents" - ] - } - ], - "footerSocials": { - "github": "https://github.com/anthropics/claude-code" - } -} diff --git a/mint.json b/mint.json new file mode 100644 index 0000000..71b739e --- /dev/null +++ b/mint.json @@ -0,0 +1,84 @@ +{ + "$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" + } + }, + "navigation": [ + { + "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/safety/why-safety-matters", + "docs/safety/permission-model", + "docs/safety/sandbox", + "docs/safety/plan-mode" + ] + }, + { + "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/hooks", + "docs/extensibility/skills", + "docs/extensibility/custom-agents" + ] + } + ], + "footerSocials": { + "github": "https://github.com/anthropics/claude-code" + } +} diff --git a/package.json b/package.json index 1272509..884b141 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-js", - "version": "1.0.1", + "version": "1.0.2", "description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal", "type": "module", "author": "claude-code-best ", @@ -44,7 +44,8 @@ "prepare": "git config core.hooksPath .githooks", "test": "bun test", "check:unused": "knip-bun", - "health": "bun run scripts/health-check.ts" + "health": "bun run scripts/health-check.ts", + "docs:dev": "npx mintlify dev" }, "dependencies": {}, "devDependencies": {