Index of Unity Skills functional modules and advisory design modules. Browse available skill modules, check operating-mode requirements (Approval/Auto/Bypass), and pick the right module for the task. Triggers: Unity module list, Unity skill index, browse Unity skills, find Unity module, Unity module catalog, Unity skill categories, mode requirements, Unity advisory modules, Unity 模块列表, Unity 技能索引, 浏览 Unity 技能, 查找 Unity 模块, Unity 模块目录, Unity 技能分类, 模式要求, Unity 设计模块.
Unity Skills - Module Index
Module docs. Start with ../SKILL.md for mode switching and schema-first rules.
Multi-instance: For version-specific projects, call unity_skills.set_unity_version(...) first.
Schema-first: Use GET /skills/schema or unity_skills.get_skill_schema() for exact signatures. Load module docs for workflow guidance and guardrails.
Modules
Mode legend (v1.9.0+, caller-facing — describes what the caller can do, not the C# attribute):
SA — module skills mostly run directly in all three modes (Approval / Auto / Bypass) without a grant.
FA — module skills mostly require user grant under Approval (single-shot one-step execution); under Auto / Bypass they run directly with audit only.
Mixed — module is split between SA and FA; check per-skill mode returned by GET /skills before calling.
Suffix * — module contains auto-forbidden skills (Delete / Play Mode / Domain Reload / high-risk). These return MODE_FORBIDDEN under Approval and Auto; only Bypass runs them, or the user can permanently allow them via the Allowlist. Never attempt grant for them.
Labels are guidance only; the per-skill mode field on GET /skills is authoritative.
When a task touches 2+ objects in Auto / Bypass mode (or after a successful grant under Approval), prefer *_batch skills over repeated single-item calls.
Skill Naming Convention
Skills follow <module>_<action> or <module>_<action>_batch.
Use schema to verify the exact prefix list.
Special: scene_analyze, hierarchy_describe, project_stack_detect → perception; job_* → batch.
If a skill name does not match a valid prefix or a schema result, do not invent it.