From workflow-kit
Orchestrate lightweight feature delivery for new or existing projects using feature briefs, optional PRDs, optional ADRs, implementation plans, review gates, ownership boundaries, wave-based subagent launch/handoff, and Integration Coordinator execution for parallel human/AI work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-kit:feature-deliveryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants to plan, decompose, document, review, update, or prepare execution for a feature, product change, refactor, architecture change, or scoped bugfix.
references/adr-decision-guide.mdreferences/artifact-policy.mdreferences/model-tier-policy.mdreferences/parallel-work-guide.mdreferences/review-checklist.mdreferences/subagent-handoff.mdreferences/subagent-policy.mdreferences/workflow-modes.mdtemplates/adr.mdtemplates/feature-brief.mdtemplates/feature-index.mdtemplates/implementation-plan.mdtemplates/prd.mdtemplates/review-findings-section.mdtemplates/subagent-task.mdUse this skill when the user wants to plan, decompose, document, review, update, or prepare execution for a feature, product change, refactor, architecture change, or scoped bugfix.
The goal is to make delivery easier for humans and AI agents working in parallel, without adding unnecessary ceremony.
When installed from the workflow-kit plugin (Cursor, Claude Code, or Codex), invoke the orchestrator as:
| Platform | Invocation |
|---|---|
| Cursor | /feature-delivery |
| Claude Code | /workflow-kit:feature-delivery |
| Codex | @workflow-kit or @feature-delivery |
Bundled helper skills follow the same plugin namespace in Claude Code, for example /workflow-kit:review-plan.
If the host loads plugin skills without namespace, /feature-delivery and $feature-delivery remain valid aliases.
Repository-specific domain rules still live in the project AGENTS.md, not in this skill.
docs/features.md.docs/features/<FEATURE-ID>.md.docs/plans/<FEATURE-ID>-plan.md.*-review*.md file.Parallelization, Wave Schedule, and Subagent Launch Spec to the plan.execute, act as Integration Coordinator: resolve model tiers, launch subagents by wave, collect handoffs, update Wave Execution Log, and advance only after verification passes.Reviews — pre-execute or post-execute — write their findings as a section appended to the plan they are reviewing (docs/plans/<FEATURE-ID>-plan.md for a single feature, or the phase-level plan when the review spans multiple features). Use the section name that matches the moment:
Review Findings — pre-execute review of an unapproved plan.Post-execute Updates — post-execute review after the plan was implemented.Each finding row must carry: # / Severity / Area / Finding / Decision / Status (applied / deferred → <where> / rejected).
Do not create files like <FEATURE-ID>-review.md, <FEATURE-ID>-review-rN.md, FASE-X-review.md, or FASE-X-review-rN.md. Repeated review rounds add new rows (or a new dated subsection) to the same plan — git history covers the rest.
Before marking a feature or plan as planned or ready for review, classify open decisions:
blocking: changes persistence, hierarchy, public/semi-public contracts, domain rules, authentication, authorization, multi-tenancy, migrations, integrations, execution order, or ownership.non-blocking: can be decided during execution without changing the plan shape or artifact contracts.assumption: a planner choice that is safe to proceed with and easy to reverse.If any blocking decision exists, ask the user before finalizing the plan, or create/update artifacts with status draft or blocked and list the blocker explicitly. Do not hide blockers under generic open questions.
Use status values consistently:
draft: still being shaped.blocked: cannot be finalized until a decision is made.planned: complete plan, waiting for approval.approved: user approved execution.in_progress: implementation started.done: implementation and verification completed.Infer the mode from the user's request. If ambiguous, default to triage.
triage: classify the request, identify needed artifacts, and propose next step.plan: create/update feature brief, PRD when needed, ADR when needed, and implementation plan.review: review an existing feature or plan for consistency, dependencies, ownership, and missing validation. When the review covers an implementation (post-execute), it MUST also include a test-quality review using the test-guide skill — never report the implementation review as done before running the test review and presenting its keep/improve/remove/missing output to the user.execute: execute an approved plan as Integration Coordinator, launching subagents by wave when the plan defines launch specs, respecting ownership, handoff, and verification gates.update: update existing artifacts after scope, requirements, or design changes.Read references/workflow-modes.md when the mode is unclear or when switching modes.
Use the smallest artifact set that gives enough clarity:
Read references/artifact-policy.md before creating artifacts.
Use these local/project skills when appropriate:
prd: create a PRD when the idea is broad, stakeholder-facing, or unclear.create-architectural-decision-record: create an ADR for structural decisions.create-implementation-plan: create a new plan.update-implementation-plan: update an existing plan.Use installed/global workflow skills when available:
review-plan: review implementation plans before execution.verification-before-completion: verify before claiming completion.test-guide: audit test usefulness whenever implementation adds tests or changes domain rules, validation, persistence, archive/status behavior, hierarchy movement, or API contracts.commit / create-pr / pr-review: delivery and review.Load only the reference needed for the current action:
references/artifact-policy.md: decide brief vs PRD vs ADR vs plan.references/workflow-modes.md: mode behavior and stop points.references/adr-decision-guide.md: decide whether a change needs an ADR.references/parallel-work-guide.md: ownership, write scope, dependency rules.references/subagent-policy.md: when and how to suggest or launch subagents.references/model-tier-policy.md: abstract tiers (fast, standard, high), defaults by role, escalation, platform model resolution.references/subagent-handoff.md: wave execution, handoff blocks, merge rules, Coordinator duties.references/review-checklist.md: review gates before execution.Use templates as output shapes, adapting paths only when the user or repository already has a stronger convention:
templates/feature-index.mdtemplates/feature-brief.mdtemplates/prd.mdtemplates/adr.mdtemplates/implementation-plan.mdtemplates/subagent-task.mdtemplates/review-findings-section.md (section block — append to the plan, never a standalone file)blocked or failed.done.Subagent Launch Spec and Wave Schedule; update the plan first.model_tier; use references/model-tier-policy.md defaults when drafting the plan.test-guide to audit the tests changed or added by the feature. Present the keep/improve/remove/missing classification, ask explicit approval before modifying any test, and do not mark the review as approved while missing items of medium or higher severity remain unaddressed.Review Findings (pre-execute) or Post-execute Updates (post-execute) inside the plan being reviewed. Repeat rounds add rows/subsections to the same section — never new *-review*.md files.npx claudepluginhub lucasaguiar11/agent-skills --plugin workflow-kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.