mcpbeat Sign in

Feature Lifecycle Skill for Claude

|

15k tokens
context cost
the whole folder, loaded on every use
9
files
instructions only
0
copies elsewhere
how many repositories repackaged it
413
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/notque/vexjoy-agent --skill feature-lifecycle

The instruction itself

7 sections, as written by the author

Feature Lifecycle Skill

Phase-gated feature workflow: DESIGN > PLAN > IMPLEMENT > VALIDATE > RELEASE. Each phase must pass its gate before the next begins.

Phase Routing

Determine which phase to execute based on feature state:

  • If .feature/ exists, check current phase:
   python3 ~/.claude/scripts/feature-state.py status

Route to the phase indicated by the state machine.

  • If no feature state exists, determine entry point from user intent:
  • "design", "think through", "explore approaches" -> DESIGN
  • "plan", "break down", "create tasks" -> PLAN (requires completed design)
  • "implement", "execute plan", "start building" -> IMPLEMENT (requires completed plan)
  • "validate", "quality gates", "check feature" -> VALIDATE (requires completed implementation)
  • "release", "merge", "ship it" -> RELEASE (requires passed validation)
  • "end to end", "full lifecycle", "from scratch" -> DESIGN (start from beginning)
  • Load the phase reference for the current phase:
  • DESIGN: Read references/design.md
  • PLAN: Read references/plan.md
  • IMPLEMENT: Read references/implement.md
  • VALIDATE: Read references/validate.mdrun quality gate commands, do not reason about whether they would pass. Paste exit codes and output.
  • RELEASE: Read references/release.md
  • END-TO-END: Read references/pipeline.md
  • Follow the loaded reference exactly. Each reference contains the full phase instructions, gates, and checkpoints.

State Conventions

Read references/shared.md for directory structure, state management commands, context loading rules, and naming conventions. All state operations go through python3 ~/.claude/scripts/feature-state.py -- never manipulate state files directly.

Phase Ordering

DESIGN -> PLAN -> IMPLEMENT -> VALIDATE -> RELEASE
  |         |         |           |          |
  v         v         v           v          v
design.md plan.md  impl.md   report.md  PR merged

Each phase produces an artifact consumed by the next. Skipping phases is not supported because downstream phases depend on artifacts from earlier phases.

Reference Loading Table

| Signal | Load These Files | Why |

|---|---|---|

| Phase 1 DESIGN: idea to design document | design.md | Loads detailed guidance from design.md. |

| errors, error handling | error-handling.md | Loads detailed guidance from error-handling.md. |

| Phase 3 IMPLEMENT: dispatching task waves to domain agents | implement.md | Loads detailed guidance from implement.md. |

| running the full design-to-release pipeline | pipeline.md | Loads detailed guidance from pipeline.md. |

| Phase 2 PLAN: decomposing design into wave-ordered tasks | plan.md | Loads detailed guidance from plan.md. |

| Phase 5 RELEASE: PR merge, tagging, worktree cleanup | release.md | Loads detailed guidance from release.md. |

| feature state directory layout, naming, write protection | shared.md | Loads detailed guidance from shared.md. |

| Phase 4 VALIDATE: running quality gates | validate.md | Loads detailed guidance from validate.md. |

Error Handling

| Error | Cause | Solution |

|-------|-------|----------|

| Phase mismatch | User requests phase N but state is at phase M | Report current state, suggest correct next phase |

| Missing artifact | Previous phase did not produce expected output | Route back to previous phase |

| Gate failure | Phase requirements not met | Report what failed, suggest fixes |

References

| Task Signal | Load |

|-------------|------|

| Phase routing (design/plan/implement/validate/release) | Phase reference (design.md, plan.md, implement.md, validate.md, release.md) |

| End-to-end or full pipeline | references/pipeline.md |

| State commands, directory structure, naming | references/shared.md |

| Error, failure, blocked, gate fail, retry, deviation | references/error-handling.md |

  • references/design.md -- Design phase: explore requirements, discuss trade-offs
  • references/plan.md -- Plan phase: break design into wave-ordered tasks
  • references/implement.md -- Implement phase: dispatch tasks to domain agents
  • references/validate.md -- Validate phase: run quality gates
  • references/release.md -- Release phase: merge, tag, cleanup
  • references/pipeline.md -- End-to-end orchestration across all phases
  • references/shared.md -- State conventions shared across all phases
  • references/error-handling.md -- Recovery patterns for phase errors, gate failures, agent dispatch failures

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take notque/feature-lifecycle from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.