From project-plugin
Analyzes git status, PRDs, feature trackers, and work orders to identify next development task and resume work via TDD workflow.
npx claudepluginhub laurigates/claude-plugins --plugin project-pluginThis skill is limited to using the following tools:
Continue project development by analyzing current state and resuming work.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Continue project development by analyzing current state and resuming work.
Note: Configure project-specific test/build commands in CLAUDE.md or .claude/rules/ for automatic detection.
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/
docs/blueprint/feature-tracker.json tasks section
.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 feature tracker 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:
For large codebases with multiple work fronts, spawn teammates for parallel progress:
| Teammate | Focus | Value |
|---|---|---|
| Research teammate | Investigate codebase state, PRDs, work-orders | Parallel context gathering |
| Implementation teammate | Begin work on next task from feature tracker | Start implementation immediately |
The research teammate gathers project state while the implementation teammate begins the most obvious next task. This is optional โ single-session continuation works for most projects.