원클릭으로
diagnostics
Run the project test suite. Use when user mentions "diagnostics", "run level 1 diagnostics", or asks to run tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run the project test suite. Use when user mentions "diagnostics", "run level 1 diagnostics", or asks to run tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
GDScript coding standards for The Sparkling Farce. Use when writing or reviewing code for style compliance.
Where to place game content vs platform code. Use when creating new files or moving existing code.
Core development philosophy - fix platform code, not mod content. Load when making decisions about what to fix or implement.
Correct patterns for accessing game resources via ModLoader registry. Use when loading characters, items, abilities, or any mod content.
View the newest screenshot(s) from the user's Screenshots folder. Use when user says SNS, SNS2, SNS3, or asks to see a screenshot.
Reference for preferred UNIX tools over LLM processing. Use when processing JSON, text, searching files, or doing batch operations.
| name | diagnostics |
| description | Run the project test suite. Use when user mentions "diagnostics", "run level 1 diagnostics", or asks to run tests. |
When the user requests "diagnostics" or uses Star Trek terminology like "run level 1 diagnostics", they want you to run the test suite.
| Diagnostic Level | Command | Description |
|---|---|---|
| Level 1 (Full) | ./test_headless.sh | Complete test suite (unit + integration) |
| Parser Check | godot --headless --check-only | Syntax/type validation only |
| Unit Tests Only | godot --headless res://tests/test_runner_scene.tscn | Unit tests without integration |
./test_headless.sh
This runs the comprehensive automated test suite including:
Tests should complete within 2-3 minutes. Use a timeout if needed:
timeout 180 ./test_headless.sh
godot is in PATH or set GODOT_BINgodot --headless --import first if resources changedReport: