mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: Add multi-session support to workflow system
- Enable multiple active workflow sessions to coexist - Add session detection logic for multiple .active-* markers - Update execute command to prompt user selection when multiple sessions found - Update plan command with multi-session awareness - Maintain session isolation while allowing parallel workflow instances 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -31,11 +31,13 @@ Coordinates agents for executing workflow tasks through automatic discovery and
|
||||
|
||||
### 1. Discovery Phase
|
||||
```
|
||||
├── Locate workflow folder (current session)
|
||||
├── Load workflow-session.json and IMPL_PLAN.md
|
||||
├── Scan .task/ directory for task JSON files
|
||||
├── Analyze task statuses and dependencies
|
||||
└── Build execution queue of ready tasks
|
||||
├── Check for .active-* markers in .workflow/
|
||||
├── If multiple active sessions found → Prompt user to select
|
||||
├── Locate selected session's workflow folder
|
||||
├── Load selected session's workflow-session.json and IMPL_PLAN.md
|
||||
├── Scan selected session's .task/ directory for task JSON files
|
||||
├── Analyze task statuses and dependencies for selected session only
|
||||
└── Build execution queue of ready tasks from selected session
|
||||
```
|
||||
|
||||
### 2. TodoWrite Coordination
|
||||
|
||||
Reference in New Issue
Block a user