一键导入
test
Run the test suite and report results. Use after making changes to verify nothing is broken. Reads the test command from context/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 context/build.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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 context/build.md.
Auto-configure .github/copilot-instructions.md and context/ 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.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to context/tasks/todo.md so the next session can resume cleanly.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.
Load all relevant context/ knowledge files for a domain area. Use at session start or when switching to a new topic. Accepts a domain keyword like api, database, auth, build, security.
Query the database — list schemas, tables, describe a table, or run SQL. Accepts arguments like schemas, tables, describe <table>, or raw SQL.
| name | test |
| description | Run the test suite and report results. Use after making changes to verify nothing is broken. Reads the test command from context/build.md. |
Run tests and report results with actionable failure analysis.
Read context/build.md for the test command and any special flags.
# Use the command from context/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]