plan-feature

Bundle SPEC phases and plan writing into a single feature planning invocation.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/jacobrocks1212/claude-config --skill plan-feature-jacobrocks1212
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: plan-feature
Source: https://github.com/jacobrocks1212/claude-config/tree/main/user/skills/plan-feature
Command: npx skills add https://github.com/jacobrocks1212/claude-config --skill plan-feature-jacobrocks1212

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Consolidates the two planning steps (spec-phases and write-plan) into a single subagent invocation so features move from research gates to execution in one orchestrated round-trip.

Core Features & Use Cases

  • Single-shot planning: runs spec-phases and write-plan back-to-back to produce a ready-to-execute plan for a feature.
  • Gate enforcement: ensures SPEC.md and RESEARCH_SUMMARY.md gates are present before planning; surfaces clear errors if missing.
  • Operational summary: returns a structured end-of-cycle summary with plan files and any NEEDS_INPUT signals for the orchestrator.

Quick Start

Run /plan-feature <path/to/SPEC.md> to generate phases and an implementation plan in one step.

Frequently Asked Questions about plan-feature

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

FAQPage Schema
How do I automate feature planning from research to execution in one step?▼

Feature planning automation consolidates spec phases and plan writing into a single invocation. It validates preconditions, dispatches spec-phases and write-plan back-to-back, and returns a structured summary with plan files and input signals.

What files are required before running an automated feature plan generation?▼

Automated feature plan generation requires SPEC.md and RESEARCH_SUMMARY.md files in the feature directory. The orchestrator validates these gates before planning and surfaces clear errors if either file is missing.

How does the lazy batch mode work for generating spec phases?▼

Spec phases generation dispatches with a lazy batch flag when needed. This batches phase creation during the orchestrated planning round-trip to efficiently advance features from research gates to a ready-to-execute plan.

Can I generate implementation plans and spec phases simultaneously without separate commands?▼

Generating implementation plans and spec phases simultaneously is supported by bundling both steps into a single subagent invocation. It runs spec-phases and write-plan back-to-back to produce a ready-to-execute plan for a feature.

What does the operational summary return after orchestrating feature planning?▼

The operational summary returns a structured end-of-cycle summary containing plan files and any NEEDS_INPUT signals. This output allows the orchestrator to identify missing requirements or proceed directly to execution.

Why does feature planning fail when RESEARCH_SUMMARY.md is missing?▼

Feature planning fails because the orchestrator enforces gate checks for SPEC.md and RESEARCH_SUMMARY.md before dispatching. Missing files trigger clear errors to ensure research phases are complete before plan generation begins.