スキル一覧に戻る
aspiers

test-running

by aspiers

Config for various AI coding agents (Claude, Gemini, opencode etc.)

8🍴 1📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: test-running description: Run tests according to repository guidelines. Use after linting passes, before staging changes.

Test Running

Run all appropriate tests according to repository guidelines.

When to Use This Skill

Use this skill:

  • After linting passes
  • Before staging changes for commit
  • After implementing a feature or bug fix
  • When verifying existing functionality still works

Test Discovery

Run tests according to repository guidelines. Look for test commands in:

  1. Repository documentation (README.md, AGENTS.md, CLAUDE.md, etc.)
  2. Package configuration (package.json, Makefile, pyproject.toml, Cargo.toml, etc.)
  3. Standard test patterns for the project type

If no test guidelines are found or they are unclear, ask the user for clarification.

Common Test Commands

# JavaScript/TypeScript
npm test
yarn test
pnpm test

# Python
pytest
python -m pytest
make test

# Other
./bin/test-*
*test*

Testing Process

CRITICAL REQUIREMENT: 100% test success is MANDATORY.

For each test command found:

  1. Run it
  2. If ANY test failures occur, they MUST be fixed
  3. If issues can't be fixed immediately, stop and ask the user what to do next
  4. Only consider the task complete when ALL tests pass with 100% success rate OR the user explicitly gives permission to ignore certain failures

Important Notes

  • "Issues" includes not only test failures, but also noise in test output such as warnings which could mask true failures
  • Don't proceed until all tests pass or user explicitly allows deferral
  • Document any failures clearly with file, test name, and error message

Output

Report results organized by:

  1. Passing tests: Summary of what passed
  2. Failing tests: Each failure with file, test name, and error
  3. Recommendations: What needs to be fixed

If all tests pass, simply confirm: "All tests passed."

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です