con un clic
make-it-so
4. Make it so (implement all tasks)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
4. Make it so (implement all tasks)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Batch-fix all open bugs in parallel, iterate on PR reviews until clean, then squash-merge each PR sequentially. Extends bug-blitz with automated review cycles and merge. Fetches bug-type tasks from Transit, creates worktrees, spawns parallel fix agents, runs /pr-review-fixer in a loop until no blockers/critical/major issues remain, then merges PRs one by one with squash-and-merge.
Initialize Claude Code project settings with standard language-specific permissions. Use when setting up a new project for Claude Code or adding standard configuration to an existing project.
Capture reusable cross-project technical knowledge into the user's Obsidian vault as a markdown note. Use whenever the user wants to save a learning, pattern, recipe, or how-to that would help future projects — phrases like "save this to my vault", "write this up as a note", "capture this for future reference", "document how X works", "remember this pattern", "add to my knowledge base", or any time after solving something non-obvious in their current repo. Examples are "how to set up an MCP server in a Swift app", "the GraphQL pagination pattern we used here", "how Transit wires up its dependency injection". Use this skill PROACTIVELY whenever the user finishes investigating something they'd plausibly want to reuse on a different project, even if they don't say "save it" explicitly — offer to capture it. Do NOT use for project-specific notes that only make sense inside one repo (those belong in that project's own notes), and do NOT use for daily/journal entries.
Fix Go unit tests to comply to best practices. Use this when you're asked to modernise tests.
Push a branch, open a change request, iterate on reviews until clean, then squash-merge. Runs /pr-review-fixer in a loop until no blockers/critical/major issues remain, rebases onto latest origin/main, and squash-merges. Works on both GitHub (gh) and GitLab (glab) — it detects the forge from the git remote. Works with or without Transit tickets. Use when you want to shepherd a PR/MR from push to merge, e.g. "push and merge this", "get this merged", "review-fix-merge loop".
Fetch unresolved change-request review threads (both diff-anchored and CR-level), validate issues, and fix them. Also checks CI status and fixes failing tests, lint errors, and build issues. Works on both GitHub (gh) and GitLab (glab) — it detects the forge from the git remote. Use when reviewing and addressing PR/MR feedback. Filters out resolved threads, keeps only the last Claude review comment per thread (matching the `<!-- claude-local-review -->` sentinel from the local-review agent), validates issues, posts a review report as a CR comment, then fixes validated issues.
| name | make-it-so |
| description | 4. Make it so (implement all tasks) |
Implement all the remaining tasks from the spec, one phase at a time. The main agent NEVER implements tasks itself — it always delegates the work to one or more subagents, oversees their spawning, integrates their results, and handles phase-level bookkeeping (review, changelog, specs overview).
Constraints:
Phase Retrieval (main agent):
rune next --phase --format json to get the next incomplete phaserune next reports that all tasks are complete, stop the loop and report completion to the userStream Detection (main agent):
rune streams --available --json to detect ready work streamsParallel Delegation (multiple streams):
Subagents work in isolated git worktrees so their parallel commits don't race on the shared index or on tasks.md.
For each ready stream the main agent MUST:
git worktree add .claude/worktrees/<phase>-stream-<N> -b stream/<phase>-<N>general-purpose subagent unless a more specific type fits)Each subagent prompt MUST include:
cd there before doing anything)front_matter_references to read before implementingrune next --phase --stream N --format json to retrieve all tasks for the streamrune complete <task-id> as it finishestasks.md) and commit using the Subagent Commit Conventions belowdone | blocked | failed)Main Agent Oversight (parallel mode):
done / blocked / failedrune streams --available --json. If newly unblocked streams appear (because another stream's completion satisfied their deps), spawn fresh subagents for them in new worktrees — same parallel pattern as aboveblocked and no new work surfaces, report a circular dependency to the user and stopfailed, surface the failure to the user and stop the phase rather than masking itIntegration (main agent, after all parallel subagents have returned done):
git merge --no-ff stream/<phase>-<N> -m "[merge]: phase <P> stream <N>"tasks.md are expected (each stream marked different tasks complete). Resolve by accepting both sides' completionsgit worktree remove .claude/worktrees/<phase>-stream-<N>git branch -d stream/<phase>-<N>Single-Subagent Delegation (single stream or no streams):
No worktree is needed — there is no parallel commit race when only one subagent is working.
The main agent MUST spawn one subagent (Task tool, general-purpose unless a more specific type fits) with a prompt containing:
front_matter_references to read before implementingrune next --phase --stream N --format json if a single stream is in play, otherwise rune next --phase --format json, to retrieve all tasks for the phaserune complete <task-id> as it finishestasks.md) and commit on the current working branch using the Subagent Commit Conventions belowdone | failed)The main agent waits for the subagent to return and surfaces any failure to the user before continuing.
Review (main agent):
done (single-subagent mode), use the design-critic skill over the resulting state and verify it's correct. Issues detected should be fixed (delegate the fix as a follow-up subagent if it involves code, or update the decision log directly)Phase Changelog & Specs Overview (main agent):
CHANGELOG.md (create if missing), prepend the entry if not already present, and commit it as [doc]: changelog for phase <P> (or with a ticket prefix if applicable)rune list specs/{feature_name}/tasks.md --format json and verify no incomplete tasks remainspecs/OVERVIEW.md exists:
Planned or In Progress to Doneimplementation.md), add them to the spec's detail section file listspecs/OVERVIEW.md exists AND the spec's status is Planned:
Planned to In ProgressCompact and Continue (main agent):
/compact with: /compact Continuing /make-it-so - implement the next phase. Current progress: [brief summary of completed phase]/make-it-so to implement the next phaseSubagent Commit Conventions (used by ALL subagents — parallel stream subagents and single-subagent mode; the main agent's phase changelog commit is a separate single-file commit and follows its own format):
CHANGELOG.md. The main agent writes the per-phase changelog entry after the subagents return (and, in parallel mode, after their branches are merged).stream/<phase>-<N>; single-subagent mode is on the user's working branch. The ticket prefix below should be derived from the base working branch (the branch the worktree was created from, or — in single-subagent mode — the current branch directly).ABC-123 (3–5 letters/digits, -, 1–5 digits) at the start of the branch name, possibly after feature/ or hotfix/.
b. A pure number, which would likely reflect a GitHub Issue.[feat] / [bug] / [doc] based on the branch and the nature of the changes.<prefix>:. Do NOT include any co-authored-by lines.