在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用test
星标5
分支0
更新时间2026年7月11日 19:57
Run unit tests for the project
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run unit tests for the project
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | test |
| description | Run unit tests for the project |
| disable-model-invocation | true |
| argument-hint | [package path, e.g. ./internal/sensors/...] |
| allowed-tools | Bash(go test *), Bash(make test*) |
Run unit tests.
$ARGUMENTS is provided, run tests for that specific package:
go test -v $ARGUMENTS
make test
If tests fail, analyze the output and report which tests failed and why.
Review changed and surrounding code for error handling violations and fix them. Use when checking or fixing error conventions in the project: no dynamic errors, sentinel errors only.
Run golangci-lint on the project
Review code for Go testing conventions and write or fix tests. Use when writing new tests or reviewing existing ones in this project: table-driven tests, gomock mocks, parallel subtests.