Unity History

Undo/redo history management. Use when users want to undo, redo, or check edit history. Triggers: history, undo, redo, revert, previous state, Unity历史, Unity撤销, Unity重做.

noah-zll Updated

File contents

History Skills

Manage Unity Editor undo/redo history.

Guardrails

Mode: Full-Auto required

DO NOT (common hallucinations):

  • history_list / history_get do not exist → use history_get_current for current undo group
  • history_clear does not exist → Unity undo history cannot be cleared via API
  • history_save does not exist → undo history is managed by Unity automatically

Routing:

  • For simple undo/redo → history_undo / history_redo (this module) or editor_undo / editor_redo
  • For persistent task-level undo → use workflow module
  • For conversation-level undo → use workflow module's workflow_session_undo

Skills

history_undo

Undo the last operation. Parameters: None.

history_redo

Redo the last undone operation. Parameters: None.

history_get_current

Get current undo history state. Parameters: None.

noah-zll/unity-skills-trae-mcp/tree/main/.trae/skills/history commit 6e587c916e

Frequently asked questions

npx skillmds@latest add noah-zll/unity-history