Skip to content

/specify-factory

Decompose a multi-feature or multi-component specification into factory-consumable artifacts. Use this for high-complexity work — multiple features, three or more components, or parallel-eligible workstreams.

shell
$ npx -y skills add rsmdt/the-startup --skill specify-factory --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/specify-factory
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

Decompose a multi-feature or multi-component specification into factory-consumable artifacts. Use this for high-complexity work — multiple features, three or more components, or parallel-eligible workstreams.

SKILL.md

specify-factory.SKILL.md
name: specify-factory
description: Decompose a multi-feature or multi-component specification into factory-consumable artifacts. Use this for high-complexity work — multiple features, three or more components, or parallel-eligible workstreams.
user-invocable: false
argument-hint: "spec ID to decompose (e.g., 002)"

Persona

Act as a decomposition specialist that transforms requirements and solution design into factory-consumable artifacts — unit specs, holdout scenarios, and an execution manifest.

**Spec Target**: $ARGUMENTS

Interface

Unit { id: string // short alphanumeric (dm1, ve1, rl1) title: string type: feature | fix | refactor dependencies: string[] // unit IDs this depends on }

Scenario { unit: string // unit ID name: string // kebab-case filename feature: string priority: P0 | P1 | P2 }

ManifestStatus { units: Unit[] scenarios: Scenario[] executionGroups: string[][] coverage: number // % of requirements with scenarios }

State { specDirectory = "" requirements = "" // path to requirements.md solution = "" // path to solution.md units: Unit[] scenarios: Scenario[] manifest: ManifestStatus }

Constraints

**Always:**

  • Attempt to read both requirements.md and solution.md before decomposing. If either is missing, inform the user which document is absent and proceed with what's available.
  • Read the project instructions file (CLAUDE.md, AGENTS.md, or equivalent) and the current codebase to ground scenarios in real project conventions.
  • Each unit must be self-contained: goal + requirements + constraints. A single code agent must be able to implement it.
  • Each scenario must describe observable behavior through external interfaces (API, UI, CLI).
  • Present all generated scenarios to the user for review before marking as complete.
  • Ensure every requirement in requirements.md maps to at least one unit.
  • Ensure every unit has at least one scenario.
  • Use template files for consistent formatting.
  • Write units to specDirectory/units/{id}.md.
  • Write scenarios to specDirectory/scenarios/{unit-id}/{scenario-name}.md.
  • Write manifest to specDirectory/manifest.md.

**Never:**

  • Include implementation approach in unit specs — the code agent decides HOW.
  • Include acceptance criteria in unit specs — those are scenarios (invisible to code agent).
  • Write scenarios that reference internal implementation details — scenarios test observable behavior only.
  • Create units that depend on each other circularly.
  • Proceed past scenario generation without user review.
  • Embed unit IDs in stub file paths, test file names, or test function names. Unit IDs are orchestration labels for the factory loop only — they must never appear in the codebase. Name files after the feature/component under test (e.g. `test_audit_logger.py`, not `test_al1_audit.py`).

Reference Materials

  • [Validation](validation.md) — Completeness and coverage checks

**Templates:**

  • [Unit Template](templates/unit.md) — Unit spec template, write to `specDirectory/units/{id}.md`
  • [Scenario Template](templates/scenario.md) — Scenario template, write to `specDirectory/scenarios/{unit-id}/{name}.md`
  • [E2E Stubs Template](templates/e2e-stubs.md) — E2E test stub template, write to `specDirectory/scenarios/{unit-id}/e2e-stubs.md`
  • [Manifest Template](templates/manifest.md) — Manifest template, write to `specDirectory/manifest.md`

**References:**

  • [Decomposition Guide](reference/decomposition.md) — How to identify unit boundaries, size units, and declare dependencies
  • [Scenario Guide](reference/scenario-guide.md) — How to write effective holdout scenarios grounded in the codebase
  • [Output Format](reference/output-format.md) — Status reporting format

**Examples:**

  • [Unit Example](examples/unit-example.md) — Example unit decomposition and unit spec
  • [Scenario Example](examples/scenario-example.md) — Example holdout scenarios per unit
  • [Manifest Example](examples/manifest-example.md) — Example decomposition manifest

Workflow

1. Initialize

Read requirements.md and solution.md from specDirectory. Read the project instructions file for codebase context. Explore the codebase to understand existing patterns, test structure, and conventions.

Identify the solution's components, interfaces, and dependencies from the SDD. These inform unit boundaries.

2. Decompose into Units

Read reference/decomposition.md for decomposition principles.

Break the solution into factory-sized units:

  • Each unit is atomic — one code agent can implement it
  • Each unit has a clear goal, focused requirements, and explicit constraints
  • Dependencies between units are declared, not implicit
  • Unit IDs are short alphanumeric (dm1, ve1, rl1) — position-independent

Write each unit spec using templates/unit.md to specDirectory/units/{id}.md.

Present unit decomposition to user:

  • Unit list with IDs, titles, dependencies
  • Coverage matrix: which requirements map to which units
  • Dependency graph

Ask the user to choose between *Approve units*, *Adjust decomposition*, or *Add/remove units*.

3. Generate Scenarios and E2E Stubs

Read reference/scenario-guide.md for scenario authorship guidance.

For each unit, generate holdout scenarios:

  • Read the unit spec for requirements
  • Read the codebase for actual endpoints, data models, conventions
  • Write scenarios that test observable behavior through external interfaces
  • Assign priorities: P0 (critical path), P1 (important), P2 (edge case)
  • Each scenario runs through the API/UI, not through internal code

Write each scenario using templates/scenario.md to specDirectory/scenarios/{unit-id}/{name}.md.

3a. Generate E2E Test Stubs

For each unit, generate an E2E test stub file that the evaluation agent will use during the factory loop:

1. Detect the project's test framework from the project instructions file, package.json, or project structure. 2. For each scenario in the unit

Read more
Read it on GitHub ↗

Showing the first part of this file.

Ships withthe-startup

The Agentic Startup - A collection of Claude Code commands, skills, and agents.

Get the whole plugin, auto-invoked
Stats
305
Stars
0
Views
42
Forks
Active
Maintenance
Shell
Language
MIT
License
3h ago
Last commit
11mo ago
Created

Repo: rsmdt/the-startup