Analyze project state and continue development where left off
Analyzes project state and continues development where work left off.
/plugin marketplace add laurigates/claude-plugins/plugin install project-plugin@lgates-claude-pluginsproject/Continue project development by analyzing current state and resuming work.
Note: This is a generic template. Run /blueprint-generate-commands to create a project-specific version in .claude/commands/project/continue.md.
Steps:
Check current state:
# Check git status
git status
# Check recent commits
git log -5 --oneline
# Check current branch
git branch --show-current
Read project context:
.claude/blueprints/prds/
.claude/blueprints/work-overview.md
.claude/blueprints/work-orders/
Analyze state and determine next task:
If uncommitted changes exist:
If on clean state:
Report status before starting:
đ Project Status:
Current Branch: [branch]
Uncommitted Changes: [yes/no - list files if yes]
Recent Work:
- [Last 3 commits]
PRDs Found:
- [List PRD files with brief summary]
Work Overview: Phase [N] - [Phase name]
â
Completed: [N] tasks
âŗ In Progress: [Current task if any]
âšī¸ Pending: [N] tasks
Next Task: [Identified next task]
Approach: [Brief plan]
Begin work following TDD:
Update work-overview as you go:
Important:
Handling Common Scenarios:
Scenario: Starting new feature:
/blueprint-work-orderScenario: Blocked by dependency:
Scenario: Tests failing:
Scenario: Unclear what to do next: