implement

Automate end-to-end feature implementation from saved requirements with QA gates.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/nexus-a1/claude-skills --skill implement-nexus-a1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement
Source: https://github.com/nexus-a1/claude-skills/tree/main/skills/implement
Command: npx skills add https://github.com/nexus-a1/claude-skills --skill implement-nexus-a1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

End-to-end feature implementation from saved requirements, enabling resumable progress and automated quality gates.

Core Features & Use Cases

  • Detects incomplete work and resumes from saved state.
  • Parses requirements from multiple input formats and produces a concrete plan.
  • Plans, implements, and commits changes in discrete chunks with per-chunk QA gates.
  • Creates pull requests and handles resume-able sessions in the current working tree.
  • Supports configuration-driven isolation via worktrees to avoid workspace contamination.

Quick Start

Invoke /implement with a valid work identifier or a requirements file to begin an end-to-end implementation flow.

Frequently Asked Questions about implement

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate end-to-end feature implementation from saved requirements?

Automating end-to-end feature implementation requires parsing saved requirements into a concrete plan, then chunking commits, running QA gates, and creating pull requests. This Skill processes requirements files to execute that full workflow automatically.

Can I resume an incomplete feature implementation if my session was interrupted?

Yes, resuming incomplete feature implementation is supported through state persistence. The Skill detects incomplete work from saved state and resumes the implementation flow from the exact point of interruption without losing progress.

Does git worktree isolation work for managing multiple feature implementations simultaneously?

Git worktree isolation works for feature implementation by creating separate working directories. This configuration-driven isolation prevents workspace contamination, allowing you to manage multiple parallel feature implementations without conflicting branches.

What is the best way to ensure code quality during automated feature implementation?

Ensuring code quality during feature implementation is handled through per-chunk QA gating. The Skill plans and commits changes in discrete chunks, automatically verifying each chunk against quality gates before proceeding to the next implementation step.

How do I generate a pull request automatically after implementing a feature?

Generating a pull request after feature implementation is built into the workflow. Once all chunked commits pass their respective QA gates, the Skill automatically creates a pull request to finalize the end-to-end implementation cycle.

What requirements file formats are supported for parsing feature plans?

The Skill supports multiple input formats for parsing requirements, specifically targeting projects where requirements are captured as spec, plan, or tasks files. It detects the format and produces a concrete implementation plan from the parsed content.