diff --git a/.codex/agents/cli-explore-agent.md b/.codex/agents/cli-explore-agent.md index b4c8fd89..6ec5c3ce 100644 --- a/.codex/agents/cli-explore-agent.md +++ b/.codex/agents/cli-explore-agent.md @@ -184,3 +184,33 @@ Brief summary: 3. Guess field names - ALWAYS copy from schema 4. Assume structure - ALWAYS verify against schema 5. Omit required fields + +--- + +## Post-Exploration: Exploration Notes (Generated by Orchestrator) + +**Note**: This section is executed by the orchestrator (workflow-lite-plan) after all cli-explore-agents complete, NOT by this agent. + +**Trigger**: After all exploration-{angle}.json files are generated + +**Output Files**: +- `exploration-notes.md` - Full version (consumed by Plan phase) +- `exploration-notes-refined.md` - Refined version (consumed by Execute phase, generated after Plan completes) + +**Full Version Structure (6 Sections)**: +1. **Part 1: Multi-Angle Exploration Summary** - Key findings from each angle +2. **Part 2: File Deep-Dive Summary** - Core files with relevance ≥ 0.7 (code snippets, line numbers, references) +3. **Part 3: Architecture Reasoning Chains** - Reasoning process for key decisions (problem → reasoning → conclusion) +4. **Part 4: Potential Risks and Mitigations** - Identified risks and mitigation strategies +5. **Part 5: Clarification Questions Summary** - Aggregated clarification_needs from all angles +6. **Part 6: Execution Recommendations Checklist** - Task checklist grouped by priority (P0/P1/P2) + +**Refined Version Structure** (generated after Plan completes): +- Execution-relevant file index (only files related to plan.json tasks) +- Task-relevant exploration context (relevant findings per task) +- Condensed code reference (only plan-related files) +- Execution notes (constraints, integration points, dependencies) + +**Consumption Pattern**: +- Plan phase: Fully consumes `exploration-notes.md` +- Execute phase: Consumes `exploration-notes-refined.md`, reduced noise, improved efficiency diff --git a/.codex/skills/workflow-lite-plan/phases/01-lite-plan.md b/.codex/skills/workflow-lite-plan/phases/01-lite-plan.md index 10f338fc..adf426f5 100644 --- a/.codex/skills/workflow-lite-plan/phases/01-lite-plan.md +++ b/.codex/skills/workflow-lite-plan/phases/01-lite-plan.md @@ -26,6 +26,8 @@ Intelligent lightweight planning command with dynamic workflow adaptation based |----------|-------------| | `exploration-{angle}.json` | Per-angle exploration results (1-4 files based on complexity) | | `explorations-manifest.json` | Index of all exploration files | +| `exploration-notes.md` | Full exploration log (consumed by Plan phase, 6 sections) | +| `exploration-notes-refined.md` | Refined exploration log (consumed by Execute phase, task-relevant only) | | `planning-context.md` | Evidence paths + synthesized understanding | | `plan.json` | Structured implementation plan (plan-json-schema.json) | @@ -340,6 +342,115 @@ Angles explored: ${explorationManifest.explorations.map(e => e.angle).join(', ') - ... (1-4 files based on complexity) - `${sessionFolder}/explorations-manifest.json` +**Generate Exploration Notes** (auto-generated after exploration completes): + +```javascript +// Step 1: Load all exploration JSON files +const manifest = JSON.parse(Read(`${sessionFolder}/explorations-manifest.json`)) +const explorations = manifest.explorations.map(exp => ({ + angle: exp.angle, + data: JSON.parse(Read(exp.path)) +})) + +// Step 2: Extract core files (relevance ≥ 0.7) +const coreFiles = [] +explorations.forEach(exp => { + if (Array.isArray(exp.data.relevant_files)) { + exp.data.relevant_files.forEach(f => { + if (typeof f === 'object' && f.relevance >= 0.7) { + coreFiles.push({ path: f.path, relevance: f.relevance, rationale: f.rationale, angle: exp.angle }) + } + }) + } +}) +const uniqueCoreFiles = deduplicateByPath(coreFiles.sort((a, b) => b.relevance - a.relevance)) + +// Step 3: Build exploration notes Markdown (6 sections) +const explorationLog = `# Exploration Notes: ${task_description.slice(0, 60)} + +**Generated**: ${getUtc8ISOString()} +**Task**: ${task_description} +**Complexity**: ${complexity} +**Exploration Angles**: ${explorations.map(e => e.angle).join(', ')} + +--- + +## Part 1: Multi-Angle Exploration Summary + +${explorations.map(exp => `### Angle: ${exp.angle} + +**Key Files** (priority sorted): +${formatFileList(exp.data.relevant_files)} + +**Code Patterns**: ${exp.data.patterns} + +**Integration Points**: ${exp.data.integration_points} + +**Dependencies**: ${exp.data.dependencies} + +**Constraints**: ${exp.data.constraints} +`).join('\n---\n')} + +--- + +## Part 2: File Deep-Dive Summary + +${uniqueCoreFiles.slice(0, 10).map(file => { + const content = Read(file.path) + const refs = Bash(\`rg "from ['\"].*${path.basename(file.path, path.extname(file.path))}['\"]" --type ts -n | head -10\`) + return formatFileDeepDive(file, content, refs) +}).join('\n---\n')} + +--- + +## Part 3: Architecture Reasoning Chains + +${buildReasoningChains(explorations, task_description)} + +--- + +## Part 4: Potential Risks and Mitigations + +${buildRiskMitigations(explorations, uniqueCoreFiles)} + +--- + +## Part 5: Clarification Questions Summary + +${aggregateClarifications(explorations)} + +--- + +## Part 6: Execution Recommendations Checklist + +${generateExecutionChecklist(task_description, explorations, uniqueCoreFiles)} + +--- + +## Appendix: Key Code Location Index + +| Component | File Path | Key Lines | Purpose | +|-----------|-----------|-----------|---------| +${uniqueCoreFiles.slice(0, 15).map(f => `| ${path.basename(f.path)} | ${f.path} | - | ${f.rationale} |`).join('\n')} +` + +// Step 4: Write initial exploration notes +Write(`${sessionFolder}/exploration-notes.md`, explorationLog) + +console.log(` +## Exploration Notes Generated + +File: ${sessionFolder}/exploration-notes.md +Core files: ${uniqueCoreFiles.length} +Angles: ${explorations.map(e => e.angle).join(', ')} + +This log will be fully consumed by planning phase, then refined for execution. +`) +``` + +**Output (new)**: +- `${sessionFolder}/exploration-notes.md` (full version, consumed by Plan phase) + --- ### Phase 2: Clarification (Optional, Multi-Round) @@ -557,6 +668,116 @@ close_agent({ id: planningAgentId }) **Output**: `${sessionFolder}/plan.json` +**Refine Exploration Notes** (auto-executed after Plan completes): + +**Purpose**: Refine exploration-notes.md based on actual tasks in plan.json, keeping only execution-relevant content + +```javascript +// Step 1: Load plan and exploration notes +const plan = JSON.parse(Read(`${sessionFolder}/plan.json`)) +const explorationLog = Read(`${sessionFolder}/exploration-notes.md`) + +// Step 2: Extract files and modules from plan +const planFiles = new Set() +const planScopes = new Set() +plan.tasks.forEach(task => { + if (task.scope) planScopes.add(task.scope) + if (task.modification_points) { + task.modification_points.forEach(mp => planFiles.add(mp.file)) + } + if (task.reference?.files) { + task.reference.files.forEach(f => planFiles.add(f)) + } +}) + +// Step 3: Build refined exploration notes +const refinedLog = `# Exploration Notes (Refined): ${task_description.slice(0, 60)} + +**Generated**: ${getUtc8ISOString()} +**Task**: ${task_description} +**Plan Tasks**: ${plan.tasks.length} +**Refined For**: Execution phase consumption + +--- + +## Execution-Relevant File Index + +The following files are directly related to plan.json tasks, prioritize these during execution: + +${Array.from(planFiles).map(f => `- \`${f}\``).join('\n')} + +--- + +## Part 1: Task-Relevant Exploration Context + +${plan.tasks.map(task => { + // Extract content relevant to this task from original exploration notes + return `### Task: ${task.title} + +**Scope**: \`${task.scope}\` +**Files**: ${task.modification_points?.map(mp => mp.file).join(', ') || 'N/A'} + +**Relevant Exploration Findings**: +${extractRelevantExploration(explorationLog, task)} + +**Reference Patterns**: +${task.reference?.pattern || 'See exploration notes Part 1 patterns'} + +**Risk Notes**: +${extractRelevantRisks(explorationLog, task)} +` +}).join('\n---\n')} + +--- + +## Part 2: Condensed Code Reference + +${Array.from(planFiles).slice(0, 8).map(filePath => { + // Extract file deep-dive from original exploration notes Part 2 + return extractFileDeepDive(explorationLog, filePath) || `### ${filePath}\n\n(See original exploration notes for details)` +}).join('\n---\n')} + +--- + +## Part 3: Execution Notes + +### Key Constraints (from exploration) +${extractConstraints(explorationLog)} + +### Integration Points (plan-task related) +${extractIntegrationPoints(explorationLog, planFiles)} + +### Dependencies +${extractDependencies(explorationLog, planFiles)} + +--- + +## Appendix: Full Exploration Notes Location + +Original full exploration notes: \`${sessionFolder}/exploration-notes.md\` + +For additional context, refer to: +- Part 3: Architecture Reasoning Chains +- Part 4: Potential Risks and Mitigations +- Part 5: Clarification Questions Summary +` + +// Step 4: Write refined exploration notes +Write(`${sessionFolder}/exploration-notes-refined.md`, refinedLog) + +// Step 5: Update session artifacts +console.log(` +## Exploration Notes Refined + +Original: ${sessionFolder}/exploration-notes.md (full version, for Plan reference) +Refined: ${sessionFolder}/exploration-notes-refined.md (condensed, for Execute consumption) + +Refined for ${plan.tasks.length} tasks, ${planFiles.size} files +`) +``` + +**Output (new)**: `${sessionFolder}/exploration-notes-refined.md` + --- ### Phase 4: Task Confirmation & Execution Selection @@ -683,6 +904,8 @@ executionContext = { path: exp.path })), explorations_manifest: `${sessionFolder}/explorations-manifest.json`, + exploration_log: `${sessionFolder}/exploration-notes.md`, // Full version (Plan consumption) + exploration_log_refined: `${sessionFolder}/exploration-notes-refined.md`, // Refined version (Execute consumption) plan: `${sessionFolder}/plan.json` } } @@ -699,12 +922,14 @@ executionContext = { ``` .workflow/.lite-plan/{task-slug}-{YYYY-MM-DD}/ -├── exploration-{angle1}.json # Exploration angle 1 -├── exploration-{angle2}.json # Exploration angle 2 -├── exploration-{angle3}.json # Exploration angle 3 (if applicable) -├── exploration-{angle4}.json # Exploration angle 4 (if applicable) -├── explorations-manifest.json # Exploration index -└── plan.json # Implementation plan +├── exploration-{angle1}.json # Exploration angle 1 +├── exploration-{angle2}.json # Exploration angle 2 +├── exploration-{angle3}.json # Exploration angle 3 (if applicable) +├── exploration-{angle4}.json # Exploration angle 4 (if applicable) +├── explorations-manifest.json # Exploration index +├── exploration-notes.md # Full exploration notes (Plan phase consumption) +├── exploration-notes-refined.md # Refined exploration notes (Execute phase consumption) +└── plan.json # Implementation plan ``` **Example**: diff --git a/.codex/skills/workflow-lite-plan/phases/04-lite-execute.md b/.codex/skills/workflow-lite-plan/phases/04-lite-execute.md index 97d91948..047c1d91 100644 --- a/.codex/skills/workflow-lite-plan/phases/04-lite-execute.md +++ b/.codex/skills/workflow-lite-plan/phases/04-lite-execute.md @@ -381,6 +381,21 @@ ${t.verification?.success_metrics?.length > 0 ? `\n**Success metrics**: ${t.veri // Context (reference only) const context = [] + + // Priority: reference refined exploration notes (Execute phase specific) + if (executionContext?.session?.artifacts?.exploration_log_refined) { + context.push(`### Exploration Notes (Refined) +**Read first**: ${executionContext.session.artifacts.exploration_log_refined} + +This refined notes contains only execution-relevant context: +- Execution-relevant file index (files directly related to plan tasks) +- Task-relevant exploration context (findings, patterns, risks per task) +- Condensed code reference (code snippets with line numbers) +- Execution notes (constraints, integration points, dependencies) + +**IMPORTANT**: Use this refined notes to avoid re-exploring files. DO NOT re-read files already analyzed in the notes unless verifying specific implementation details.`) + } + if (previousExecutionResults.length > 0) { context.push(`### Previous Work\n${previousExecutionResults.map(r => `- ${r.tasksSummary}: ${r.status}`).join('\n')}`) } @@ -411,12 +426,38 @@ When to use: - or `executionMethod = "Auto" AND complexity = "Low"` (global fallback) ```javascript -Task( - subagent_type="code-developer", - run_in_background=false, - description=batch.taskSummary, - prompt=buildExecutionPrompt(batch) -) +// Step 1: Create execution agent with mandatory context reading +const executionAgentId = spawn_agent({ + message: ` +## TASK ASSIGNMENT + +### MANDATORY FIRST STEPS (Agent Execute) +1. **Read role definition**: ~/.codex/agents/code-developer.md (MUST read first) +2. Read: .workflow/project-tech.json +3. Read: .workflow/project-guidelines.json +4. **Read refined exploration log**: ${executionContext?.session?.artifacts?.exploration_log_refined || 'N/A'} + +**CRITICAL**: Step 4 contains execution-relevant context including: +- Task-relevant code patterns and integration points +- Condensed code reference (with line numbers) +- Execution constraints and risk notes + +Use the notes to avoid re-exploring files - the analysis is already done. + +--- + +${buildExecutionPrompt(batch)} +` +}) + +// Step 2: Wait for execution completion +const execResult = wait({ + ids: [executionAgentId], + timeout_ms: 600000 // 10 minutes +}) + +// Step 3: Close execution agent +close_agent({ id: executionAgentId }) ``` **Result Collection**: After completion, collect result following `executionResult` structure (see Data Structures section) @@ -683,6 +724,8 @@ Passed from planning phase via global variable: artifacts: { explorations: [{angle, path}], // exploration-{angle}.json paths explorations_manifest: string, // explorations-manifest.json path + exploration_log: string, // exploration-notes.md (full version, Plan consumption) + exploration_log_refined: string, // exploration-notes-refined.md (refined version, Execute consumption) plan: string // plan.json path (always present) } } @@ -690,7 +733,8 @@ Passed from planning phase via global variable: ``` **Artifact Usage**: -- Artifact files contain detailed planning context +- **exploration_log**: Full exploration notes, for Plan phase reference, contains 6 sections +- **exploration_log_refined**: Refined exploration notes, for Execute phase consumption, task-relevant content only - Pass artifact paths to CLI tools and agents for enhanced context - See execution options above for usage examples diff --git a/ccw/docs-site/.docusaurus/client-manifest.json b/ccw/docs-site/.docusaurus/client-manifest.json index 219bc86d..7a76ecda 100644 --- a/ccw/docs-site/.docusaurus/client-manifest.json +++ b/ccw/docs-site/.docusaurus/client-manifest.json @@ -3,10 +3,16 @@ "main" ], "origins": { + "82": [ + 401, + 869, + 82 + ], "723": [ 723 ], "17896441": [ + 82, 869, 401 ], @@ -136,6 +142,7 @@ "styles": [ 11, 48, + 82, 354, 401, 792, @@ -179,6 +186,15 @@ } ] }, + "82": { + "js": [ + { + "file": "assets/js/82.83021dee.js", + "hash": "85e1a90e6c998c54", + "publicPath": "/docs/zh/assets/js/82.83021dee.js" + } + ] + }, "98": { "js": [ { @@ -263,9 +279,9 @@ "354": { "js": [ { - "file": "assets/js/runtime~main.bd5a8ace.js", - "hash": "e9e746aba7bc0059", - "publicPath": "/docs/zh/assets/js/runtime~main.bd5a8ace.js" + "file": "assets/js/runtime~main.1a215224.js", + "hash": "6124961f9fb0fe95", + "publicPath": "/docs/zh/assets/js/runtime~main.1a215224.js" } ] }, @@ -281,9 +297,9 @@ "401": { "js": [ { - "file": "assets/js/17896441.d1575d23.js", - "hash": "056571beacec7d2b", - "publicPath": "/docs/zh/assets/js/17896441.d1575d23.js" + "file": "assets/js/17896441.1cf08a80.js", + "hash": "31f054e7c91e39e1", + "publicPath": "/docs/zh/assets/js/17896441.1cf08a80.js" } ] }, @@ -398,9 +414,9 @@ "792": { "js": [ { - "file": "assets/js/main.fa249fd1.js", - "hash": "5a1abc0f0370f175", - "publicPath": "/docs/zh/assets/js/main.fa249fd1.js" + "file": "assets/js/main.4a9bfa07.js", + "hash": "0bc96b50c8fc427f", + "publicPath": "/docs/zh/assets/js/main.4a9bfa07.js" } ] }, diff --git a/ccw/docs-site/.docusaurus/docusaurus-plugin-debug/default/p/docs-docusaurus-debug-content-a52.json b/ccw/docs-site/.docusaurus/docusaurus-plugin-debug/default/p/docs-docusaurus-debug-content-a52.json index 5694a380..0e84007b 100644 --- a/ccw/docs-site/.docusaurus/docusaurus-plugin-debug/default/p/docs-docusaurus-debug-content-a52.json +++ b/ccw/docs-site/.docusaurus/docusaurus-plugin-debug/default/p/docs-docusaurus-debug-content-a52.json @@ -1 +1 @@ -{"allContent":{"docusaurus-plugin-content-docs":{"default":{"loadedVersions":[{"versionName":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","path":"/docs/","tagsPath":"/docs/tags","editUrl":"https://github.com/ccw/docs/tree/main/docs","isLast":true,"routePriority":-1,"sidebarFilePath":"D:\\Claude_dms3\\ccw\\docs-site\\sidebars.ts","contentPath":"D:\\Claude_dms3\\ccw\\docs-site\\docs","docs":[{"id":"commands/cli/cli-init","title":"/cli:cli-init","description":"Initialize CLI configuration for workspace with automatic technology detection","source":"@site/docs/commands/cli/cli-init.mdx","sourceDirName":"commands/cli","slug":"/commands/cli/cli-init","permalink":"/docs/commands/cli/cli-init","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/cli/cli-init.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/cli:cli-init","sidebar_label":"/cli:cli-init","sidebar_position":1,"description":"Initialize CLI configuration for workspace with automatic technology detection"},"sidebar":"docs","previous":{"title":"issue:convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan"},"next":{"title":"/cli:codex-review","permalink":"/docs/commands/cli/codex-review"}},{"id":"commands/cli/codex-review","title":"/cli:codex-review","description":"Interactive code review using Codex CLI with configurable review targets","source":"@site/docs/commands/cli/codex-review.mdx","sourceDirName":"commands/cli","slug":"/commands/cli/codex-review","permalink":"/docs/commands/cli/codex-review","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/cli/codex-review.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/cli:codex-review","sidebar_label":"/cli:codex-review","sidebar_position":2,"description":"Interactive code review using Codex CLI with configurable review targets"},"sidebar":"docs","previous":{"title":"/cli:cli-init","permalink":"/docs/commands/cli/cli-init"},"next":{"title":"/memory:update-full","permalink":"/docs/commands/memory/memory-update-full"}},{"id":"commands/general/ccw","title":"/ccw","description":"Main CCW workflow coordinator for intelligent command orchestration","source":"@site/docs/commands/general/ccw.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw","permalink":"/docs/commands/general/ccw","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/ccw","sidebar_label":"/ccw","sidebar_position":1,"description":"Main CCW workflow coordinator for intelligent command orchestration"},"sidebar":"docs","previous":{"title":"Overview","permalink":"/docs/overview"},"next":{"title":"/ccw-plan","permalink":"/docs/commands/general/ccw-plan"}},{"id":"commands/general/ccw-coordinator","title":"/ccw-coordinator","description":"Generic command orchestration tool for CCW workflows","source":"@site/docs/commands/general/ccw-coordinator.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-coordinator.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"/ccw-coordinator","sidebar_label":"/ccw-coordinator","sidebar_position":4,"description":"Generic command orchestration tool for CCW workflows"},"sidebar":"docs","previous":{"title":"/ccw-test","permalink":"/docs/commands/general/ccw-test"},"next":{"title":"/ccw-debug","permalink":"/docs/commands/general/ccw-debug"}},{"id":"commands/general/ccw-debug","title":"/ccw-debug","description":"Debug coordinator for intelligent debugging workflows","source":"@site/docs/commands/general/ccw-debug.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-debug","permalink":"/docs/commands/general/ccw-debug","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-debug.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"/ccw-debug","sidebar_label":"/ccw-debug","sidebar_position":5,"description":"Debug coordinator for intelligent debugging workflows"},"sidebar":"docs","previous":{"title":"/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator"},"next":{"title":"/flow-create","permalink":"/docs/commands/general/flow-create"}},{"id":"commands/general/ccw-plan","title":"/ccw-plan","description":"Planning coordinator for intelligent workflow selection","source":"@site/docs/commands/general/ccw-plan.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-plan","permalink":"/docs/commands/general/ccw-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-plan.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/ccw-plan","sidebar_label":"/ccw-plan","sidebar_position":2,"description":"Planning coordinator for intelligent workflow selection"},"sidebar":"docs","previous":{"title":"/ccw","permalink":"/docs/commands/general/ccw"},"next":{"title":"/ccw-test","permalink":"/docs/commands/general/ccw-test"}},{"id":"commands/general/ccw-test","title":"/ccw-test","description":"Test workflow coordinator for testing strategies","source":"@site/docs/commands/general/ccw-test.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-test","permalink":"/docs/commands/general/ccw-test","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-test.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"/ccw-test","sidebar_label":"/ccw-test","sidebar_position":3,"description":"Test workflow coordinator for testing strategies"},"sidebar":"docs","previous":{"title":"/ccw-plan","permalink":"/docs/commands/general/ccw-plan"},"next":{"title":"/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator"}},{"id":"commands/general/codex-coordinator","title":"/codex-coordinator","description":"Command orchestration tool for Codex workflows","source":"@site/docs/commands/general/codex-coordinator.mdx","sourceDirName":"commands/general","slug":"/commands/general/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/codex-coordinator.mdx","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"/codex-coordinator","sidebar_label":"/codex-coordinator","sidebar_position":7,"description":"Command orchestration tool for Codex workflows"},"sidebar":"docs","previous":{"title":"/flow-create","permalink":"/docs/commands/general/flow-create"},"next":{"title":"issue:new","permalink":"/docs/commands/issue/issue-new"}},{"id":"commands/general/flow-create","title":"/flow-create","description":"Generate workflow templates for flow-coordinator","source":"@site/docs/commands/general/flow-create.mdx","sourceDirName":"commands/general","slug":"/commands/general/flow-create","permalink":"/docs/commands/general/flow-create","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/flow-create.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"/flow-create","sidebar_label":"/flow-create","sidebar_position":6,"description":"Generate workflow templates for flow-coordinator"},"sidebar":"docs","previous":{"title":"/ccw-debug","permalink":"/docs/commands/general/ccw-debug"},"next":{"title":"/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator"}},{"id":"commands/issue/issue-convert-to-plan","title":"issue:convert-to-plan","description":"Convert planning artifacts to issue solutions","source":"@site/docs/commands/issue/issue-convert-to-plan.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-convert-to-plan.md","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"issue:convert-to-plan","sidebar_label":"issue:convert-to-plan","sidebar_position":7,"description":"Convert planning artifacts to issue solutions"},"sidebar":"docs","previous":{"title":"issue:from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm"},"next":{"title":"/cli:cli-init","permalink":"/docs/commands/cli/cli-init"}},{"id":"commands/issue/issue-discover","title":"issue:discover","description":"Discover potential issues from multiple code analysis perspectives","source":"@site/docs/commands/issue/issue-discover.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-discover","permalink":"/docs/commands/issue/issue-discover","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-discover.md","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"issue:discover","sidebar_label":"issue:discover","sidebar_position":2,"description":"Discover potential issues from multiple code analysis perspectives"},"sidebar":"docs","previous":{"title":"issue:new","permalink":"/docs/commands/issue/issue-new"},"next":{"title":"issue:plan","permalink":"/docs/commands/issue/issue-plan"}},{"id":"commands/issue/issue-execute","title":"issue:execute","description":"Execute issue queue with DAG-based parallel orchestration","source":"@site/docs/commands/issue/issue-execute.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-execute","permalink":"/docs/commands/issue/issue-execute","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-execute.md","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"issue:execute","sidebar_label":"issue:execute","sidebar_position":5,"description":"Execute issue queue with DAG-based parallel orchestration"},"sidebar":"docs","previous":{"title":"issue:queue","permalink":"/docs/commands/issue/issue-queue"},"next":{"title":"issue:from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm"}},{"id":"commands/issue/issue-from-brainstorm","title":"issue:from-brainstorm","description":"Convert brainstorm session ideas into issues with solutions","source":"@site/docs/commands/issue/issue-from-brainstorm.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-from-brainstorm.md","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"issue:from-brainstorm","sidebar_label":"issue:from-brainstorm","sidebar_position":6,"description":"Convert brainstorm session ideas into issues with solutions"},"sidebar":"docs","previous":{"title":"issue:execute","permalink":"/docs/commands/issue/issue-execute"},"next":{"title":"issue:convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan"}},{"id":"commands/issue/issue-new","title":"issue:new","description":"Create new issue with automatic categorization","source":"@site/docs/commands/issue/issue-new.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-new","permalink":"/docs/commands/issue/issue-new","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-new.md","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"issue:new","sidebar_label":"issue:new","sidebar_position":1,"description":"Create new issue with automatic categorization"},"sidebar":"docs","previous":{"title":"/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator"},"next":{"title":"issue:discover","permalink":"/docs/commands/issue/issue-discover"}},{"id":"commands/issue/issue-plan","title":"issue:plan","description":"Plan issue solutions with exploration and task breakdown","source":"@site/docs/commands/issue/issue-plan.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-plan","permalink":"/docs/commands/issue/issue-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-plan.md","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"issue:plan","sidebar_label":"issue:plan","sidebar_position":3,"description":"Plan issue solutions with exploration and task breakdown"},"sidebar":"docs","previous":{"title":"issue:discover","permalink":"/docs/commands/issue/issue-discover"},"next":{"title":"issue:queue","permalink":"/docs/commands/issue/issue-queue"}},{"id":"commands/issue/issue-queue","title":"issue:queue","description":"Form execution queue from bound solutions with conflict resolution","source":"@site/docs/commands/issue/issue-queue.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-queue","permalink":"/docs/commands/issue/issue-queue","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-queue.md","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"issue:queue","sidebar_label":"issue:queue","sidebar_position":4,"description":"Form execution queue from bound solutions with conflict resolution"},"sidebar":"docs","previous":{"title":"issue:plan","permalink":"/docs/commands/issue/issue-plan"},"next":{"title":"issue:execute","permalink":"/docs/commands/issue/issue-execute"}},{"id":"commands/memory/memory-compact","title":"/memory:compact","description":"Compact session memory into structured text for recovery","source":"@site/docs/commands/memory/memory-compact.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-compact","permalink":"/docs/commands/memory/memory-compact","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-compact.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"/memory:compact","sidebar_label":"/memory:compact","sidebar_position":6,"description":"Compact session memory into structured text for recovery"},"sidebar":"docs","previous":{"title":"/memory:docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli"},"next":{"title":"Introduction","permalink":"/docs/workflows/introduction"}},{"id":"commands/memory/memory-docs-full-cli","title":"/memory:docs-full-cli","description":"Generate full CLI documentation for all project modules","source":"@site/docs/commands/memory/memory-docs-full-cli.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-docs-full-cli.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"/memory:docs-full-cli","sidebar_label":"/memory:docs-full-cli","sidebar_position":4,"description":"Generate full CLI documentation for all project modules"},"sidebar":"docs","previous":{"title":"/memory:load","permalink":"/docs/commands/memory/memory-load"},"next":{"title":"/memory:docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli"}},{"id":"commands/memory/memory-docs-related-cli","title":"/memory:docs-related-cli","description":"Generate CLI documentation for git-changed modules","source":"@site/docs/commands/memory/memory-docs-related-cli.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-docs-related-cli.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"/memory:docs-related-cli","sidebar_label":"/memory:docs-related-cli","sidebar_position":5,"description":"Generate CLI documentation for git-changed modules"},"sidebar":"docs","previous":{"title":"/memory:docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli"},"next":{"title":"/memory:compact","permalink":"/docs/commands/memory/memory-compact"}},{"id":"commands/memory/memory-load","title":"/memory:load","description":"Load project context and core content into memory","source":"@site/docs/commands/memory/memory-load.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-load","permalink":"/docs/commands/memory/memory-load","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-load.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"/memory:load","sidebar_label":"/memory:load","sidebar_position":3,"description":"Load project context and core content into memory"},"sidebar":"docs","previous":{"title":"/memory:update-related","permalink":"/docs/commands/memory/memory-update-related"},"next":{"title":"/memory:docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli"}},{"id":"commands/memory/memory-update-full","title":"/memory:update-full","description":"Update CLAUDE.md for all project modules using batched agent execution","source":"@site/docs/commands/memory/memory-update-full.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-update-full","permalink":"/docs/commands/memory/memory-update-full","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-update-full.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/memory:update-full","sidebar_label":"/memory:update-full","sidebar_position":1,"description":"Update CLAUDE.md for all project modules using batched agent execution"},"sidebar":"docs","previous":{"title":"/cli:codex-review","permalink":"/docs/commands/cli/codex-review"},"next":{"title":"/memory:update-related","permalink":"/docs/commands/memory/memory-update-related"}},{"id":"commands/memory/memory-update-related","title":"/memory:update-related","description":"Update CLAUDE.md for git-changed modules using batched execution","source":"@site/docs/commands/memory/memory-update-related.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-update-related","permalink":"/docs/commands/memory/memory-update-related","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-update-related.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/memory:update-related","sidebar_label":"/memory:update-related","sidebar_position":2,"description":"Update CLAUDE.md for git-changed modules using batched execution"},"sidebar":"docs","previous":{"title":"/memory:update-full","permalink":"/docs/commands/memory/memory-update-full"},"next":{"title":"/memory:load","permalink":"/docs/commands/memory/memory-load"}},{"id":"faq","title":"Frequently Asked Questions","description":"Common questions about CCW, workflows, commands, and troubleshooting.","source":"@site/docs/faq.mdx","sourceDirName":".","slug":"/faq","permalink":"/docs/faq","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/faq.mdx","tags":[],"version":"current","sidebarPosition":99,"frontMatter":{"title":"Frequently Asked Questions","sidebar_label":"FAQ","sidebar_position":99},"sidebar":"docs","previous":{"title":"Level 5: Intelligent","permalink":"/docs/workflows/level-5-intelligent"}},{"id":"index","title":"CCW Help Documentation","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/index.mdx","sourceDirName":".","slug":"/","permalink":"/docs/","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/index.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"CCW Help Documentation","sidebar_label":"Home","sidebar_position":1,"slug":"/"},"sidebar":"docs","next":{"title":"Overview","permalink":"/docs/overview"}},{"id":"index.zh","title":"CCW Help Documentation","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/index.zh.mdx","sourceDirName":".","slug":"/","permalink":"/docs/","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/index.zh.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"CCW Help Documentation","sidebar_label":"Home","sidebar_position":1,"slug":"/"}},{"id":"overview","title":"Welcome to CCW","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/overview.mdx","sourceDirName":".","slug":"/overview","permalink":"/docs/overview","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/overview.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"Welcome to CCW","sidebar_label":"Overview","sidebar_position":1},"sidebar":"docs","previous":{"title":"Home","permalink":"/docs/"},"next":{"title":"/ccw","permalink":"/docs/commands/general/ccw"}},{"id":"overview.zh","title":"Welcome to CCW","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/overview.zh.mdx","sourceDirName":".","slug":"/overview.zh","permalink":"/docs/overview.zh","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/overview.zh.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"Welcome to CCW","sidebar_label":"Overview","sidebar_position":1}},{"id":"workflows/faq","title":"Workflow FAQ","description":"Frequently asked questions about CCW workflows","source":"@site/docs/workflows/faq.mdx","sourceDirName":"workflows","slug":"/workflows/faq","permalink":"/docs/workflows/faq","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/faq.mdx","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"Workflow FAQ","description":"Frequently asked questions about CCW workflows","sidebar_position":7}},{"id":"workflows/introduction","title":"Workflow Introduction","description":"Comprehensive overview of CCW workflows - from rapid execution to intelligent orchestration","source":"@site/docs/workflows/introduction.mdx","sourceDirName":"workflows","slug":"/workflows/introduction","permalink":"/docs/workflows/introduction","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/introduction.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"Workflow Introduction","description":"Comprehensive overview of CCW workflows - from rapid execution to intelligent orchestration","sidebar_position":1},"sidebar":"docs","previous":{"title":"/memory:compact","permalink":"/docs/commands/memory/memory-compact"},"next":{"title":"Level 1: Ultra Lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight"}},{"id":"workflows/level-1-ultra-lightweight","title":"Level 1 - Ultra-Lightweight Workflows","description":"Rapid execution workflow for simple tasks with zero overhead","source":"@site/docs/workflows/level-1-ultra-lightweight.mdx","sourceDirName":"workflows","slug":"/workflows/level-1-ultra-lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-1-ultra-lightweight.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"Level 1 - Ultra-Lightweight Workflows","description":"Rapid execution workflow for simple tasks with zero overhead","sidebar_position":2},"sidebar":"docs","previous":{"title":"Introduction","permalink":"/docs/workflows/introduction"},"next":{"title":"Level 2: Rapid","permalink":"/docs/workflows/level-2-rapid"}},{"id":"workflows/level-2-rapid","title":"Level 2 - Rapid Workflows","description":"Lightweight planning and bug diagnosis workflows for single-module features","source":"@site/docs/workflows/level-2-rapid.mdx","sourceDirName":"workflows","slug":"/workflows/level-2-rapid","permalink":"/docs/workflows/level-2-rapid","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-2-rapid.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"Level 2 - Rapid Workflows","description":"Lightweight planning and bug diagnosis workflows for single-module features","sidebar_position":3},"sidebar":"docs","previous":{"title":"Level 1: Ultra Lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight"},"next":{"title":"Level 3: Standard","permalink":"/docs/workflows/level-3-standard"}},{"id":"workflows/level-3-standard","title":"Level 3 - Standard Workflows","description":"Complete planning with persistent session management for multi-module changes","source":"@site/docs/workflows/level-3-standard.mdx","sourceDirName":"workflows","slug":"/workflows/level-3-standard","permalink":"/docs/workflows/level-3-standard","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-3-standard.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"Level 3 - Standard Workflows","description":"Complete planning with persistent session management for multi-module changes","sidebar_position":4},"sidebar":"docs","previous":{"title":"Level 2: Rapid","permalink":"/docs/workflows/level-2-rapid"},"next":{"title":"Level 4: Brainstorm","permalink":"/docs/workflows/level-4-brainstorm"}},{"id":"workflows/level-4-brainstorm","title":"Level 4 - Brainstorm Workflows","description":"Multi-role brainstorming workflows for complex feature design and architecture exploration","source":"@site/docs/workflows/level-4-brainstorm.mdx","sourceDirName":"workflows","slug":"/workflows/level-4-brainstorm","permalink":"/docs/workflows/level-4-brainstorm","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-4-brainstorm.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"Level 4 - Brainstorm Workflows","description":"Multi-role brainstorming workflows for complex feature design and architecture exploration","sidebar_position":5},"sidebar":"docs","previous":{"title":"Level 3: Standard","permalink":"/docs/workflows/level-3-standard"},"next":{"title":"Level 5: Intelligent","permalink":"/docs/workflows/level-5-intelligent"}},{"id":"workflows/level-5-intelligent","title":"Level 5 - Intelligent Workflows","description":"Automated command orchestration with intelligent analysis and recommendation","source":"@site/docs/workflows/level-5-intelligent.mdx","sourceDirName":"workflows","slug":"/workflows/level-5-intelligent","permalink":"/docs/workflows/level-5-intelligent","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-5-intelligent.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"Level 5 - Intelligent Workflows","description":"Automated command orchestration with intelligent analysis and recommendation","sidebar_position":6},"sidebar":"docs","previous":{"title":"Level 4: Brainstorm","permalink":"/docs/workflows/level-4-brainstorm"},"next":{"title":"FAQ","permalink":"/docs/faq"}}],"drafts":[],"sidebars":{"docs":[{"type":"doc","id":"index","label":"Home","translatable":true},{"type":"doc","id":"overview","label":"Quick Start","translatable":true},{"type":"category","label":"Commands","collapsible":true,"collapsed":false,"items":[{"type":"category","label":"General Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/general/ccw","label":"ccw","translatable":true},{"type":"doc","id":"commands/general/ccw-plan","label":"ccw-plan","translatable":true},{"type":"doc","id":"commands/general/ccw-test","label":"ccw-test","translatable":true},{"type":"doc","id":"commands/general/ccw-coordinator","label":"ccw-coordinator","translatable":true},{"type":"doc","id":"commands/general/ccw-debug","label":"ccw-debug","translatable":true},{"type":"doc","id":"commands/general/flow-create","label":"flow-create","translatable":true},{"type":"doc","id":"commands/general/codex-coordinator","label":"codex-coordinator","translatable":true}]},{"type":"category","label":"Issue Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/issue/issue-new","label":"issue-new","translatable":true},{"type":"doc","id":"commands/issue/issue-discover","label":"issue-discover","translatable":true},{"type":"doc","id":"commands/issue/issue-plan","label":"issue-plan","translatable":true},{"type":"doc","id":"commands/issue/issue-queue","label":"issue-queue","translatable":true},{"type":"doc","id":"commands/issue/issue-execute","label":"issue-execute","translatable":true},{"type":"doc","id":"commands/issue/issue-from-brainstorm","label":"issue-from-brainstorm","translatable":true},{"type":"doc","id":"commands/issue/issue-convert-to-plan","label":"issue-convert-to-plan","translatable":true}]},{"type":"category","label":"CLI Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/cli/cli-init","label":"cli-init","translatable":true},{"type":"doc","id":"commands/cli/codex-review","label":"codex-review","translatable":true}]},{"type":"category","label":"Memory Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/memory/memory-update-full","label":"memory-update-full","translatable":true},{"type":"doc","id":"commands/memory/memory-update-related","label":"memory-update-related","translatable":true},{"type":"doc","id":"commands/memory/memory-load","label":"memory-load","translatable":true},{"type":"doc","id":"commands/memory/memory-docs-full-cli","label":"memory-docs-full-cli","translatable":true},{"type":"doc","id":"commands/memory/memory-docs-related-cli","label":"memory-docs-related-cli","translatable":true},{"type":"doc","id":"commands/memory/memory-compact","label":"memory-compact","translatable":true}]}]},{"type":"category","label":"Workflows","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"workflows/introduction","label":"Introduction","translatable":true},{"type":"doc","id":"workflows/level-1-ultra-lightweight","label":"Level 1: Ultra Lightweight","translatable":true},{"type":"doc","id":"workflows/level-2-rapid","label":"Level 2: Rapid","translatable":true},{"type":"doc","id":"workflows/level-3-standard","label":"Level 3: Standard","translatable":true},{"type":"doc","id":"workflows/level-4-brainstorm","label":"Level 4: Brainstorm","translatable":true},{"type":"doc","id":"workflows/level-5-intelligent","label":"Level 5: Intelligent","translatable":true}]},{"type":"doc","id":"faq","label":"FAQ","translatable":true}]}}]}},"docusaurus-plugin-content-pages":{"default":null},"docusaurus-plugin-debug":{},"docusaurus-plugin-svgr":{},"docusaurus-theme-classic":{},"docusaurus-bootstrap-plugin":{},"docusaurus-mdx-fallback-plugin":{}}} \ No newline at end of file +{"allContent":{"docusaurus-plugin-content-docs":{"default":{"loadedVersions":[{"versionName":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","path":"/docs/","tagsPath":"/docs/tags","editUrl":"https://github.com/ccw/docs/tree/main/docs","isLast":true,"routePriority":-1,"sidebarFilePath":"D:\\Claude_dms3\\ccw\\docs-site\\sidebars.ts","contentPath":"D:\\Claude_dms3\\ccw\\docs-site\\docs","docs":[{"id":"commands/cli/cli-init","title":"/cli:cli-init","description":"Initialize CLI configuration for workspace with automatic technology detection","source":"@site/docs/commands/cli/cli-init.mdx","sourceDirName":"commands/cli","slug":"/commands/cli/cli-init","permalink":"/docs/commands/cli/cli-init","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/cli/cli-init.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/cli:cli-init","sidebar_label":"/cli:cli-init","sidebar_position":1,"description":"Initialize CLI configuration for workspace with automatic technology detection"},"sidebar":"docs","previous":{"title":"issue:convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan"},"next":{"title":"/cli:codex-review","permalink":"/docs/commands/cli/codex-review"}},{"id":"commands/cli/codex-review","title":"/cli:codex-review","description":"Interactive code review using Codex CLI with configurable review targets","source":"@site/docs/commands/cli/codex-review.mdx","sourceDirName":"commands/cli","slug":"/commands/cli/codex-review","permalink":"/docs/commands/cli/codex-review","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/cli/codex-review.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/cli:codex-review","sidebar_label":"/cli:codex-review","sidebar_position":2,"description":"Interactive code review using Codex CLI with configurable review targets"},"sidebar":"docs","previous":{"title":"/cli:cli-init","permalink":"/docs/commands/cli/cli-init"},"next":{"title":"/memory:update-full","permalink":"/docs/commands/memory/memory-update-full"}},{"id":"commands/general/ccw","title":"/ccw","description":"Main CCW workflow coordinator for intelligent command orchestration","source":"@site/docs/commands/general/ccw.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw","permalink":"/docs/commands/general/ccw","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/ccw","sidebar_label":"/ccw","sidebar_position":1,"description":"Main CCW workflow coordinator for intelligent command orchestration"},"sidebar":"docs","previous":{"title":"Overview","permalink":"/docs/overview"},"next":{"title":"/ccw-plan","permalink":"/docs/commands/general/ccw-plan"}},{"id":"commands/general/ccw-coordinator","title":"/ccw-coordinator","description":"Generic command orchestration tool for CCW workflows","source":"@site/docs/commands/general/ccw-coordinator.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-coordinator.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"/ccw-coordinator","sidebar_label":"/ccw-coordinator","sidebar_position":4,"description":"Generic command orchestration tool for CCW workflows"},"sidebar":"docs","previous":{"title":"/ccw-test","permalink":"/docs/commands/general/ccw-test"},"next":{"title":"/ccw-debug","permalink":"/docs/commands/general/ccw-debug"}},{"id":"commands/general/ccw-debug","title":"/ccw-debug","description":"Debug coordinator for intelligent debugging workflows","source":"@site/docs/commands/general/ccw-debug.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-debug","permalink":"/docs/commands/general/ccw-debug","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-debug.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"/ccw-debug","sidebar_label":"/ccw-debug","sidebar_position":5,"description":"Debug coordinator for intelligent debugging workflows"},"sidebar":"docs","previous":{"title":"/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator"},"next":{"title":"/flow-create","permalink":"/docs/commands/general/flow-create"}},{"id":"commands/general/ccw-plan","title":"/ccw-plan","description":"Planning coordinator for intelligent workflow selection","source":"@site/docs/commands/general/ccw-plan.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-plan","permalink":"/docs/commands/general/ccw-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-plan.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/ccw-plan","sidebar_label":"/ccw-plan","sidebar_position":2,"description":"Planning coordinator for intelligent workflow selection"},"sidebar":"docs","previous":{"title":"/ccw","permalink":"/docs/commands/general/ccw"},"next":{"title":"/ccw-test","permalink":"/docs/commands/general/ccw-test"}},{"id":"commands/general/ccw-test","title":"/ccw-test","description":"Test workflow coordinator for testing strategies","source":"@site/docs/commands/general/ccw-test.mdx","sourceDirName":"commands/general","slug":"/commands/general/ccw-test","permalink":"/docs/commands/general/ccw-test","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/ccw-test.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"/ccw-test","sidebar_label":"/ccw-test","sidebar_position":3,"description":"Test workflow coordinator for testing strategies"},"sidebar":"docs","previous":{"title":"/ccw-plan","permalink":"/docs/commands/general/ccw-plan"},"next":{"title":"/ccw-coordinator","permalink":"/docs/commands/general/ccw-coordinator"}},{"id":"commands/general/codex-coordinator","title":"/codex-coordinator","description":"Command orchestration tool for Codex workflows","source":"@site/docs/commands/general/codex-coordinator.mdx","sourceDirName":"commands/general","slug":"/commands/general/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/codex-coordinator.mdx","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"/codex-coordinator","sidebar_label":"/codex-coordinator","sidebar_position":7,"description":"Command orchestration tool for Codex workflows"},"sidebar":"docs","previous":{"title":"/flow-create","permalink":"/docs/commands/general/flow-create"},"next":{"title":"issue:new","permalink":"/docs/commands/issue/issue-new"}},{"id":"commands/general/flow-create","title":"/flow-create","description":"Generate workflow templates for flow-coordinator","source":"@site/docs/commands/general/flow-create.mdx","sourceDirName":"commands/general","slug":"/commands/general/flow-create","permalink":"/docs/commands/general/flow-create","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/general/flow-create.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"/flow-create","sidebar_label":"/flow-create","sidebar_position":6,"description":"Generate workflow templates for flow-coordinator"},"sidebar":"docs","previous":{"title":"/ccw-debug","permalink":"/docs/commands/general/ccw-debug"},"next":{"title":"/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator"}},{"id":"commands/issue/issue-convert-to-plan","title":"issue:convert-to-plan","description":"Convert planning artifacts to issue solutions","source":"@site/docs/commands/issue/issue-convert-to-plan.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-convert-to-plan.md","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"issue:convert-to-plan","sidebar_label":"issue:convert-to-plan","sidebar_position":7,"description":"Convert planning artifacts to issue solutions"},"sidebar":"docs","previous":{"title":"issue:from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm"},"next":{"title":"/cli:cli-init","permalink":"/docs/commands/cli/cli-init"}},{"id":"commands/issue/issue-discover","title":"issue:discover","description":"Discover potential issues from multiple code analysis perspectives","source":"@site/docs/commands/issue/issue-discover.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-discover","permalink":"/docs/commands/issue/issue-discover","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-discover.md","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"issue:discover","sidebar_label":"issue:discover","sidebar_position":2,"description":"Discover potential issues from multiple code analysis perspectives"},"sidebar":"docs","previous":{"title":"issue:new","permalink":"/docs/commands/issue/issue-new"},"next":{"title":"issue:plan","permalink":"/docs/commands/issue/issue-plan"}},{"id":"commands/issue/issue-execute","title":"issue:execute","description":"Execute issue queue with DAG-based parallel orchestration","source":"@site/docs/commands/issue/issue-execute.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-execute","permalink":"/docs/commands/issue/issue-execute","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-execute.md","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"issue:execute","sidebar_label":"issue:execute","sidebar_position":5,"description":"Execute issue queue with DAG-based parallel orchestration"},"sidebar":"docs","previous":{"title":"issue:queue","permalink":"/docs/commands/issue/issue-queue"},"next":{"title":"issue:from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm"}},{"id":"commands/issue/issue-from-brainstorm","title":"issue:from-brainstorm","description":"Convert brainstorm session ideas into issues with solutions","source":"@site/docs/commands/issue/issue-from-brainstorm.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-from-brainstorm","permalink":"/docs/commands/issue/issue-from-brainstorm","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-from-brainstorm.md","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"issue:from-brainstorm","sidebar_label":"issue:from-brainstorm","sidebar_position":6,"description":"Convert brainstorm session ideas into issues with solutions"},"sidebar":"docs","previous":{"title":"issue:execute","permalink":"/docs/commands/issue/issue-execute"},"next":{"title":"issue:convert-to-plan","permalink":"/docs/commands/issue/issue-convert-to-plan"}},{"id":"commands/issue/issue-new","title":"issue:new","description":"Create new issue with automatic categorization","source":"@site/docs/commands/issue/issue-new.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-new","permalink":"/docs/commands/issue/issue-new","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-new.md","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"issue:new","sidebar_label":"issue:new","sidebar_position":1,"description":"Create new issue with automatic categorization"},"sidebar":"docs","previous":{"title":"/codex-coordinator","permalink":"/docs/commands/general/codex-coordinator"},"next":{"title":"issue:discover","permalink":"/docs/commands/issue/issue-discover"}},{"id":"commands/issue/issue-plan","title":"issue:plan","description":"Plan issue solutions with exploration and task breakdown","source":"@site/docs/commands/issue/issue-plan.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-plan","permalink":"/docs/commands/issue/issue-plan","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-plan.md","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"issue:plan","sidebar_label":"issue:plan","sidebar_position":3,"description":"Plan issue solutions with exploration and task breakdown"},"sidebar":"docs","previous":{"title":"issue:discover","permalink":"/docs/commands/issue/issue-discover"},"next":{"title":"issue:queue","permalink":"/docs/commands/issue/issue-queue"}},{"id":"commands/issue/issue-queue","title":"issue:queue","description":"Form execution queue from bound solutions with conflict resolution","source":"@site/docs/commands/issue/issue-queue.md","sourceDirName":"commands/issue","slug":"/commands/issue/issue-queue","permalink":"/docs/commands/issue/issue-queue","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/issue/issue-queue.md","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"issue:queue","sidebar_label":"issue:queue","sidebar_position":4,"description":"Form execution queue from bound solutions with conflict resolution"},"sidebar":"docs","previous":{"title":"issue:plan","permalink":"/docs/commands/issue/issue-plan"},"next":{"title":"issue:execute","permalink":"/docs/commands/issue/issue-execute"}},{"id":"commands/memory/memory-compact","title":"/memory:compact","description":"Compact session memory into structured text for recovery","source":"@site/docs/commands/memory/memory-compact.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-compact","permalink":"/docs/commands/memory/memory-compact","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-compact.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"/memory:compact","sidebar_label":"/memory:compact","sidebar_position":6,"description":"Compact session memory into structured text for recovery"},"sidebar":"docs","previous":{"title":"/memory:docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli"},"next":{"title":"Introduction","permalink":"/docs/workflows/introduction"}},{"id":"commands/memory/memory-docs-full-cli","title":"/memory:docs-full-cli","description":"Generate full CLI documentation for all project modules","source":"@site/docs/commands/memory/memory-docs-full-cli.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-docs-full-cli.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"/memory:docs-full-cli","sidebar_label":"/memory:docs-full-cli","sidebar_position":4,"description":"Generate full CLI documentation for all project modules"},"sidebar":"docs","previous":{"title":"/memory:load","permalink":"/docs/commands/memory/memory-load"},"next":{"title":"/memory:docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli"}},{"id":"commands/memory/memory-docs-related-cli","title":"/memory:docs-related-cli","description":"Generate CLI documentation for git-changed modules","source":"@site/docs/commands/memory/memory-docs-related-cli.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-docs-related-cli","permalink":"/docs/commands/memory/memory-docs-related-cli","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-docs-related-cli.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"/memory:docs-related-cli","sidebar_label":"/memory:docs-related-cli","sidebar_position":5,"description":"Generate CLI documentation for git-changed modules"},"sidebar":"docs","previous":{"title":"/memory:docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli"},"next":{"title":"/memory:compact","permalink":"/docs/commands/memory/memory-compact"}},{"id":"commands/memory/memory-load","title":"/memory:load","description":"Load project context and core content into memory","source":"@site/docs/commands/memory/memory-load.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-load","permalink":"/docs/commands/memory/memory-load","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-load.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"/memory:load","sidebar_label":"/memory:load","sidebar_position":3,"description":"Load project context and core content into memory"},"sidebar":"docs","previous":{"title":"/memory:update-related","permalink":"/docs/commands/memory/memory-update-related"},"next":{"title":"/memory:docs-full-cli","permalink":"/docs/commands/memory/memory-docs-full-cli"}},{"id":"commands/memory/memory-update-full","title":"/memory:update-full","description":"Update CLAUDE.md for all project modules using batched agent execution","source":"@site/docs/commands/memory/memory-update-full.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-update-full","permalink":"/docs/commands/memory/memory-update-full","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-update-full.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"/memory:update-full","sidebar_label":"/memory:update-full","sidebar_position":1,"description":"Update CLAUDE.md for all project modules using batched agent execution"},"sidebar":"docs","previous":{"title":"/cli:codex-review","permalink":"/docs/commands/cli/codex-review"},"next":{"title":"/memory:update-related","permalink":"/docs/commands/memory/memory-update-related"}},{"id":"commands/memory/memory-update-related","title":"/memory:update-related","description":"Update CLAUDE.md for git-changed modules using batched execution","source":"@site/docs/commands/memory/memory-update-related.mdx","sourceDirName":"commands/memory","slug":"/commands/memory/memory-update-related","permalink":"/docs/commands/memory/memory-update-related","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/commands/memory/memory-update-related.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"/memory:update-related","sidebar_label":"/memory:update-related","sidebar_position":2,"description":"Update CLAUDE.md for git-changed modules using batched execution"},"sidebar":"docs","previous":{"title":"/memory:update-full","permalink":"/docs/commands/memory/memory-update-full"},"next":{"title":"/memory:load","permalink":"/docs/commands/memory/memory-load"}},{"id":"faq","title":"Frequently Asked Questions","description":"Common questions about CCW, workflows, commands, and troubleshooting.","source":"@site/docs/faq.mdx","sourceDirName":".","slug":"/faq","permalink":"/docs/faq","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/faq.mdx","tags":[],"version":"current","sidebarPosition":99,"frontMatter":{"title":"Frequently Asked Questions","sidebar_label":"FAQ","sidebar_position":99},"sidebar":"docs","previous":{"title":"Level 5: Intelligent","permalink":"/docs/workflows/level-5-intelligent"}},{"id":"index","title":"CCW Help Documentation","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/index.mdx","sourceDirName":".","slug":"/","permalink":"/docs/","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/index.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"CCW Help Documentation","sidebar_label":"Home","sidebar_position":1,"slug":"/"},"sidebar":"docs","next":{"title":"Overview","permalink":"/docs/overview"}},{"id":"overview","title":"Welcome to CCW","description":"CCW is a professional workflow automation platform that combines AI-powered intelligence with structured development workflows. With 40+ commands and 15 integrated workflows, CCW transforms how you build, test, and ship software.","source":"@site/docs/overview.mdx","sourceDirName":".","slug":"/overview","permalink":"/docs/overview","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/overview.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"Welcome to CCW","sidebar_label":"Overview","sidebar_position":1},"sidebar":"docs","previous":{"title":"Home","permalink":"/docs/"},"next":{"title":"/ccw","permalink":"/docs/commands/general/ccw"}},{"id":"workflows/faq","title":"Workflow FAQ","description":"Frequently asked questions about CCW workflows","source":"@site/docs/workflows/faq.mdx","sourceDirName":"workflows","slug":"/workflows/faq","permalink":"/docs/workflows/faq","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/faq.mdx","tags":[],"version":"current","sidebarPosition":7,"frontMatter":{"title":"Workflow FAQ","description":"Frequently asked questions about CCW workflows","sidebar_position":7}},{"id":"workflows/introduction","title":"Workflow Introduction","description":"Comprehensive overview of CCW workflows - from rapid execution to intelligent orchestration","source":"@site/docs/workflows/introduction.mdx","sourceDirName":"workflows","slug":"/workflows/introduction","permalink":"/docs/workflows/introduction","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/introduction.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"title":"Workflow Introduction","description":"Comprehensive overview of CCW workflows - from rapid execution to intelligent orchestration","sidebar_position":1},"sidebar":"docs","previous":{"title":"/memory:compact","permalink":"/docs/commands/memory/memory-compact"},"next":{"title":"Level 1: Ultra Lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight"}},{"id":"workflows/level-1-ultra-lightweight","title":"Level 1 - Ultra-Lightweight Workflows","description":"Rapid execution workflow for simple tasks with zero overhead","source":"@site/docs/workflows/level-1-ultra-lightweight.mdx","sourceDirName":"workflows","slug":"/workflows/level-1-ultra-lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-1-ultra-lightweight.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"Level 1 - Ultra-Lightweight Workflows","description":"Rapid execution workflow for simple tasks with zero overhead","sidebar_position":2},"sidebar":"docs","previous":{"title":"Introduction","permalink":"/docs/workflows/introduction"},"next":{"title":"Level 2: Rapid","permalink":"/docs/workflows/level-2-rapid"}},{"id":"workflows/level-2-rapid","title":"Level 2 - Rapid Workflows","description":"Lightweight planning and bug diagnosis workflows for single-module features","source":"@site/docs/workflows/level-2-rapid.mdx","sourceDirName":"workflows","slug":"/workflows/level-2-rapid","permalink":"/docs/workflows/level-2-rapid","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-2-rapid.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"title":"Level 2 - Rapid Workflows","description":"Lightweight planning and bug diagnosis workflows for single-module features","sidebar_position":3},"sidebar":"docs","previous":{"title":"Level 1: Ultra Lightweight","permalink":"/docs/workflows/level-1-ultra-lightweight"},"next":{"title":"Level 3: Standard","permalink":"/docs/workflows/level-3-standard"}},{"id":"workflows/level-3-standard","title":"Level 3 - Standard Workflows","description":"Complete planning with persistent session management for multi-module changes","source":"@site/docs/workflows/level-3-standard.mdx","sourceDirName":"workflows","slug":"/workflows/level-3-standard","permalink":"/docs/workflows/level-3-standard","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-3-standard.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"title":"Level 3 - Standard Workflows","description":"Complete planning with persistent session management for multi-module changes","sidebar_position":4},"sidebar":"docs","previous":{"title":"Level 2: Rapid","permalink":"/docs/workflows/level-2-rapid"},"next":{"title":"Level 4: Brainstorm","permalink":"/docs/workflows/level-4-brainstorm"}},{"id":"workflows/level-4-brainstorm","title":"Level 4 - Brainstorm Workflows","description":"Multi-role brainstorming workflows for complex feature design and architecture exploration","source":"@site/docs/workflows/level-4-brainstorm.mdx","sourceDirName":"workflows","slug":"/workflows/level-4-brainstorm","permalink":"/docs/workflows/level-4-brainstorm","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-4-brainstorm.mdx","tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"title":"Level 4 - Brainstorm Workflows","description":"Multi-role brainstorming workflows for complex feature design and architecture exploration","sidebar_position":5},"sidebar":"docs","previous":{"title":"Level 3: Standard","permalink":"/docs/workflows/level-3-standard"},"next":{"title":"Level 5: Intelligent","permalink":"/docs/workflows/level-5-intelligent"}},{"id":"workflows/level-5-intelligent","title":"Level 5 - Intelligent Workflows","description":"Automated command orchestration with intelligent analysis and recommendation","source":"@site/docs/workflows/level-5-intelligent.mdx","sourceDirName":"workflows","slug":"/workflows/level-5-intelligent","permalink":"/docs/workflows/level-5-intelligent","draft":false,"unlisted":false,"editUrl":"https://github.com/ccw/docs/tree/main/docs/workflows/level-5-intelligent.mdx","tags":[],"version":"current","sidebarPosition":6,"frontMatter":{"title":"Level 5 - Intelligent Workflows","description":"Automated command orchestration with intelligent analysis and recommendation","sidebar_position":6},"sidebar":"docs","previous":{"title":"Level 4: Brainstorm","permalink":"/docs/workflows/level-4-brainstorm"},"next":{"title":"FAQ","permalink":"/docs/faq"}}],"drafts":[],"sidebars":{"docs":[{"type":"doc","id":"index","label":"Home","translatable":true},{"type":"doc","id":"overview","label":"Quick Start","translatable":true},{"type":"category","label":"Commands","collapsible":true,"collapsed":false,"items":[{"type":"category","label":"General Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/general/ccw","label":"ccw","translatable":true},{"type":"doc","id":"commands/general/ccw-plan","label":"ccw-plan","translatable":true},{"type":"doc","id":"commands/general/ccw-test","label":"ccw-test","translatable":true},{"type":"doc","id":"commands/general/ccw-coordinator","label":"ccw-coordinator","translatable":true},{"type":"doc","id":"commands/general/ccw-debug","label":"ccw-debug","translatable":true},{"type":"doc","id":"commands/general/flow-create","label":"flow-create","translatable":true},{"type":"doc","id":"commands/general/codex-coordinator","label":"codex-coordinator","translatable":true}]},{"type":"category","label":"Issue Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/issue/issue-new","label":"issue-new","translatable":true},{"type":"doc","id":"commands/issue/issue-discover","label":"issue-discover","translatable":true},{"type":"doc","id":"commands/issue/issue-plan","label":"issue-plan","translatable":true},{"type":"doc","id":"commands/issue/issue-queue","label":"issue-queue","translatable":true},{"type":"doc","id":"commands/issue/issue-execute","label":"issue-execute","translatable":true},{"type":"doc","id":"commands/issue/issue-from-brainstorm","label":"issue-from-brainstorm","translatable":true},{"type":"doc","id":"commands/issue/issue-convert-to-plan","label":"issue-convert-to-plan","translatable":true}]},{"type":"category","label":"CLI Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/cli/cli-init","label":"cli-init","translatable":true},{"type":"doc","id":"commands/cli/codex-review","label":"codex-review","translatable":true}]},{"type":"category","label":"Memory Commands","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"commands/memory/memory-update-full","label":"memory-update-full","translatable":true},{"type":"doc","id":"commands/memory/memory-update-related","label":"memory-update-related","translatable":true},{"type":"doc","id":"commands/memory/memory-load","label":"memory-load","translatable":true},{"type":"doc","id":"commands/memory/memory-docs-full-cli","label":"memory-docs-full-cli","translatable":true},{"type":"doc","id":"commands/memory/memory-docs-related-cli","label":"memory-docs-related-cli","translatable":true},{"type":"doc","id":"commands/memory/memory-compact","label":"memory-compact","translatable":true}]}]},{"type":"category","label":"Workflows","collapsible":true,"collapsed":false,"items":[{"type":"doc","id":"workflows/introduction","label":"Introduction","translatable":true},{"type":"doc","id":"workflows/level-1-ultra-lightweight","label":"Level 1: Ultra Lightweight","translatable":true},{"type":"doc","id":"workflows/level-2-rapid","label":"Level 2: Rapid","translatable":true},{"type":"doc","id":"workflows/level-3-standard","label":"Level 3: Standard","translatable":true},{"type":"doc","id":"workflows/level-4-brainstorm","label":"Level 4: Brainstorm","translatable":true},{"type":"doc","id":"workflows/level-5-intelligent","label":"Level 5: Intelligent","translatable":true}]},{"type":"doc","id":"faq","label":"FAQ","translatable":true}]}}]}},"docusaurus-plugin-content-pages":{"default":null},"docusaurus-plugin-debug":{},"docusaurus-plugin-svgr":{},"docusaurus-theme-classic":{},"docusaurus-bootstrap-plugin":{},"docusaurus-mdx-fallback-plugin":{}}} \ No newline at end of file diff --git a/ccw/docs-site/build/404.html b/ccw/docs-site/build/404.html index d39887f1..a3121beb 100644 --- a/ccw/docs-site/build/404.html +++ b/ccw/docs-site/build/404.html @@ -4,8 +4,8 @@