mcpbeat

Running Tests

aiskillstore/running-tests

> Runs tests and handles failures.

This is a copy. The original lives at comeonoliver/running-tests.

5k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
404
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/aiskillstore/marketplace --skill running-tests

What comes with it

18 957 bytes besides the instruction
skill-report.json

The instruction itself

4 sections, as written by the author

Test Command Detection

  • Check CLAUDE.md for project-specific test command
  • Auto-detect if not specified:

| File | Command |

|------|---------|

| package.json | npm test |

| Cargo.toml | cargo test |

| justfile | just test |

| Makefile | make test |

| pyproject.toml | pytest |

| go.mod | go test ./... |

  • Ask user if not found

Test Execution

Run the detected command and report:

  • Pass/Fail status
  • Failed test names (if any)
  • Error messages (if any)

Failure Handling

  • Analyze failure cause
  • Determine root cause:

| Cause | Action |

|-------|--------|

| Implementation bug | Fix and commit |

| Test bug | Fix test and commit |

| Environment issue | Report to manager |

  • Re-run tests after fix
  • Confirm all tests pass

Completion Report

  • Test result (pass/fail)
  • Test count
  • Fixes applied (if any)
  • Additional commits (if any)

How to use it

Copy the folder

Take aiskillstore/running-tests from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.