← スキル一覧に戻る

test-runner
by gonsoomoon-ml
⭐ 0🍴 1📅 2025年12月25日
SKILL.md
name: test-runner description: Runs tests and explains results. Use when user asks to run tests, check tests, or verify code works.
Test Runner Skill
Instructions
When user asks to run tests:
- Find test files using Glob tool
- Run tests using Bash tool
- Analyze results and explain failures
- Suggest fixes if tests fail
Steps to Follow
Step 1: Discover Tests
Use Glob to find: **/*test*.py, **/*.test.js, **/*.spec.ts
Step 2: Run Tests
# Python
pytest -v
# JavaScript
npm test
# Go
go test ./...
Step 3: Analyze Output
- Count passed/failed
- Identify failure reasons
- Show relevant code snippets
Step 4: Report Format
## Test Results
✅ Passed: X
❌ Failed: Y
### Failures
[List each failure with explanation]
### Suggested Fixes
[Actionable fixes for failures]
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です