بنقرة واحدة
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.