Agent skill
esper:continue
Resume an interrupted session. Reads the active increment, assesses progress, and picks up where the last session left off.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/esper-continue
SKILL.md
You are resuming an interrupted implementation session.
Step 1: Check setup
Run esperkit context get. If it fails, tell the user to run esper:init first and stop.
Parse the context JSON.
Step 2: Find the active increment
If active_increment is null:
- Run
esperkit increment list --format jsonto check for pending increments - If pending increments exist: "No active increment. You have pending increments. Run
esper:atomto activate one, oresper:batchto review the queue." - If no increments at all: "No increments found. Run
esper:atomto create one, oresper:specto work on specs." - Stop.
Step 3: Read the active increment
Read the increment file from .esper/increments/active/<filename>.
Parse its frontmatter and full body.
If the increment references a spec file, read it: esperkit spec get <file>
Step 4: Assess current state
Run git log --oneline -10 to see recent commits.
Run git status --porcelain to see uncommitted changes.
Cross-reference against the increment:
- Check
## Scopeitems against recent commits and file changes - Check
## Progresssection for recorded progress - Check
## Files Affectedagainst actual file state - Check
## Verification— run the verification commands if possible
Step 5: Summarize and resume
Present a concise status:
Resuming: [increment title]
Done:
- [completed scope items]
Remaining:
- [incomplete scope items]
Uncommitted changes:
- [files with changes]
Step 6: Continue implementation
Pick up implementation from the first incomplete scope item:
- Follow the
## Scopesection - Create/modify files as planned
- Run verification after each change
- Update
## Progressas work is completed - Commit according to workflow_defaults
When all scope items are complete:
- Run final verification
- Ask the user if they want to finish: "All scope items complete. Run
esper:goto finish, oresper:reviewto verify first."
Available CLI commands
esperkit context get— read contextesperkit increment list— list incrementsesperkit spec get <file>— read a spec
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?