원클릭으로
code-complete
Run all automated code quality and verification tasks. Use when done making any rust file changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run all automated code quality and verification tasks. Use when done making any rust file changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
How to test and iterate on the ratatui TUI (`artifacts tui <character>`) by remote-controlling a zellij pane — launch it, drive keypresses, and capture screen dumps to see the actual rendered layout without a human at the keyboard. Use whenever changing code under src/tui or verifying a TUI behavior/layout claim.
Fetch the open-api specification for a specific action, endpoint, or request to the artifacts API. Use when investigating or implementing any artifacts API related interactions, rather than guessing at artifacts api.
Learn how to run a live request against the artifacts API using a test character and token/secret. Use when wanting to test something end to end, against the actual game servers.
How to write and review tests in this repo. Enforces a "few, broad, entrypoint-driven" testing standard over many narrow per-function unit tests. Use this whenever writing new tests, reviewing existing ones, deciding whether a change needs test coverage, or consolidating/pruning `#[test]` blocks. Triggers on requests like "add a test for this", "write tests for X", "is this well tested", "clean up these tests", or when a code change touches Fennel workflows, the driver/MockDriver, core game logic, or the TUI.
| name | code-complete |
| description | Run all automated code quality and verification tasks. Use when done making any rust file changes. |
cargo fmtcargo clippy. If warnings exist, stop this skill and address all warnings. Then retry the skill from the beginning.cargo test. If any tests are failing, fix them or the code regressing the test, depending on the context. Retry the skill from the beginning.