claude-code-orchestrator-kit 1.2.3 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,6 +39,15 @@ You are a standalone L1 orchestrator for the bug management workflow. Your role
39
39
 
40
40
  **Purpose**: Ensure environment is ready for bug management workflow
41
41
 
42
+ 0. **Session Check** (DeksdenFlow)
43
+ - Invoke `resume-session` skill to check for existing session
44
+ - If valid session found (<24h old):
45
+ * Ask user: "Found previous bug-management session at Phase X. Resume or start fresh?"
46
+ * If resume: load context, jump to saved phase
47
+ * If fresh: archive old session, proceed
48
+ - If no session: proceed to step 1
49
+ - Also invoke `load-project-context` skill if `.claude/project-index.md` exists
50
+
42
51
  1. **Setup Working Directories**
43
52
  Use Bash tool to create directory structure:
44
53
  ```bash
@@ -973,6 +982,8 @@ You are a standalone L1 orchestrator for the bug management workflow. Your role
973
982
  - ✅ Generate comprehensive summary with all iterations
974
983
  - ✅ Respect iteration limits (max 3)
975
984
  - ✅ Terminate workflow on critical failures
985
+ - ✅ Check for existing session with resume-session Skill (Phase 0)
986
+ - ✅ Save session context after each phase with save-session-context Skill
976
987
 
977
988
  ---
978
989
 
@@ -992,6 +1003,34 @@ This orchestrator leverages these reusable skills:
992
1003
  - Used when quality gates fail
993
1004
  - Restores codebase to safe state
994
1005
 
1006
+ 4. **resume-session** (DeksdenFlow): Check for existing session at workflow start
1007
+ - Used in Phase 0 before any work
1008
+ - Enables seamless continuation after session restart
1009
+
1010
+ 5. **save-session-context** (DeksdenFlow): Save workflow state after each phase
1011
+ - Used after completing each phase
1012
+ - Stores current state, next steps, git status
1013
+
1014
+ 6. **load-project-context** (DeksdenFlow): Load project structure map
1015
+ - Used in Phase 0 if project-index.md exists
1016
+ - Helps understand codebase structure
1017
+
1018
+ ---
1019
+
1020
+ ## Session Management (DeksdenFlow)
1021
+
1022
+ **Save context after each phase completion**:
1023
+ - Invoke `save-session-context` skill
1024
+ - Context includes: current phase, priority level, bug counts, next steps
1025
+
1026
+ **On error or pause**:
1027
+ - Always save context before exiting
1028
+ - Log significant issues to session-log.md
1029
+
1030
+ **On resume**:
1031
+ - `resume-session` skill restores workflow state
1032
+ - User can choose to resume or start fresh
1033
+
995
1034
  ---
996
1035
 
997
1036
  ## Testing Your Orchestrator
@@ -39,6 +39,12 @@ You are a standalone L1 orchestrator for the dead code cleanup workflow. Your ro
39
39
 
40
40
  **Purpose**: Ensure environment is ready for dead code cleanup workflow
41
41
 
42
+ 0. **Session Check** (DeksdenFlow)
43
+ - Invoke `resume-session` skill to check for existing session
44
+ - If valid session found (<24h old): ask user "Resume or start fresh?"
45
+ - If resume: load context, jump to saved phase
46
+ - Also invoke `load-project-context` skill if `.claude/project-index.md` exists
47
+
42
48
  1. **Setup Working Directories**
43
49
  Use Bash tool to create directory structure:
44
50
  ```bash
@@ -973,6 +979,8 @@ You are a standalone L1 orchestrator for the dead code cleanup workflow. Your ro
973
979
  - ✅ Generate comprehensive summary with all iterations
974
980
  - ✅ Respect iteration limits (max 3)
975
981
  - ✅ Terminate workflow on critical failures
982
+ - ✅ Check for existing session with resume-session Skill (Phase 0)
983
+ - ✅ Save session context after each phase with save-session-context Skill
976
984
 
977
985
  ---
978
986
 
@@ -992,6 +1000,17 @@ This orchestrator leverages these reusable skills:
992
1000
  - Used when quality gates fail
993
1001
  - Restores codebase to safe state
994
1002
 
1003
+ 4. **resume-session** (DeksdenFlow): Check for existing session at workflow start
1004
+ - Used in Phase 0 before any work
1005
+ - Enables seamless continuation after session restart
1006
+
1007
+ 5. **save-session-context** (DeksdenFlow): Save workflow state after each phase
1008
+ - Used after completing each phase
1009
+ - Stores current state, next steps, git status
1010
+
1011
+ 6. **load-project-context** (DeksdenFlow): Load project structure map
1012
+ - Used in Phase 0 if project-index.md exists
1013
+
995
1014
  ---
996
1015
 
997
1016
  ## Testing Your Orchestrator
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: dependency-orchestrator
3
- description: Use proactively via /health deps for comprehensive dependency management with iterative update cycles. Handles security fixes, unused cleanup, and version updates with one-at-a-time validation strategy. MUST BE USED for safe dependency management.
3
+ description: Use proactively via /health deps for comprehensive dependency management with iterative update cycles. Handles security fixes, unused cleanup, and version updates with one-at-a-time validation strategy. MUST BE USED for safe dependency management.
4
4
  model: sonnet
5
5
  color: purple
6
6
  ---
@@ -39,6 +39,12 @@ You are a standalone L1 orchestrator for the dependency management workflow. You
39
39
 
40
40
  **Purpose**: Ensure environment is ready for dependency management workflow
41
41
 
42
+ 0. **Session Check** (DeksdenFlow)
43
+ - Invoke `resume-session` skill to check for existing session
44
+ - If valid session found (<24h old): ask user "Resume or start fresh?"
45
+ - If resume: load context, jump to saved phase
46
+ - Also invoke `load-project-context` skill if `.claude/project-index.md` exists
47
+
42
48
  1. **Setup Working Directories**
43
49
  Use Bash tool to create directory structure:
44
50
  ```bash
@@ -973,6 +979,8 @@ You are a standalone L1 orchestrator for the dependency management workflow. You
973
979
  - ✅ Generate comprehensive summary with all iterations
974
980
  - ✅ Respect iteration limits (max 3)
975
981
  - ✅ Terminate workflow on critical failures
982
+ - ✅ Check for existing session with resume-session Skill (Phase 0)
983
+ - ✅ Save session context after each phase with save-session-context Skill
976
984
 
977
985
  ---
978
986
 
@@ -992,6 +1000,17 @@ This orchestrator leverages these reusable skills:
992
1000
  - Used when quality gates fail
993
1001
  - Restores codebase to safe state
994
1002
 
1003
+ 4. **resume-session** (DeksdenFlow): Check for existing session at workflow start
1004
+ - Used in Phase 0 before any work
1005
+ - Enables seamless continuation after session restart
1006
+
1007
+ 5. **save-session-context** (DeksdenFlow): Save workflow state after each phase
1008
+ - Used after completing each phase
1009
+ - Stores current state, next steps, git status
1010
+
1011
+ 6. **load-project-context** (DeksdenFlow): Load project structure map
1012
+ - Used in Phase 0 if project-index.md exists
1013
+
995
1014
  ---
996
1015
 
997
1016
  ## Testing Your Orchestrator