Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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