internal-gateway-execute-plans
Use when executing or resuming an approved repository-owned retained plan under tmp/superpowers/plans/.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when executing or resuming an approved repository-owned retained plan under tmp/superpowers/plans/.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Use when creating, reviewing, or materially revising a repository-owned Copilot agent under `.github/agents/`.
Use when /internal-aws selects the AWS governance lane for IAM operating models, trust policies, federation, permission boundaries, SCPs, tag policies, exception controls, or access guardrails.
Use when /internal-aws selects the AWS Lambda lane for handlers, event sources, runtimes, packaging, retries, concurrency, cold starts, or Lambda-specific configuration.
Use when /internal-aws selects the AWS research lane to retrieve current official AWS documentation, regional availability, service behavior, IAM state, or policy-simulation evidence.
Use when /internal-aws selects the AWS operations lane for monitoring, logging, rollout validation, backup and restore proof, DR evidence, reporting, or audit evidence.
| name | internal-gateway-execute-plans |
| description | Use when executing or resuming an approved repository-owned retained plan under tmp/superpowers/plans/. |
references/execution-contract.md — repository hooks around the delegated execution loop.references/recovery-contract.md — continuation-first recovery and closeout decision ladder.references/status-contract.md — status transition table, required headings, and exact sibling filenames.scripts/plan_execution.py — read-only stdlib-only CLI for strict plan binding, structured recovery classification, status shape, resume safety, and completion readiness./superpowers-executing-plans owns critical plan review, todo tracking, task execution, and its core stop behavior./internal-tdd owns executable-behavior test-first guidance at the local task gate./superpowers-verification-before-completion owns final evidence before completion claims./addyosmani-code-simplification is conditional and may be loaded only when the approved task explicitly authorizes simplification.tmp/superpowers/plans/.The bundled CLI proves only mechanical safety: the plan is in the canonical retained directory, readable, actionable, and contains exactly one supported execution contract; status files are bound to the plan and fingerprint; and completion state is consistent. Missing required headings, execution fields, or contract data are blocking findings. Status files require the minimal resumable core plus closeout evidence for serialized routes. Conversational approval and runtime safety remain gateway responsibilities.
The gateway is a repository-owned extension of /superpowers-executing-plans. The
delegated owner supplies the core review, todo, execution, and stop loop. Keep
only these local responsibilities here:
/internal-tdd and evidence hooks;closeout-check, continue while a safe route exists,
and preserve the baseline/final delta;DONE, PARTIAL, BLOCKED, or NEEDS_REVIEW sibling;scripts/plan_execution.py.references/recovery-contract.md whenever validation or
execution is unresolved. Completion: the next candidate was tried, authority
was requested when required, or exhaustion evidence is complete.closeout-check. Completion: continue immediately on a
continue-* or request-authority route, or write one legal status sibling for a terminal or explicit
pause route.git diff --check, status binding, and the
verification-before-completion gate. Completion: the status sibling and report
contain the same fresh evidence.Before loading /superpowers-executing-plans, bind the retained plan, record
approval, fingerprint the plan, capture the workspace baseline, and run the
plan's broad baseline validation. At each
task boundary, load /internal-tdd when the task changes executable or
evaluable behavior and require its red-first evidence before implementation.
After each delegated task, run the plan's focused validation, retain fresh
evidence, classify failures, and attempt bounded recovery while evidence
improves. Pre-existing or unrelated broad failures do not stop independent
tasks. Load /superpowers-verification-before-completion before any positive
completion claim; load /addyosmani-code-simplification only when explicitly
authorized by the plan.
Before a task transition or closeout, apply
references/recovery-contract.md. Preserve the native authoritative command,
continue on a safe continue-* route, and keep bounded search and retry evidence.
On pause or resume, preserve the plan fingerprint and use the status and resume
checks from scripts/plan_execution.py. At closeout, run the required broader
validation with the same commands used at baseline, record the baseline/final
delta, verify git diff --check, and write exactly one status sibling according
to references/status-contract.md. Always provide a concise user-facing report
with the outcome, changed work, validation, blocker or gap, recovery attempts,
and exact next action.
Do not run git add, git commit, git push, git merge, or another Git
mutation while executing, pausing, or closing out a plan. Leave executed
changes uncommitted for the user to review. If a retained plan contains Git
mutation steps, skip them and record the plan drift in the status sibling.
git diff --checkpython3 scripts/plan_execution.py preflight <plan-file> --format compactpython3 scripts/plan_execution.py status-check <status-file> --format compactpython3 scripts/plan_execution.py resume-check <plan-file> <status-file> --format compactpython3 scripts/plan_execution.py closeout-check <plan-file> <evidence-file> --format compactpython3 scripts/plan_execution.py completion-check <plan-file> <status-file> --format compactThe writer-owned versioned ## Execution Contract is authoritative for
validation IDs, native commands, required flags, equivalence policy, manual
obligations, and authority boundaries. The executor owns all six discovery
categories, recovery candidates, attempts, rejection evidence, authority
state, and closeout routing. request-authority keeps execution active and
does not produce a status sibling.