mirror of
https://github.com/Donchitos/Claude-Code-Game-Studios.git
synced 2026-06-27 04:51:46 +00:00
Compare commits
2 Commits
9ccc5440af
...
a1697d670e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1697d670e | ||
|
|
9a4243b373 |
@@ -388,6 +388,16 @@ Do NOT rely on inline version claims in this file — they may be wrong. Always
|
||||
|
||||
When in doubt, prefer the API documented in the reference files over your training data.
|
||||
|
||||
## Tooling — ripgrep File Filtering
|
||||
|
||||
**CRITICAL**: There is no `gdscript` type in ripgrep. `*.gd` files are registered
|
||||
under the `gap` type (GAP programming language). Using `--type gdscript` or passing
|
||||
`type: "gdscript"` to the Grep tool produces a hard error — the search never executes.
|
||||
|
||||
**Always use `glob: "*.gd"`** when filtering GDScript files:
|
||||
- Grep tool: `glob: "*.gd"` ✓ | `type: "gdscript"` ✗
|
||||
- Shell/CI: `rg --glob "*.gd"` ✓ | `rg --type gdscript` ✗
|
||||
|
||||
## Coordination
|
||||
- Work with **godot-specialist** for overall Godot architecture and scene design
|
||||
- Work with **gameplay-programmer** for gameplay system implementation
|
||||
|
||||
@@ -298,6 +298,16 @@ that may affect native bindings.
|
||||
|
||||
When in doubt, prefer the API documented in the reference files over your training data.
|
||||
|
||||
## Tooling — ripgrep File Filtering
|
||||
|
||||
**CRITICAL**: There is no `gdscript` type in ripgrep. `*.gd` files are registered
|
||||
under the `gap` type (GAP programming language). Using `--type gdscript` or passing
|
||||
`type: "gdscript"` to the Grep tool produces a hard error — the search never executes.
|
||||
|
||||
**Always use `glob: "*.gd"`** when filtering GDScript files:
|
||||
- Grep tool: `glob: "*.gd"` ✓ | `type: "gdscript"` ✗
|
||||
- Shell/CI: `rg --glob "*.gd"` ✓ | `rg --type gdscript` ✗
|
||||
|
||||
## Coordination
|
||||
- Work with **godot-specialist** for overall Godot architecture
|
||||
- Work with **godot-gdscript-specialist** for GDScript/native boundary decisions
|
||||
|
||||
@@ -254,6 +254,16 @@ for the full list.
|
||||
|
||||
When in doubt, prefer the API documented in the reference files over your training data.
|
||||
|
||||
## Tooling — ripgrep File Filtering
|
||||
|
||||
**CRITICAL**: There is no `gdscript` type in ripgrep. `*.gd` files are registered
|
||||
under the `gap` type (GAP programming language). Using `--type gdscript` or passing
|
||||
`type: "gdscript"` to the Grep tool produces a hard error — the search never executes.
|
||||
|
||||
**Always use `glob: "*.gd"`** when filtering GDScript files:
|
||||
- Grep tool: `glob: "*.gd"` ✓ | `type: "gdscript"` ✗
|
||||
- Shell/CI: `rg --glob "*.gd"` ✓ | `rg --type gdscript` ✗
|
||||
|
||||
## Coordination
|
||||
- Work with **godot-specialist** for overall Godot architecture
|
||||
- Work with **gameplay-programmer** for gameplay system implementation
|
||||
|
||||
@@ -246,6 +246,16 @@ stencil buffer (4.5), shader texture types changed from `Texture2D` to
|
||||
|
||||
When in doubt, prefer the API documented in the reference files over your training data.
|
||||
|
||||
## Tooling — ripgrep File Filtering
|
||||
|
||||
**CRITICAL**: There is no `gdscript` type in ripgrep. `*.gd` files are registered
|
||||
under the `gap` type (GAP programming language). Using `--type gdscript` or passing
|
||||
`type: "gdscript"` to the Grep tool produces a hard error — the search never executes.
|
||||
|
||||
**Always use `glob: "*.gd"`** when filtering GDScript files:
|
||||
- Grep tool: `glob: "*.gd"` ✓ | `type: "gdscript"` ✗
|
||||
- Shell/CI: `rg --glob "*.gd"` ✓ | `rg --type gdscript` ✗
|
||||
|
||||
## Coordination
|
||||
- Work with **godot-specialist** for overall Godot architecture
|
||||
- Work with **art-director** for visual direction and material standards
|
||||
|
||||
@@ -173,6 +173,16 @@ introduced after May 2025, use WebSearch to verify it exists in the current vers
|
||||
|
||||
When in doubt, prefer the API documented in the reference files over your training data.
|
||||
|
||||
## Tooling — ripgrep File Filtering
|
||||
|
||||
**CRITICAL**: There is no `gdscript` type in ripgrep. `*.gd` files are registered
|
||||
under the `gap` type (GAP programming language). Using `--type gdscript` or passing
|
||||
`type: "gdscript"` to the Grep tool produces a hard error — the search never executes.
|
||||
|
||||
**Always use `glob: "*.gd"`** when filtering GDScript files:
|
||||
- Grep tool: `glob: "*.gd"` ✓ | `type: "gdscript"` ✗
|
||||
- Shell/CI: `rg --glob "*.gd"` ✓ | `rg --type gdscript` ✗
|
||||
|
||||
## When Consulted
|
||||
Always involve this agent when:
|
||||
- Adding new autoloads or singletons
|
||||
|
||||
@@ -62,8 +62,8 @@ if [ -f "$STATE_FILE" ]; then
|
||||
echo "A previous session left state at: $STATE_FILE"
|
||||
echo "Read this file to recover context and continue where you left off."
|
||||
echo ""
|
||||
echo "Quick summary:"
|
||||
head -20 "$STATE_FILE" 2>/dev/null
|
||||
echo "Quick summary (last 20 lines):"
|
||||
tail -20 "$STATE_FILE" 2>/dev/null
|
||||
TOTAL_LINES=$(wc -l < "$STATE_FILE" 2>/dev/null)
|
||||
if [ "$TOTAL_LINES" -gt 20 ]; then
|
||||
echo " ... ($TOTAL_LINES total lines — read the full file to continue)"
|
||||
|
||||
@@ -93,6 +93,12 @@ This supplements (not replaces) the agent's built-in knowledge.
|
||||
- Live preview in Quick Open dialog when "Live Preview" enabled
|
||||
- New "Select Mode" (v key) prevents accidental transforms; old mode renamed "Transform Mode" (q key)
|
||||
|
||||
## Tooling
|
||||
|
||||
- **ripgrep has no `gdscript` type**: `*.gd` is registered under `gap` (GAP programming language).
|
||||
`rg --type gdscript` is a hard error — the search never executes.
|
||||
Always use `rg --glob "*.gd"` (shell) or `glob: "*.gd"` (Grep tool) to filter GDScript files.
|
||||
|
||||
## Platform (4.5+)
|
||||
|
||||
- **visionOS export**: First new platform since open-sourcing (windowed app mode)
|
||||
|
||||
Reference in New Issue
Block a user