원클릭으로
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