在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用test
星标2
分支0
更新时间2026年3月7日 03:42
Run the test suite
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run the test suite
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fix bugs found in a code review
First-time project setup after cloning
Create comprehensive feature plan with deep codebase analysis and research
Run full validation suite (build, lint, type check, tests)
Technical code review for quality and bugs on recently changed files
Create an atomic commit with conventional commit format
| name | test |
| description | Run the test suite |
| disable-model-invocation | true |
dotnet test tests/
# Unit tests only
dotnet test --filter /[Category=Unit]
# Integration tests only
dotnet test --filter /[Category=Integration]
# Specific test name
dotnet test tests/ --filter "FullyQualifiedName~YourTestName"
cd src/MooBank.Web.App && npm test