diff --git a/.claude/commands/workflow/brainstorm/artifacts.md b/.claude/commands/workflow/brainstorm/artifacts.md index cae77066..62191480 100644 --- a/.claude/commands/workflow/brainstorm/artifacts.md +++ b/.claude/commands/workflow/brainstorm/artifacts.md @@ -91,10 +91,11 @@ allowed-tools: TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*) **Document Structure**: ``` .workflow/WFS-[topic]/.brainstorming/ -├── topic-framework.md # ★ STRUCTURED FRAMEWORK DOCUMENT -└── workflow-session.json # Framework metadata and role assignments +└── topic-framework.md # ★ STRUCTURED FRAMEWORK DOCUMENT ``` +**Note**: `workflow-session.json` is located at `.workflow/WFS-[topic]/workflow-session.json` (session root), not inside `.brainstorming/`. + ## Framework Template Structures ### Dynamic Role-Based Framework diff --git a/.claude/commands/workflow/brainstorm/auto-parallel.md b/.claude/commands/workflow/brainstorm/auto-parallel.md index 6c7059b2..0fb30842 100644 --- a/.claude/commands/workflow/brainstorm/auto-parallel.md +++ b/.claude/commands/workflow/brainstorm/auto-parallel.md @@ -149,7 +149,7 @@ Task(subagent_type="conceptual-planning-agent", 3. **load_session_metadata** - Action: Load session metadata and topic description - - Command: bash(cat .workflow/WFS-{topic}/.brainstorming/workflow-session.json 2>/dev/null || echo '{}') + - Command: bash(cat .workflow/WFS-{topic}/workflow-session.json 2>/dev/null || echo '{}') - Output: session_metadata ### Implementation Context @@ -162,7 +162,7 @@ Task(subagent_type="conceptual-planning-agent", ### Session Context **Workflow Directory**: .workflow/WFS-{topic}/.brainstorming/ **Output Directory**: .workflow/WFS-{topic}/.brainstorming/{role}/ - **Session JSON**: .workflow/WFS-{topic}/.brainstorming/workflow-session.json + **Session JSON**: .workflow/WFS-{topic}/workflow-session.json ### Dependencies & Context **Topic**: {user-provided-topic} diff --git a/.claude/commands/workflow/brainstorm/data-architect.md b/.claude/commands/workflow/brainstorm/data-architect.md index ce25da27..24aafbf6 100644 --- a/.claude/commands/workflow/brainstorm/data-architect.md +++ b/.claude/commands/workflow/brainstorm/data-architect.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured data-architect analysis" }, { - content: "Update session.json with data-architect completion status", + content: "Update workflow-session.json with data-architect completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/product-manager.md b/.claude/commands/workflow/brainstorm/product-manager.md index ab8f1768..80f4fc9d 100644 --- a/.claude/commands/workflow/brainstorm/product-manager.md +++ b/.claude/commands/workflow/brainstorm/product-manager.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured product-manager analysis" }, { - content: "Update session.json with product-manager completion status", + content: "Update workflow-session.json with product-manager completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/product-owner.md b/.claude/commands/workflow/brainstorm/product-owner.md index 6d984cbe..8ffe1aad 100644 --- a/.claude/commands/workflow/brainstorm/product-owner.md +++ b/.claude/commands/workflow/brainstorm/product-owner.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured product-owner analysis" }, { - content: "Update session.json with product-owner completion status", + content: "Update workflow-session.json with product-owner completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/scrum-master.md b/.claude/commands/workflow/brainstorm/scrum-master.md index 4d504107..d72931e3 100644 --- a/.claude/commands/workflow/brainstorm/scrum-master.md +++ b/.claude/commands/workflow/brainstorm/scrum-master.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured scrum-master analysis" }, { - content: "Update session.json with scrum-master completion status", + content: "Update workflow-session.json with scrum-master completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/subject-matter-expert.md b/.claude/commands/workflow/brainstorm/subject-matter-expert.md index 6c4fcff3..1ac403a5 100644 --- a/.claude/commands/workflow/brainstorm/subject-matter-expert.md +++ b/.claude/commands/workflow/brainstorm/subject-matter-expert.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured subject-matter-expert analysis" }, { - content: "Update session.json with subject-matter-expert completion status", + content: "Update workflow-session.json with subject-matter-expert completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/ui-designer.md b/.claude/commands/workflow/brainstorm/ui-designer.md index ae5f0115..1ca7a7d5 100644 --- a/.claude/commands/workflow/brainstorm/ui-designer.md +++ b/.claude/commands/workflow/brainstorm/ui-designer.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured ui-designer analysis" }, { - content: "Update session.json with ui-designer completion status", + content: "Update workflow-session.json with ui-designer completion status", status: "pending", activeForm: "Updating session metadata" } diff --git a/.claude/commands/workflow/brainstorm/ux-expert.md b/.claude/commands/workflow/brainstorm/ux-expert.md index e8f647cd..0e559346 100644 --- a/.claude/commands/workflow/brainstorm/ux-expert.md +++ b/.claude/commands/workflow/brainstorm/ux-expert.md @@ -88,7 +88,7 @@ ANALYSIS_MODE: {framework_mode ? "framework_based" : "standalone"} 3. **load_session_metadata** - Action: Load session metadata and existing context - - Command: Read(.workflow/WFS-{session}/.brainstorming/session.json) + - Command: Read(.workflow/WFS-{session}/workflow-session.json) - Output: session_context ## Analysis Requirements @@ -136,7 +136,7 @@ TodoWrite({ activeForm: "Generating structured ux-expert analysis" }, { - content: "Update session.json with ux-expert completion status", + content: "Update workflow-session.json with ux-expert completion status", status: "pending", activeForm: "Updating session metadata" }