Chen19007
@Chen19007
Public Skills
godot-verify
by Chen19007
Validate Godot GDScript files using gdlint, gdformat, gdradon, and LSP diagnostics. Use when users want to: (1) Check code quality after making changes, (2) Validate before committing, (3) Run code metrics analysis, (4) Run export validation, (5) Get real-time LSP diagnostics. Uses command-line tools directly and MCP tools for LSP integration.
skill-metadata-check
by Chen19007
检查 SKILL.md 的 YAML 元数据是否可解析、是否包含 name/description,避免元数据问题影响加载。
godot-design
by Chen19007
Godot GDScript 接口设计规范与指导,强调 TDD 友好、可测试、可维护的设计原则。
godot-dev
by Chen19007
Godot code implementation guidelines. Use when: (1) Writing GDScript code, (2) Following style conventions, (3) Using Godot features correctly, (4) Avoiding anti-patterns.
scratchpad
by Chen19007
Workflow standardization for isolated trial experiments. Use when: (1) Testing hypotheses, (2) Trying API usage, (3) Debugging isolated issues, (4) Keeping main context clean. Focus on RESULTS, not process.
godot-tdd
by Chen19007
Godot TDD(测试驱动开发)流程总控,协调 godot-design、godot-dev、godot-test、godot-verify 完成开发闭环。
godot-test
by Chen19007
Run GUT unit tests for Godot projects. Use when: (1) Running unit tests, (2) Verifying code changes, (3) TDD development, (4) CI/CD testing.
aseprite-frame-extract
by Chen19007
Batch-export per-tag animation frames from .aseprite files into categorized folders; use when asked to extract frames, split tags, or organize Aseprite animations into folders for engines like Godot.
aseprite-tags
by Chen19007
Extract animation tag metadata (names, frame ranges, directions, colors) from .aseprite files without Aseprite; use when asked to list actions/animations, frame tags, or audit tags across multiple Aseprite assets.
git-commit
by Chen19007
"智能提交与仓库初始化:自动生成 .gitignore、筛选提交文件、隐私扫描、配置 GitHub SSH 远程。用于初始化仓库、提交变更、设置远程、准备项目版本控制。"
godot-web-e2e
by Chen19007
End-to-end testing for any Godot Web export using Chrome DevTools and a local HTTP server. Use when verifying gameplay behavior in a Web build (not editor) and you need repeatable DevTools-driven input checks and console evidence.
godot-tdd-full
by Chen19007
Complete TDD workflow for Godot projects. Integrates interface design, GUT testing, code implementation, and verification tools.