一键导入
lint
Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint command from brain/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 brain/build.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Auto-configure AGENTS.md and brain/ 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.
Use before any new feature, component, or behavioral change — when you need to explore requirements and design before writing code. Hard gate — no code until design is approved.
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 brain/build.md.
Activate safety mode — review every destructive command before running. Use before working on production infrastructure, migration scripts, or any task where a typo could be catastrophic.
Generate a user-facing changelog from git commits — categorize, filter noise, translate to user language. Pass a tag or date as argument (e.g. "$changelog v1.0.0" or "$changelog 2026-01-01").
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to brain/tasks/todo.md so the next session can resume cleanly.
| name | lint |
| description | Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint command from brain/build.md. |
Run linter and formatter, fix auto-fixable issues.
Read brain/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)