.agents/skills/test-running/SKILL.md
Run tests according to repository guidelines. Use after linting passes, before staging changes.
npx skillsauth add aspiers/ai-config test-runningInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run all appropriate tests according to repository guidelines.
Use this skill:
Run tests according to repository guidelines. Look for test commands in:
README.md, AGENTS.md, CLAUDE.md, etc.)package.json, Makefile, pyproject.toml, Cargo.toml, etc.)If no test guidelines are found or they are unclear, ask the user for clarification.
# JavaScript/TypeScript
npm test
yarn test
pnpm test
# Python
pytest
python -m pytest
make test
# Other
./bin/test-*
*test*
CRITICAL REQUIREMENT: 100% test success is MANDATORY.
For each test command found:
Report results organized by:
If all tests pass, simply confirm: "All tests passed."
development
Orchestrate the complete development workflow for implementing sub-tasks from a task list. Use for end-to-end feature implementation with quality controls.
development
Implement a single sub-task from a task list. Use when working on feature development with existing task lists.
data-ai
Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning.
development
Create subagent definitions for Claude Code and OpenCode that delegate to skills. Use when creating new subagents or refactoring existing ones to follow the delegation pattern.