一键导入
omg-help
Display Oh My Game Kit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use Oh My Game Kit'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Display Oh My Game Kit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use Oh My Game Kit'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Unity engine adapter: .asmdef graph, Roslyn class diagrams with Unity stereotypes (MonoBehaviour, ScriptableObject, DOTS), UPM package deps, and C4 architecture views
Cocos Creator 3.8.7 playable-ad parameter discovery + implementation. Scans project config files (constant.ts, *Config.ts) AND all Canvas UI nodes via MCP, reads scene values for defaults, wires bindings, auto-assigns. Modes: --quick, --standard, --deep, --exhaustive, --auto.
Compare CK updates against GameKit baseline, suggest which changes to incorporate.
Answer technical questions with context-aware skill activation. Use for 'how does X work', 'what is the best way to', 'explain this pattern' queries.
Check context usage limits, monitor time remaining, optimize token consumption, debug context failures. Use when asking about context window, token budget, or agent context sizing.
Implement features end-to-end: plan, code, test, review via registry agents. Use for 'implement X', 'build Y feature', 'add Z functionality'. Handles full workflow.
| name | omg-help |
| description | Display Oh My Game Kit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use Oh My Game Kit'. |
This skill was ported from upstream reference material. Interpret command names, paths, and agent-routing guidance as Codex/Oh My Game Kit equivalents. Prefer active Codex tools and local project instructions over Codex-specific mechanics when they conflict.
Lists all commands and dynamically shows registered agents from the routing registry.
When the user asks for the help guide, fetch the live registry state via tool calls AFTER this skill body is loaded — do NOT embed !`cat ...` in the body (cache-busts every fragment edit). Use:
Read .agents/metadata.json → installed kits + modulesRead .omg-module-summary.txt → module summary (may not exist)Read each .agents/omg-routing-*.json matching glob → role→agent mapping (highest-priority wins per role)Read each .agents/omg-activation-*.json matching glob → keyword→skill activationRead each .agents/omg-config-*.json matching glob → extra commands registered by installed kitsIf a file does not exist, treat as "no entries" and skip silently — do not echo error.
MANDATORY: After fetching above, generate the agents table from routing fragments. Show which role is mapped to which agent (highest-priority registry wins per role). List any extra commands from config fragments.
| Command | Purpose |
|---|---|
omg-cook | Feature implementation (registry-routed) |
omg-plan | Implementation planning (omg-planner agent) |
omg-brainstorm | Ideation (omg-brainstormer agent) |
omg-test | Run tests (registry-routed) |
omg-fix | Fix bugs (registry-routed) |
omg-debug | Debug issues (registry-routed) |
omg-review | Code review (registry-routed) |
| Command | Purpose |
|---|---|
omg-docs | Documentation management |
omg-git | Git operations (cm/cp/pr/merge) |
| Command | Purpose |
|---|---|
omg-triage | Triage issues/PRs across all registered repos |
omg-sync-back | Push .agents/ changes to origin kit repos |
omg-issue | Report problems to correct kit repo |
omg-doctor | Validate registry integrity |
omg-help | This help guide |
| Command | Purpose |
|---|---|
omg-modules add <names> | Install modules + auto-resolve dependencies |
omg-modules remove <names> | Remove modules (refuses if dependents exist) |
omg-modules list | Show installed and available modules |
omg-modules preset <name> | Switch preset (additive; --replace for clean) |
Follow protocol: .agents/skills/omg-modules/references/module-detection-protocol.md
If installedModules present in .agents/metadata.json, for each installed module:
installedModules[name].version), kit, required/optional statusIf no installedModules key or no metadata: skip this section silently.
| Command | Purpose |
|---|---|
omg-scout | Codebase exploration |
omg-ask | Technical Q&A |
omg-watzup | Session review |
omg-help --search <query> # Filter commands matching keyword in name or description
omg-help --category <cat> # Filter by category: implementation, maintenance, modules, universal
Search behavior: case-insensitive match against command name + description. Show only matching rows.
Category values: implementation, docs-git, maintenance, modules, universal
After showing help for a specific command, append suggested next commands:
| Command shown | Suggested next |
|---|---|
omg-plan | omg-cook |
omg-cook | omg-test, omg-review |
omg-test | omg-review (pass) or omg-fix (fail) |
omg-review | omg-git cm |
omg-fix | omg-test |
omg-debug | omg-fix |
omg-triage | omg-cook --auto --parallel |
Format: **Next:** omg-{cmd1}, omg-{cmd2}