一键导入
t1k-help
Display TheOneKit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use TheOneKit'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Display TheOneKit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use TheOneKit'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Asset Hunter Pro — unused asset detection, dependency graph, duplicate finder, project cleanup automation for Unity
Author game-design diagrams (quest trees, economy flows, narrative branches, level layouts) from copy-ready Mermaid templates. Authoring only — NOT an adapter.
DOTS RPG grid inventory, item passive effects, and set bonuses — polyomino placement, rotation, auto-fit, PassiveEffectSystem, ItemSetBonusSystem, ModifierSource.ItemPassive/ItemSet.
Practical tools and validation methods for game balance — DPS calculators, EHP formulas, spreadsheet layouts, stat audits, difficulty spike detection
GDD structure, templates, and living documentation patterns for game projects — wiki pages, design docs, section layout, sync triggers
Game feel and juice — screen shake, hit stop, particles, animation curves, input responsiveness, feedback timing. Makes actions feel satisfying.
| name | t1k:help |
| description | Display TheOneKit usage guide with live registry state. Use for 'what commands exist', 'which agents are registered', 'how do I use TheOneKit'. |
| keywords | ["help","usage","guide","commands","agents","registry","list"] |
| version | 1.0.0 |
| effort | low |
| argument-hint | (no arguments) |
| origin | theonekit-core |
| repository | The1Studio/theonekit-core |
| module | null |
| protected | true |
Lists all commands and dynamically shows registered agents from the routing registry.
Routing (role→agent mapping):
!cat .claude/t1k-routing-*.json 2>/dev/null || echo "NO ROUTING FRAGMENTS"
Installed kits:
!cat .claude/metadata.json 2>/dev/null || echo "NO METADATA"
Module summary:
!cat .t1k-module-summary.txt 2>/dev/null || echo "NO MODULE SUMMARY"
MANDATORY: Read ALL .claude/t1k-routing-*.json files to generate the agents table.
Show which role is mapped to which agent (highest-priority registry wins per role).
Also read ALL .claude/t1k-config-*.json files to list any extra commands registered by installed kits.
| Command | Purpose |
|---|---|
/t1k:cook | Feature implementation (registry-routed) |
/t1k:plan | Implementation planning (planner agent) |
/t1k:brainstorm | Ideation (brainstormer agent) |
/t1k:test | Run tests (registry-routed) |
/t1k:fix | Fix bugs (registry-routed) |
/t1k:debug | Debug issues (registry-routed) |
/t1k:review | Code review (registry-routed) |
| Command | Purpose |
|---|---|
/t1k:docs | Documentation management |
/t1k:git | Git operations (cm/cp/pr/merge) |
| Command | Purpose |
|---|---|
/t1k:triage | Triage issues/PRs across all registered repos |
/t1k:sync-back | Push .claude/ changes to origin kit repos |
/t1k:issue | Report problems to correct kit repo |
/t1k:doctor | Validate registry integrity |
/t1k:help | This help guide |
| Command | Purpose |
|---|---|
/t1k:modules add <names> | Install modules + auto-resolve dependencies |
/t1k:modules remove <names> | Remove modules (refuses if dependents exist) |
/t1k:modules list | Show installed and available modules |
/t1k:modules preset <name> | Switch preset (additive; --replace for clean) |
Follow protocol: skills/t1k-modules/references/module-detection-protocol.md
If installedModules present in .claude/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 |
|---|---|
/t1k:scout | Codebase exploration |
/t1k:ask | Technical Q&A |
/t1k:watzup | Session review |
/t1k:help --search <query> # Filter commands matching keyword in name or description
/t1k: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 |
|---|---|
t1k:plan | t1k:cook |
t1k:cook | t1k:test, t1k:review |
t1k:test | t1k:review (pass) or t1k:fix (fail) |
t1k:review | t1k:git cm |
t1k:fix | t1k:test |
t1k:debug | t1k:fix |
t1k:triage | t1k:cook --auto --parallel |
Format: **Next:** /t1k:{cmd1}, /t1k:{cmd2}