Fr execute
Claude Code plugin suite: superpowers-wrapped planning, devcontainer+worktree isolation, goal-to-PR autonomy, and phase dispatch to VibeKanban runners
npx -y skills add derio-net/super-fr --skill fr-executeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Execute an agentic phase from a plan. Use when implementing assigned work from a plan file. Agent-facing skill.
SKILL.md
4.8 KB, as published. Nobody here has run it
fr-execute
Implements a single phase from a plan.
Announce at start: "I'm using fr-execute to implement this phase."
Mode selection
| Input | Mode |
|---|---|
| Issue URL/number (dispatch repo) | Dispatched: read assignment from Issue body — it embeds the spec link, plan _prose.md, and phase NN.yaml inline (repo checkout stays the source of truth) |
| (plan_dir, phase number) | Local: direct arguments |
PR format (unified)
When creating the PR for an agentic phase:
- Title:
[{owner}/{repo}] {slug} · Phase {n}/{total} · {phase_title}— matches the Issue title shape so VK / GH / PR surfaces align. - Body: first content block is the tracking block copied verbatim from
the Issue body (the
📦 Repo:/📋 Plan:/ … lines plus the**Goal (from plan):**paragraph). Then proceed with your PR summary.
The fr pickup output below provides the canonical PR title template.
Label lifecycle (no manual transition verbs in v2)
The Issue moves: fr:ready → fr:in-progress → fr:pr-ready → closed. v2 has no
manual transition verbs — every label flip is derived from what the
renderer can observe on the Issue plus its linked PRs:
fr:ready: the phase has atracking_issuebut no assignee, no draft PR, and no open non-draft PR.fr:in-progress: the Issue has an assignee OR a draft linked PR.fr:pr-ready: an open non-draft, non-merged linked PR exists.- closed:
state.completion.atis set on the phase AND a merged PR is observed AND no open linked PR remains (per_phase_completeinrender.py).
The fr apply step at the end of the phase pushes whichever transitions the
renderer projects from current GitHub state. To trigger fr:in-progress,
assign yourself to the Issue (or open a draft PR); to trigger fr:pr-ready,
take the PR out of draft.
Procedure
-
Get phase scope:
fr pickup <plan-dir> --phase NOutput is markdown: phase title, dependency reminder, PR title template, tasks + steps, and a pointer to
_prose.mdfor plan-level context. TheDepends on:line surfaces blockers — if any blocker phase is not yetComplete, stop and report. -
Implement. Delegate to
superpowers:executing-plans(orsuperpowers:subagent-driven-developmentfor parallel-friendly phases). -
Tick steps as you complete them:
fr plan edit <plan-dir> --tick P<n>.T<n>.S<n> --state x # or, to record a deliberate skip: fr plan edit <plan-dir> --tick P<n>.T<n>.S<n> --state - --note "<reason>" -
Mark the phase complete (after every step is ticked):
fr plan edit <plan-dir> --complete-phase N # manual phases require --note describing what was done fr plan edit <plan-dir> --complete-phase N --note "<runbook ref>"A phase carrying
acceptance: [row-ids]— flip those matrix rows now (not-implemented→skipped/ci), citing the test refs; the CLI warns on unflipped rows (seefr-acceptance). Discovered edges may ADD rows (fr acceptance add) — defended at PR time, never silent scope drift. -
Open the PR. Delegate to
superpowers:finishing-a-development-branch. Use the PR title fromfr pickupand the body shape above. Caveat — under fr-goal LOCAL mode, do NOT open a per-phase PR. Push the branch only; the single PR is fr-goal's step 8, opened (as a draft) by the orchestrator after its review pass — opening here reorders deliver ahead of review and reintroduces the #320 merge-race. Per-phase PRs remain the behaviour for the standalone dispatched (Issue/VK) flow only. -
Reconcile GitHub state:
fr apply <plan-dir> # preview the projected mutations fr apply <plan-dir> --yes # push label / state changesfr applyis idempotent. Safe to run before your PR merges — renderer needs BOTHcompletion.atAND a merged PR observed before projecting CLOSED, so this only setspr-ready. Re-run after merge (or let the runner) to close.
Constraints
- Don't touch other phases. One phase = one PR, except fr-goal LOCAL mode (step 5's caveat) — never open a per-phase PR there.
- Stop if blocked — report what's missing.
- Step IDs:
P<n>.T<n>.S<n>.
v1 plan migration
If you encounter a .md plan file (not a folder), it's a v1 plan that needs
migration to the v2 plan-as-folder format before any execution:
fr migrate v1-to-v2 # preview (default)
fr migrate v1-to-v2 --yes # apply: creates <slug>/ folders, moves .md to .md.v1-archive
Migration is repo-wide (converts every v1 plan, rewrites spec tables); commit
as its own PR. "Legacy layout detected" → fr migrate dirs --yes.