Stats
Actions
Tags
From gamedev-skills
Use when setting up or driving the Claude Code toolchain for Godot game development — deciding which superpowers skill applies at each stage, calling the godot-mcp-enhanced MCP server (screenshots, game bridge, audio, editor), or keeping the toolchain current after upstream updates
How this skill is triggered — by the user, by Claude, or both
Slash command
/gamedev-skills:gamedev-toolchainThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| 件 | 作用 | 安装 |
| 件 | 作用 | 安装 |
|---|---|---|
| superpowers 插件 | 流程纪律(brainstorm/TDD/计划/调试) | /plugin marketplace add obra/superpowers-marketplace |
| godot-mcp-enhanced(MCP) | 引擎闭环(截图/游戏桥/动态 GDScript/场景查询) | claude mcp add godot -- npx -y godot-mcp-enhanced,env 设 GODOT_PATH |
| 本 skills 包 | 分级工作流+测试模式+协作纪律 | 见仓库 README |
| 阶段 | 用什么 |
|---|---|
| 新特性起手 | tiered-gamedev-workflow 判级 → L 级走 superpowers:brainstorming |
| 写规格/计划 | L 级:superpowers:writing-plans → superpowers:executing-plans |
| 写代码 | superpowers:test-driven-development + godot-headless-testing |
| 意外失败 | superpowers:systematic-debugging(探针定位) |
| 目测验证 | MCP screenshot(capture 无头截场景 / analyze 读图)——注意 2D 项目无头截图 |
| output_path 必须在项目目录内 | |
| 运行时探查 | MCP game(game_bridge + get_tree/find_nodes/send_key/monitor) |
| 听音效 | MCP audio(audio_play 指定 stream_path) |
| 大范围代码搜索/摸底 | Explore 子代理(只回结论不占主上下文;单点已知文件直接读) |
| ≥2 个互不依赖的任务 | superpowers:dispatching-parallel-agents 并行子代理 |
| 运营子代理团队(派发简报/模型档位/成本复盘/审查经济) | running-subagent-teams |
| 工作流自我纠错(复盘/改规则/控胀/根基防护) | evolving-workflow-rules |
| 提交前全量测试 | 测试 runner 后台运行(run_in_background),期间备好提交材料,完成自动通知 |
| 提交落地 | solo-repo-discipline |
select:mcp__godot__screenshot)加载 schema 再调用。npx -y 形态 = 冷启动自动拉最新版;行为突变时先查版本:
npm view godot-mcp-enhanced version(本包内容核对于 v0.18.1)。core 受保护
常驻;editor/bridge 需对应能力;test 已并入 validation)。manage_tools
动态启停(始终可用、不可禁用):list_groups 查全组、activate <组> 启用——
某工具名不在可用列表里时多半是该组未激活,先 manage_tools activate,不是
没装;旧工具名由 LEGACY 兼容模式继续可用。v0.18.1 另修 read_scene 返回
结构化属性、game_wait 轮询等待。GODOT_MCP_MULTI_INSTANCE=true。UPDATE-CHECKLIST.md 的冒烟清单 →
修订本 skill 的能力表与版本号。npm view godot-mcp-enhanced version 与 superpowers 插件版本,和本 skill 的
"核对于"版本比对,有差异就提醒过一遍 UPDATE-CHECKLIST。注意:cron 只在
Claude 会话空闲时触发,且 recurring 任务约 7 天自动过期——会话长期开着才有效,
过期后随手重建(或退回手动:每次上游相关工作开始前查一次版本)。npx claudepluginhub sonic7881963/gamedev-skills --plugin gamedev-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.