load-resumption-state
CommunityLoad previous workflow state, resume from where you left off.
Software Engineering#git#developer tools#state management#software development#workflow management#resumption
AuthorBerryKuipers
Version1.0.0
Installs0
System Documentation
What problem does it solve?
When a workflow is interrupted, manually determining the exact point to restart from can be complex and lead to redundant work. This Skill intelligently analyzes previous work to identify the correct resumption point.
Core Features & Use Cases
- Intelligent State Analysis: Checks for a saved workflow state file (
.claude/state/conductor.json) and analyzes the current git state (branch, commits, uncommitted changes, existing PR). - Optimal Resumption Point: Combines file and git state to determine the most accurate phase and step to resume the workflow from.
- Prevents Duplicate Work: Automatically skips already completed phases, allowing the workflow to continue efficiently.
- Use Case: At the start of any conductor workflow, use this Skill to automatically detect if there's ongoing work and suggest resuming from the last known good state, saving significant time.
Quick Start
Load previous workflow state and determine the optimal resumption point
load-resumption-state
Output:
{
"resumption": {
"detected": true,
"phase": 4,
"step": "Create pull request",
"skipPhases": [1, 2, 3]
},
"state": {
"source": "git+state_file",
"git": {"branch": "feature/issue-137-dark-mode", "commits": 5, "hasPR": false}
}
}
Dependency Matrix
Required Modules
jqgitgh CLI
Components
Standard package💻 Claude Code Installation
Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.
Please help me install this Skill: Name: load-resumption-state Download link: https://github.com/BerryKuipers/claude-code-toolkit/archive/main.zip#load-resumption-state Please download this .zip file, extract it, and install it in the .claude/skills/ directory.