ワンクリックで
lint
Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint command from claude/build.md.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint 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 | lint |
| description | Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint command from claude/build.md. |
Run linter and formatter, fix auto-fixable issues.
Read claude/build.md for the lint and format commands.
# Example: npx biome check . 2>&1 | tail -30
# Example: black --check . 2>&1 | tail -20
# Example: npx eslint . --max-warnings 0 2>&1 | tail -40
# Example: ruff check . 2>&1 | tail -30
# Example: npx biome check --write . 2>&1 | tail -20
# Example: black . && ruff check --fix . 2>&1 | tail -20
For issues that can't be auto-fixed:
# Run the same check commands again — must exit 0
Lint: PASS — 0 errors, 0 warnings
Format: PASS
or
Lint: FAIL — 3 errors, 5 warnings
- error: ... (fixed)
- warning: ... (fixed)
Remaining: 0 (all resolved)