mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-03 15:43:11 +08:00
feat: add documentation for Checkbox, Input, and Select components; enhance Queue and Terminal features
- Introduced Checkbox component documentation in Chinese, covering usage, properties, and examples. - Added Input component documentation in Chinese, detailing its attributes and various states. - Created Select component documentation in Chinese, including subcomponents and usage examples. - Developed Queue management documentation, outlining its core functionalities and component structure. - Added Terminal dashboard documentation, describing its layout, core features, and usage examples. - Documented team workflows, detailing various team skills and their applications in project management.
This commit is contained in:
@@ -102,6 +102,15 @@ export default withMermaid(defineConfig({
|
||||
{ text: 'First Workflow', link: '/guide/first-workflow' },
|
||||
{ text: 'CLI Tools', link: '/guide/cli-tools' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📝 CLAUDE.md & MCP',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'CLAUDE.md Guide', link: '/guide/claude-md' },
|
||||
{ text: 'CCW MCP Tools', link: '/guide/ccwmcp' },
|
||||
{ text: 'MCP Setup', link: '/guide/mcp-setup' }
|
||||
]
|
||||
}
|
||||
],
|
||||
'/commands/': [
|
||||
@@ -128,6 +137,13 @@ export default withMermaid(defineConfig({
|
||||
{ text: 'Prep', link: '/commands/codex/prep' },
|
||||
{ text: 'Review', link: '/commands/codex/review' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🔧 CLI Reference',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'CLI Commands', link: '/cli/commands' }
|
||||
]
|
||||
}
|
||||
],
|
||||
'/skills/': [
|
||||
@@ -175,6 +191,34 @@ export default withMermaid(defineConfig({
|
||||
{ text: 'Core Skills', link: '/skills/core-skills' },
|
||||
{ text: 'Reference', link: '/skills/reference' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📋 Skill Specifications',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Document Standards', link: '/skills/specs/document-standards' },
|
||||
{ text: 'Issue Classification', link: '/skills/specs/issue-classification' },
|
||||
{ text: 'Quality Gates', link: '/skills/specs/quality-gates' },
|
||||
{ text: 'Quality Standards', link: '/skills/specs/quality-standards' },
|
||||
{ text: 'Reference Docs Spec', link: '/skills/specs/reference-docs-spec' },
|
||||
{ text: 'Review Dimensions', link: '/skills/specs/review-dimensions' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📄 Skill Templates',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Architecture Doc', link: '/skills/templates/architecture-doc' },
|
||||
{ text: 'Autonomous Action', link: '/skills/templates/autonomous-action' },
|
||||
{ text: 'Autonomous Orchestrator', link: '/skills/templates/autonomous-orchestrator' },
|
||||
{ text: 'Epics Template', link: '/skills/templates/epics-template' },
|
||||
{ text: 'Issue Template', link: '/skills/templates/issue-template' },
|
||||
{ text: 'Product Brief', link: '/skills/templates/product-brief' },
|
||||
{ text: 'Requirements PRD', link: '/skills/templates/requirements-prd' },
|
||||
{ text: 'Review Report', link: '/skills/templates/review-report' },
|
||||
{ text: 'Sequential Phase', link: '/skills/templates/sequential-phase' },
|
||||
{ text: 'Skill Markdown', link: '/skills/templates/skill-md' }
|
||||
]
|
||||
}
|
||||
],
|
||||
'/features/': [
|
||||
@@ -194,7 +238,35 @@ export default withMermaid(defineConfig({
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'API Settings', link: '/features/api-settings' },
|
||||
{ text: 'System Settings', link: '/features/system-settings' }
|
||||
{ text: 'System Settings', link: '/features/system-settings' },
|
||||
{ text: 'Settings', link: '/features/settings' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🔍 Discovery & Explorer',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Discovery', link: '/features/discovery' },
|
||||
{ text: 'Explorer', link: '/features/explorer' },
|
||||
{ text: 'Extensions', link: '/features/extensions' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📋 Issues & Tasks',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Issue Hub', link: '/features/issue-hub' },
|
||||
{ text: 'Orchestrator', link: '/features/orchestrator' },
|
||||
{ text: 'Queue', link: '/features/queue' },
|
||||
{ text: 'Sessions', link: '/features/sessions' },
|
||||
{ text: 'Tasks History', link: '/features/tasks-history' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🖥️ Terminal',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Terminal Dashboard', link: '/features/terminal' }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -228,7 +300,8 @@ export default withMermaid(defineConfig({
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Commands & Skills', link: '/reference/commands-skills' },
|
||||
{ text: 'Claude Code Hooks', link: '/reference/claude-code-hooks-guide' }
|
||||
{ text: 'Claude Code Hooks', link: '/reference/claude-code-hooks-guide' },
|
||||
{ text: 'Hook Templates Analysis', link: '/reference/hook-templates-analysis' }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -350,6 +423,7 @@ export default withMermaid(defineConfig({
|
||||
{ text: '命令', link: '/zh/commands/claude/' },
|
||||
{ text: '技能', link: '/zh/skills/claude-index' },
|
||||
{ text: '功能', link: '/zh/features/spec' },
|
||||
{ text: '组件', link: '/zh/components/' },
|
||||
{ text: '参考', link: '/zh/reference/commands-skills' }
|
||||
],
|
||||
sidebar: {
|
||||
@@ -458,6 +532,8 @@ export default withMermaid(defineConfig({
|
||||
{ text: 'Memory 记忆系统', link: '/zh/features/memory' },
|
||||
{ text: 'CLI 调用', link: '/zh/features/cli' },
|
||||
{ text: 'Dashboard 面板', link: '/zh/features/dashboard' },
|
||||
{ text: 'Terminal 终端仪表板', link: '/zh/features/terminal' },
|
||||
{ text: 'Queue 队列管理', link: '/zh/features/queue' },
|
||||
{ text: 'CodexLens', link: '/zh/features/codexlens' }
|
||||
]
|
||||
},
|
||||
@@ -470,6 +546,21 @@ export default withMermaid(defineConfig({
|
||||
]
|
||||
}
|
||||
],
|
||||
'/zh/components/': [
|
||||
{
|
||||
text: 'UI 组件',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: '概述', link: '/zh/components/index' },
|
||||
{ text: 'Button 按钮', link: '/zh/components/ui/button' },
|
||||
{ text: 'Card 卡片', link: '/zh/components/ui/card' },
|
||||
{ text: 'Input 输入框', link: '/zh/components/ui/input' },
|
||||
{ text: 'Select 选择器', link: '/zh/components/ui/select' },
|
||||
{ text: 'Checkbox 复选框', link: '/zh/components/ui/checkbox' },
|
||||
{ text: 'Badge 徽章', link: '/zh/components/ui/badge' }
|
||||
]
|
||||
}
|
||||
],
|
||||
'/zh/workflows/': [
|
||||
{
|
||||
text: '🔄 工作流系统',
|
||||
@@ -495,33 +586,5 @@ export default withMermaid(defineConfig({
|
||||
}
|
||||
}
|
||||
},
|
||||
'zh-CN': {
|
||||
label: '简体中文',
|
||||
lang: 'zh-CN',
|
||||
title: 'Claude Code Workflow 文档',
|
||||
description: 'Claude Code Workspace - 高级 AI 驱动开发环境',
|
||||
themeConfig: {
|
||||
outline: {
|
||||
level: [2, 3],
|
||||
label: '本页目录'
|
||||
},
|
||||
nav: [
|
||||
{ text: '功能', link: '/zh-CN/features/dashboard' }
|
||||
],
|
||||
sidebar: {
|
||||
'/zh-CN/features/': [
|
||||
{
|
||||
text: '⚙️ 核心功能',
|
||||
collapsible: false,
|
||||
items: [
|
||||
{ text: 'Dashboard 面板', link: '/zh-CN/features/dashboard' },
|
||||
{ text: 'Terminal 终端监控', link: '/zh-CN/features/terminal' },
|
||||
{ text: 'Queue 队列管理', link: '/zh-CN/features/queue' }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}))
|
||||
|
||||
Reference in New Issue
Block a user