원클릭으로
quality
Quality checks — what to run and when
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Quality checks — what to run and when
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automated quality check loops with escalation and fix sub-agents
JSON-based end-to-end test format, runner, and mock provider
Jujutsu (jj) skill for the ikigai project
How to write effective Ralph goals for Ikigai-driven workflows
Create and manage Ralph goals from Ikigai using the real ralph-pipeline scripts
Create repositories using the real ralph-pipeline repo-create script
| name | quality |
| description | Quality checks — what to run and when |
Six checks run project-wide, in order, once when work is complete. This is the default meaning of "all checks pass."
check-compile → check-link → check-filesize → check-unit → check-integration → check-complexity
If any fail, fix and re-run only the failing check.
The core 6 plus 5 deep checks. Run only when the goal or user specifically asks.
check-sanitize · check-tsan · check-valgrind · check-helgrind · check-coverage
After changing a file, run the relevant check with --file=PATH:
check-compile --file=PATH after every editcheck-unit --file=PATH when a test file existsStay in this single-file loop. Do not run project-wide checks during active development.
make BUILD={debug|release|sanitize|tsan|coverage}
CRITICAL: Never run multiple make commands simultaneously — incompatible compiler flags corrupt the build.