ワンクリックで
plan-execute
Load a saved plan from ProjectSettings/GameDeck/plans/ and execute it step-by-step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Load a saved plan from ProjectSettings/GameDeck/plans/ and execute it step-by-step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Rapid prototyping workflow for Unity. Quickly validates a mechanic or concept with throwaway code and a structured report.
Save a plan to ProjectSettings/GameDeck/plans/ — captures the most recent plan from this conversation, or a plan you provide directly.
Plan a feature implementation with tasks, architecture, and file list.
Generate a complete Unity system — MonoBehaviour + ScriptableObject config from structured input.
Analyze and refactor a file or system with before/after comparison.
Creates an Architecture Decision Record (ADR) documenting a technical decision, alternatives, and consequences.
| name | plan-execute |
| description | Load a saved plan from ProjectSettings/GameDeck/plans/ and execute it step-by-step. |
| argument-hint | <plan-name> |
| user-invocable | true |
When this skill is invoked:
Require the plan name from the user's message. If they wrote
/plan-execute setup-2d-roguelike, the name is
setup-2d-roguelike. If no argument was provided, use the Glob
tool to list ProjectSettings/GameDeck/plans/*.md and respond:
/plan-execute <name>. Available
plans: <name1>, <name2>, ..." (names without .md)./save-plan to
create one."Then stop.
Read the plan file with the Read tool at
ProjectSettings/GameDeck/plans/<name>.md (relative to cwd,
which is UNITY_PROJECT_PATH). If the file doesn't exist, fall
back to the same usage hint from step 1 (Glob for the available
plans, list them, stop).
Strip the YAML frontmatter from the loaded content — the
block bounded by the first pair of --- delimiters at the top
of the file. Keep everything after the closing --- as the
plan body.
Announce execution to the user:
<name>"Execute the plan body step-by-step. Treat the body as the user's working brief and follow its structure as written:
AskUserQuestion to clarify before acting on assumptions.