AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Plan Phase

skill-rosslevinsky-portable-agent-skills-plan-phase · by rosslevinsky

>

No reviews yet
0 installs
38 views
0.0% view→install

Install

$ agentstack add skill-rosslevinsky-portable-agent-skills-plan-phase

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rosslevinsky-portable-agent-skills-plan-phase)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Plan Phase? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Work Breakdown Structure

Overview

Read a plan document, analyze the scope, propose a phase structure for approval, then produce phase documents and a phases.md execution tracker. The original plan document is left untouched — it is a stable reference.

Each phase must be independently committable — it should leave the codebase in a working state. Phases flow forward: earlier phases unblock later ones, never the reverse.


Step 1 — Locate the plan

If the user provided a path argument, use it. Otherwise:

  • Search for plan files matching plans/**/plan.md
  • If exactly one exists, use it
  • If multiple exist, list them and ask the user which one to break down.

If operating autonomously, choose the only incomplete plan; if all are incomplete, choose the most recently modified one and note the assumption.

  • If none exist, tell the user to run /plan-init first, or provide any

markdown file containing a goal and scope description

Read the plan document in full.

Handling non-plan-init input

If the file was not produced by /plan-init, look for equivalent content:

| Expected section | Acceptable equivalents | |---|---| | Goal | Objective, Summary, Overview, Problem Statement | | Success Criteria | Acceptance Criteria, Definition of Done, Tests | | Affected Areas | Scope, Files, Components, Modules | | Technical Constraints | Constraints, Requirements, Technical Notes |

If a section is missing entirely, note what couldn't be found and either:

  • Ask the user to clarify (if the gap is material — e.g. no goal at all)
  • Make a reasonable inference and proceed, noting the assumption

Do not refuse to proceed just because the format differs from plan-init output.


Step 2 — Explore for breakdown context

Based on the plan's affected areas (or equivalent scope section), explore the codebase:

  • Read the key files that will change
  • Identify natural seams: what can be done independently, what has dependencies
  • Look at existing test files to understand what tests currently exist vs. need to be written
  • Note any migration concerns (DB schema, API contracts, translations, etc.)

Verify every assumption against the actual codebase before designing phases. Do not assume a file exists or a path is correct — check it. If the plan's Affected Areas list contains paths that don't exist or have moved, note the discrepancy.

Use this exploration to inform phase granularity. Phases should be:

  • Small enough to commit independently (1–6 hours of focused work)
  • Large enough to be meaningful (not a single line change unless it's a critical gate)
  • Ordered so each builds on the last without breaking anything

Step 3 — Design the phases (internal)

Think through the full sequence before presenting anything to the user. Consider:

  1. Foundation first — schema changes, new models, interface definitions before their consumers
  2. Tests are mandatory, not optional — every phase that introduces new behaviour must include

tests for that behaviour. For API endpoints, business logic, and utilities: prefer TDD (failing test written before implementation). For UI and wiring code: tests written alongside. No phase is complete without its tests passing.

  1. Backend before frontend (usually) — or at least the API contract before the UI
  2. Risky changes isolated — put anything with blast radius in its own phase
  3. Final phase = verification gate — last phase runs all success criteria from the plan

Target 3–8 phases. Too few means each phase is too risky; too many means overhead.

For each phase determine:

  • A short human-readable name (title case, e.g. "Add Schema Migration")
  • A kebab-case filename slug (e.g. add-schema-migration)
  • A one-sentence goal
  • Entry criteria: what must be true before this phase can start
  • A rough list of tasks (3–8 bullet points — specific but not yet fully detailed)
  • Exit criteria: the formal definition of done for this phase (separate from the task checklist)
  • The verification command(s) to run at the end

Step 4 — Present proposed phases and ask for approval

Before writing any files, show the user the proposed breakdown in a single message:

Here's the proposed breakdown for "" — N phases:

Phase 1: 
  Goal: 
  Entry: 
  Tasks: 
  Verify: 
  Exit: 

Phase 2: 
  ...

Does this breakdown look right? A few things you can tell me:
- Add, remove, or merge phases
- Move tasks between phases
- Change the scope of any phase
- Adjust the order

Reply "looks good" to proceed, or describe any changes.

Wait for the user's response. If they request changes, revise the breakdown and re-present it. Repeat until they confirm. Do not create any files until the user approves the structure.

If operating autonomously (no user available), proceed with the internally designed phase breakdown and note the assumption that it was not user-reviewed.


Step 5 — Write phase documents

For each approved phase N, create plans//phase--.md (zero-padded number, e.g. phase-01-add-schema-migration.md).

Each phase document uses this structure:

~~~markdown

Phase :

Status: pending

Goal

Entry Criteria

Before starting this phase, confirm:

  • [ ]
  • [ ]

Tasks

  • [ ]
  • [ ]
  • [ ]

Tests

For logic, API endpoints, and utilities: write failing tests before implementation (TDD). For UI and wiring: write tests alongside the code.

  • [ ] `` —
  • [ ]

Verification

Run these after completing all tasks:

Also verify manually:

Exit Criteria

This phase is complete only when ALL of the following are true:

  • [ ] Every task above is checked off
  • [ ] All tests listed in the Tests section are written and passing
  • [ ] No previously passing tests have regressed
  • [ ] All verification commands pass with no failures
  • [ ] Run the cyw skill (or equivalent manual review) — finds zero issues
  • [ ]
  • [ ] phases.md phase checkbox updated to [x]

Commit

~~~

Use real file paths from the codebase. Tasks should be specific enough that another engineer could follow them without re-reading the plan. Follow all conventions defined in the project's CLAUDE.md / AGENTS.md (whichever exists).


Step 6 — Write phases.md

Create plans//phases.md — the execution tracker. Do not modify plan.md.

~~~markdown

Phases:

Execution tracker for [plan.md](./plan.md)

Status

| Field | Value | |---|---| | Phase | Phase 1 of N — | | State | Ready to execute | | Blocker | None | | Last updated | |

Phases

  • [ ] [Phase 1: ](./phase-01-.md)
  • [ ] [Phase 2: ](./phase-02-.md)
  • [ ] ...

~~~


Step 7 — Report to the user

Print a summary:

  • Location of phases.md and number of phase files created
  • One-line description of each phase
  • Total checklist items across all phases
  • Next step: "Run /plan-run plans//plan.md to execute all phases."

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.