From dev-team
Resume work from a prior session by reading phase progress files in memory/ and active plans. Use this when starting a new session on in-progress work, or when the user says "continue", "pick up where I left off", "resume", or "what was I working on".
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-team:continueThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Role: orchestrator. This command resumes work from a prior session — it does not start new work.
Role: orchestrator. This command resumes work from a prior session — it does not start new work.
Arguments: optional — a phase or plan name to resume; defaults to the most recent.
You have been invoked with the /continue command.
Find phase progress files with Glob("memory/*.md") — never Read the bare memory/ directory to see what it contains (${CLAUDE_PLUGIN_ROOT}/knowledge/directory-enumeration.md). These follow the pattern:
memory/research-progress-*.md — Research phase outputmemory/plan-progress-*.md — Plan phase outputmemory/implementation-progress-*.md — Implementation phase outputmemory/decisions.md — Accumulated decision logAlso check (same rule — Glob, not a directory Read):
plans/ directory for active plan filesdocs/specs/ for design documents without corresponding implementation — or, on a repo that opted into /specs' issue-first persistence convention, a --spec-issue <url> reference recorded in the active plan instead of a file.claude/review-summaries/ for recent review resultscorrections/ for unapplied code review fixesRun git status and git log --oneline -5 to understand:
Present a structured summary:
## Session State
**Branch**: feature/xyz (ahead of main by 3 commits)
**Last phase completed**: Plan (2026-03-17)
**Next phase**: Implement
### In-Progress Work
- [Plan] Widget refactor — 8/12 steps complete
- [Review] 2 unapplied corrections from last review
### Uncommitted Changes
- `src/widget.ts` — modified
- `src/widget.test.ts` — modified
### Recommended Next Action
Continue implementation from step 9 of the widget refactor plan.
Present the recommended next action and ask: "Resume from here, or would you like to do something else?"
If the user confirms, load the appropriate phase context and continue execution.
Based on the identified phase:
Follow the Context Loading Protocol for phased loading.
npx claudepluginhub bdfinst/agentic-dev-team --plugin dev-teamGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.