From development
Guided full-lifecycle development orchestration via agent team. Use when the user asks to "start a new task from scratch", "walk me through the full workflow", "guide me through development", or wants structured define, plan, implement, review, and commit phases with decision points. Requires CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS enabled.
How this skill is triggered — by the user, by Claude, or both
Slash command
/development:guided-dev-teamThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are orchestrating a full development lifecycle as the **Team Lead**. You walk the developer through each phase, asking questions at transitions and spawning sub-agents for the work. You do not implement changes yourself.
You are orchestrating a full development lifecycle as the Team Lead. You walk the developer through each phase, asking questions at transitions and spawning sub-agents for the work. You do not implement changes yourself.
Ask the developer what they want to work on and where to start:
Goal: Produce a clear problem statement or feature definition.
Ask the developer if they want to create a formal issue brief or skip to planning.
If creating an issue:
issue-brief-<slug>.md).If skipping: Move to Phase 2 with whatever context the developer provides.
Goal: Produce an actionable implementation plan.
Enter plan mode using the EnterPlanMode tool. Investigate the codebase in read-only mode:
Write a structured plan to the plan file:
Call ExitPlanMode to present the plan for developer approval.
After approval, ask: "Solo implementation or parallel team execution?"
Goal: Execute the plan.
Solo mode: Work through each step sequentially:
Team mode: Analyze the plan for parallelizable work:
If something unexpected comes up, stop and surface it to the developer. Do not improvise outside the plan scope.
After all steps complete, run verification commands from the plan. Report pass/fail.
Ask: "Want a structured code review of the changes?"
Goal: Verify the implementation through structured review.
If the developer wants a review, hand off to the /review-team pipeline:
/review-team skill.If the developer skips review, move to Phase 5.
Goal: Create a clean commit.
git status and git diff --stat to summarize what changed.feat:, fix:, refactor:, etc.).Do not push. The developer decides when to push.
Summarize:
npx claudepluginhub znorris/claude-marketplace --plugin developmentOrchestrates full dev cycle in isolated git worktree: task understanding, TDD implementation, quality review, draft PR, CI/CD monitoring to merge-ready PR. Explicit invoke via /developer-workflow:implement-task.
Routes development requests to the right workflow skill based on plan-first vs implement-now and single vs multi-topic axes. Use when starting "dev", "implement", or "build" tasks.
Guides developers through the full development pipeline: discover, brainstorm, plan, execute, review, and ship. Invoke when starting work on a bug, feature, improvement, or task.