muharremtozan/unity-agent-skills

unity-command-pattern

Encapsulate actions as objects for queuing, undo/redo, and async execution.

First seen Apr 19, 2026

Installation

$ npx skills add muharremtozan/unity-agent-skills --skill unity-command-pattern

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from muharremtozan/unity-agent-skills · top by installs.

npx skills add muharremtozan/unity-agent-skills

Browse all from muharremtozan/unity-agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 13
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 584 B
  • docs SUMMARY.md 104 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 47 installs

SKILL.md

Unity Command Pattern

Minimal command pattern with async support.

Core Features

  1. Async Interface: ICommand with Task-based execution
  2. SO Commands: Data-driven actions for simple cases
  3. Command Queue: Sequential execution system

Core Files (1 file)

  • Command.cs.txt: Complete command pattern (interface + SO + queue)

Usage

Implement ICommand for complex logic, or inherit CommandSO for inspector-configurable actions.