execute

Execute multi-step game development plans in isolated git worktrees.

10|2|Updated Mar 28, 2026
One-click install
npx skills add https://github.com/tykisgod/quick-question --skill execute-tykisgod
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: execute
Source: https://github.com/tykisgod/quick-question/tree/main/skills/execute
Command: npx skills add https://github.com/tykisgod/quick-question --skill execute-tykisgod

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manual implementation of multi-step game development plans risks polluting shared git branches, introduces human error, lacks progress tracking, and can break engine project compilation if pre-checks are skipped.

Core Features & Use Cases

  • Strict Worktree Isolation: Automatically creates isolated git worktrees for plan execution to prevent branch pollution and enable parallel development workflows.
  • Pre-flight Validation: Runs engine project readiness checks and test compilation before writing any code to catch configuration issues early.
  • Scalable Execution: Dispatches parallel subagents for independent tasks and coordinates sequential phases for large cross-module plans, with active compile verification after each step.
  • Resumable Progress: Uses checkpoint tracking to save execution state, allowing seamless resume of interrupted plans without redoing completed work. Use case: A Unity developer implementing a 12-step player combat system plan can use this skill to automatically enter an isolated worktree, validate the project, dispatch parallel subagents for animation and physics modules, and resume execution if their session is interrupted, all without risking the main branch.

Quick Start

Use the execute skill to implement the player combat system plan located at Docs/qq/combat-system-plan.md.

Frequently Asked Questions about execute

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely execute multi-step game development plans without polluting shared git branches?

To safely execute multi-step game development plans, use strict worktree isolation to prevent branch pollution. This approach automatically creates isolated git worktrees, ensuring parallel development workflows remain clean and traceable without manual branch management.

Does this plan execution workflow support Unity, Godot, Unreal, and S&box engines?

Yes, this plan execution workflow supports Unity, Godot, Unreal, and S&box engines. It applies pre-flight engine project readiness checks and auto-compilation validation tailored to these specific game development environments before writing any code.

What is the best way to resume an interrupted game feature implementation plan?

The best way to resume an interrupted game feature implementation plan is using checkpoint-based resume functionality. It saves execution state automatically, allowing seamless continuation of cross-module refactors or feature implementation without redoing completed work.

How do I handle large cross-module refactors in game development using subagents?

To handle large cross-module refactors using subagents, dispatch parallel subagents for independent tasks and coordinate sequential phases. This scalable execution method verifies active compilation after each step to ensure reliable integration across modules.

Why do I need pre-flight validation checks before implementing a game development plan?

Pre-flight validation checks are needed before implementing a game development plan to catch configuration issues early. Running engine project readiness checks and test compilation prevents breaking engine project compilation if pre-checks are skipped.