ワンクリックで
mojo-test-runner
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
Generate visual hierarchy diagrams of agent system showing levels and delegation. Use for documentation or onboarding.
| name | mojo-test-runner |
| description | Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage. |
| mcp_fallback | none |
| category | mojo |
Execute Mojo tests with filtering and reporting.
# Run all tests
mojo test tests/
# Run specific file
mojo test tests/test_tensor.mojo
# Run with verbose output
mojo test -v tests/
# Run tests matching pattern
./scripts/run_tests.sh tensor
mojo test or scripttest_test_*.mojo or *_test.mojoraises keyword for exception testing| Error | Cause | Solution |
|---|---|---|
Import error | Module not found | Verify -I include paths |
Syntax error | Invalid test code | Fix syntax before testing |
Timeout | Test too slow | Optimize or increase timeout |
Memory error | Ownership issue | Check ownership and borrowing |
.claude/shared/mojo-anti-patterns.md - Common test mistakes/notes/review/ - Testing strategy documentation