ワンクリックで
waygent
Translate natural-language Waygent run, status, explain, resume, verify, and apply requests into stable CLI commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Translate natural-language Waygent run, status, explain, resume, verify, and apply requests into stable CLI commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when approved Superpowers implementation plans must run in fixed order and survive process interruption.
Use when you have an implementation plan and design spec to execute autonomously — Opus orchestrates, Sonnet sub-agents implement/review/verify/document. Provide plan path and spec path at invocation. NOTE — single-session execution is preferable for ≤5-task plans or plans with deep cross-task coupling (multi-agent overhead exceeds the parallelism win).
| name | waygent |
| description | Translate natural-language Waygent run, status, explain, resume, verify, and apply requests into stable CLI commands. |
Use this skill when the user asks to run, inspect, resume, explain, verify, or apply a Waygent execution from natural language.
Waygent is the product runtime. This skill translates operator intent into the
waygent CLI and then reports the command outcome. It must not implement
scheduling, provider execution, worktree mutation, trust scoring, or direct
AgentLens writes.
Hard boundaries:
skills/kws-codex-plan-executor.skills/kws-claude-multi-agent-executor.platform.*, runway.*, kernel.*, and lens.*
event families.Invocation boundary:
spawn_agent, direct file edits, or chat-managed workers as
a substitute for waygent run.--plan and the design/spec with --spec.--execution-mode multi-agent.waygent run auto-detects the host and picks the default provider when
--provider is not passed: Claude Code (CLAUDECODE=1 or
CLAUDE_CODE_ENTRYPOINT set) → claude; Codex app/CLI (CODEX_APP=1,
CODEX_CLI=1, or CODEX_ENTRYPOINT set) → codex; unknown host → codex
(preserved fallback). Set WAYGENT_HOST=claude|codex to force a host.
Execution mode defaults to multi-agent in every case.--provider always wins over auto-detection.waygent demo is the deterministic offline path and only supports the fake
provider. Use waygent run for Codex or Claude provider execution.bun run waygent -- run ...; it maps to
the same CLI as waygent run ....Host-agent model policy:
spawn_agent as the
implementation path, or bypass the Waygent CLI/runtime boundaries above.Default mappings:
Natural-language mappings are versioned in
references/nl-lexicon.md (waygent.nl_lexicon.v1). Keep explicit CLI
flags and explicit command names higher priority than NL interpretation.
waygent run --latestwaygent run --plan plan.md --spec design.md --execution-mode multi-agentwaygent run --plan plan.md --spec design.md --profile max-qualitywaygent run --plan plan.md --profile cost-saverwaygent run --plan plan.md --run <run_id>waygent status --lastwaygent events --run <run_id> --jsonwaygent inspect --run <run_id> --jsonwaygent explain --lastwaygent resume --lastwaygent verify --lastwaygent verify --last --task <task_id>waygent review --lastwaygent review --last --task <task_id>waygent apply --run <run_id>waygent orphans (delete via
waygent orphans --delete <id> --yes)waygent orphans --stalewaygent orphans --mark-blocked <run_id>waygent scaffold-plan --id <task_id> --title <title> --claim <path:mode> --risk <low|medium|high> --verify <command>waygent lint-design --path design.mdwaygent lint-plan --path plan.md--profile presets:
max-quality: main=opus/high, subagents=opus/high.balanced: main=opus/high, subagents=sonnet/medium.cost-saver: main=haiku/medium, subagents=sonnet/medium.The preset model names above are Claude-shaped. In a Codex run, max-quality
is provider-aware: main=gpt-5.5/xhigh, implement/review/verify/repair
subagents=gpt-5.5/high, with full plan preflight, manifest spec slicing,
builtin hooks, and required method evidence unless explicitly overridden by
supported CLI flags.
Explicit --main-model, --main-reasoning, --subagent-model, and
--subagent-reasoning override any preset.
Plan-author guidance — verify_isolation (optional):
Each task may declare verify_isolation: "isolated" | "fast" | "auto". The
default is "auto". Use "isolated" when the verify command must observe
the worker's cross-package changes (most integration tests). Use "fast"
to opt out of automatic escalation when you are certain the diff is
self-contained. See docs/operations/verification.md for failure surface
and kill switches.
Closeout loop:
git status --short --branch --untracked-files=all
before declaring the work complete.git diff --check for docs-only changes, add the offline Waygent gates for
runtime changes, and add console or native gates only when those surfaces
changed.git diff --check before any commit or final
completion claim.Stop rules:
--latest is ambiguous, ask for the plan path.dirty_source_checkout, report the blocker and do not retry.waygent explain --last before waygent verify
or waygent resume.review_evidence_missing, run or recommend waygent review
instead of rerunning verification.resume does not report apply_verified_checkpoint, do not run apply;
inspect or explain the run first.checkpoint_manifest_missing, checkpoint_patch_missing,
or checkpoint_digest_mismatch, report the blocker and do not retry from
chat.intake_decision_required, explain the specific blocker
and ask only the short question from the operator decision. Do not rewrite
the plan from chat unless the user approves the change.invariant_violation_predispatch, prescriptive_drift,
policy_ack_missing, or stale_test_candidates_missing, the normalized
design contract is the source of truth. Reference the normalized_design
artifact when explaining the blocker.recovered, proceed with the run result and
mention the normalized plan and recovery report artifact refs when useful.