원클릭으로
test
Run the test suite and report results. Use after making changes to verify nothing is broken. Reads the test command from claude/build.md.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run the test suite and report results. Use after making changes to verify nothing is broken. Reads the test command from claude/build.md.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Route a codebase question to the right tool — structural graph, semantic search, or risk analysis. Use when you need to find or understand code without knowing exact file names.
Auto-configure CLAUDE.md and claude/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.
Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from claude/build.md.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to claude/tasks/todo.md so the next session can resume cleanly.
Remove all git worktrees for merged branches. Accepts --dry-run to preview. Use after merging PRs or for weekly maintenance.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.
| name | test |
| description | Run the test suite and report results. Use after making changes to verify nothing is broken. Reads the test command from claude/build.md. |
Run tests and report results with actionable failure analysis.
Read claude/build.md for the test command and any special flags.
# Use the command from claude/build.md
# Example: npm test 2>&1 | tail -50
For targeted tests (faster feedback):
# Example: npm test -- --testPathPattern=<filename> 2>&1 | tail -30
A. Read the exact assertion failure:
Expected: <value>
Received: <value>
B. Find the source of the failure:
C. Fix or flag:
Keep running until all tests pass (or all failures are documented as pre-existing).
Tests: PASS — 142 passed, 0 failed, 0 skipped
or
Tests: FAIL — 140 passed, 2 failed, 0 skipped
Newly introduced failures:
- test/auth.test.ts:45 — [failure reason + fix applied]
Pre-existing failures (not caused by current change):
- test/legacy.test.ts:12 — [noted, not fixed]