* Fix: document that rg --type gdscript is invalid, use --glob *.gd instead
Closes#37. ripgrep has no gdscript type — *.gd files are registered under
the gap type (GAP programming language). Using --type gdscript produces a
hard error, silently preventing any search from executing.
Added explicit warnings in two places:
- .claude/agents/godot-gdscript-specialist.md: new Tooling section with
the correct Grep tool param (glob: "*.gd") and shell equivalent
- docs/engine-reference/godot/current-best-practices.md: new Tooling
section agents read at version-check time
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* Fix: propagate rg --glob *.gd tooling warning to all Godot agents
Closes the coverage gap identified in PR #42 review — the ripgrep
gdscript-type warning was only in godot-gdscript-specialist. Added
the same CRITICAL tooling section to godot-specialist,
godot-gdextension-specialist, godot-shader-specialist, and
godot-csharp-specialist so no Godot agent can silently misfire a search.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
- New agent: godot-csharp-specialist covering partial class requirement,
[Export]/[Signal] attributes, SignalName emit pattern, ToSignal async,
Godot.Collections vs .NET collections, [GlobalClass] resources, .csproj config,
and C#-specific anti-patterns
- /setup-engine now asks GDScript vs C# vs Both before showing the Technology
Stack when Godot is chosen; choice determines CLAUDE.md template, naming
conventions, and specialist routing
- Refactored Godot-specific variants (3 CLAUDE.md templates, naming conventions,
3 routing tables) into Appendix A at the bottom of the skill — main flow stays
clean for Unity/Unreal users
- argument-hint updated to include engine-only invocation mode
- Section 5 collaborative step and Section 12 summary output updated for language
awareness
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Introduces a full shift-left QA pipeline with Story Type classification
as the backbone of the Definition of Done:
New skills:
- /test-setup: scaffold test framework + CI/CD per engine (Godot/Unity/Unreal)
- /qa-plan: generate sprint test plan classifying stories by type
- /smoke-check: critical path gate (PASS/PASS WITH WARNINGS/FAIL) before QA hand-off
- /team-qa: orchestrate qa-lead + qa-tester through full QA cycle
Story Type classification (Logic/Integration/Visual/Feel/UI/Config/Data):
- Logic and Integration: BLOCKING DoD gate — unit/integration test required
- Visual/Feel and UI: ADVISORY — screenshot + sign-off evidence required
- Config/Data: ADVISORY — smoke check pass sufficient
Updated skills: story-done (test evidence gate), story-readiness (Story Type
check), gate-check (test framework at Technical Setup, test evidence at
Polish/Release), create-epics-stories (Type field + Test Evidence section)
Updated agents: qa-lead (shift-left philosophy + evidence table),
qa-tester (automated test patterns for Godot/Unity/Unreal)
New templates: test-evidence.md (manual sign-off record), test-plan.md
(sprint-oriented QA plan replacing generic feature template)
Updated coding-standards.md: Testing Standards section with DoD table,
test rules, what NOT to automate, and engine-specific CI/CD commands
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>