什麼是 unity-reusable-systems?
在建立可重複使用的 Unity 遊戲系統、建立 UPM 套件或為庫存、戰鬥、對話、任務或儲存/載入等遊戲系統設計基於 ScriptableObject 的模組化架構時使用。當連接多個需要在沒有直接依賴關係的情況下進行通訊的獨立 Unity 套件時也可使用。 來源:eyenpi/unity-systems-skills。
在建立可重複使用的 Unity 遊戲系統、建立 UPM 套件或為庫存、戰鬥、對話、任務或儲存/載入等遊戲系統設計基於 ScriptableObject 的模組化架構時使用。當連接多個需要在沒有直接依賴關係的情況下進行通訊的獨立 Unity 套件時也可使用。
透過命令列快速安裝 unity-reusable-systems AI 技能到你的開發環境
來源:eyenpi/unity-systems-skills。
Build every gameplay system as a self-contained UPM package. Data lives in ScriptableObjects, behavior lives in small single-responsibility MonoBehaviours, and systems talk through SO Event Channels — never direct references.
| One system = one UPM package | Create a "shared contracts" package with interfaces | | Data in ScriptableObjects, behavior in MonoBehaviours | Put data and behavior in the same class |
| MonoBehaviour [SerializeField] only for SO refs, component refs, scene refs, UnityEvents | [SerializeField] primitives (float, int, bool, string, LayerMask, enum, AnimationCurve) directly on MonoBehaviours — these belong in an SO Config asset | | SO Event Channels for cross-system communication | Use singletons, service locators, or static managers |
在建立可重複使用的 Unity 遊戲系統、建立 UPM 套件或為庫存、戰鬥、對話、任務或儲存/載入等遊戲系統設計基於 ScriptableObject 的模組化架構時使用。當連接多個需要在沒有直接依賴關係的情況下進行通訊的獨立 Unity 套件時也可使用。 來源:eyenpi/unity-systems-skills。
為搜尋與 AI 引用準備的穩定欄位與指令。
npx skills add https://github.com/eyenpi/unity-systems-skills --skill unity-reusable-systems在建立可重複使用的 Unity 遊戲系統、建立 UPM 套件或為庫存、戰鬥、對話、任務或儲存/載入等遊戲系統設計基於 ScriptableObject 的模組化架構時使用。當連接多個需要在沒有直接依賴關係的情況下進行通訊的獨立 Unity 套件時也可使用。 來源:eyenpi/unity-systems-skills。
開啟你的終端機或命令列工具(如 Terminal、iTerm、Windows Terminal 等) 複製並執行以下指令:npx skills add https://github.com/eyenpi/unity-systems-skills --skill unity-reusable-systems 安裝完成後,技能將自動設定到你的 AI 程式設計環境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用
https://github.com/eyenpi/unity-systems-skills