一键导入
runner
Run shell commands in background and return success/fail with error summary. Use for npm, npx, and other CLI commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run shell commands in background and return success/fail with error summary. Use for npm, npx, and other CLI commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Feature implementation workflow. Use when developer wants to implement a feature or fix - creates branch, plans, implements, and validates.
Git commands for branching, committing, merging, rebasing, and squashing. Use when developer needs to create branches, commit changes, merge or rebase branches, or squash commits.
GitHub commands (issues, PRs, ship). Use when developer needs to create issues, create/update PRs, address review comments, or ship experimental changes.
Project management commands (init, skill-up, diagram)
Autonomous test writing agent. Use when developer wants tests written for changed files. Analyzes git diff, identifies components needing tests, writes unit tests following project conventions with Vitest.
DeepSource commands (review issues). Use when developer needs to review and fix static analysis issues.
| name | runner |
| description | Run shell commands in background and return success/fail with error summary. Use for npm, npx, and other CLI commands. |
| allowed-tools | Bash |
| model | haiku |
Run a single command and return a concise result.
Execute commands in the background and return:
The main thread provides:
command: The full command to run (e.g., npm start, npx vitest run, npx tsc --noEmit, npx rspeedy build)PASS: <command>
FAIL: <command>
Errors:
<extracted error summary - max 20 lines of relevant errors>
Extract only the meaningful error information:
| Command Type | What to Extract |
|---|---|
biome check / lint | Biome error messages with file paths and rule violations |
tsc / type-check | TypeScript errors with file paths and error codes |
vitest / test | Failed test names and assertion errors |
rspeedy build | Build errors and compilation failures |
Do NOT include:
Limit output to 20 lines maximum. If more errors exist, add: ... and X more errors