Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Run the test suite for the current repo, auto-detecting Python (pytest/uv), Node (vitest/pnpm), or Rust (cargo test)
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 13% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -45% | 0% |
Detects the stack and runs tests with the right command.
bashif [ -f "uv.lock" ]; then STACK="python" elif [ -f "pnpm-lock.yaml" ] || [ -f "package.json" ]; then STACK="node" elif [ -f "Cargo.toml" ]; then STACK="rust" else STACK="unknown" fi
bash# All tests uv run pytest --tb=short -q $ARGUMENTS # With coverage uv run pytest --cov=src --cov-report=term-missing -q # Specific file or folder uv run pytest $ARGUMENTS -v
bash# All tests pnpm vitest run $ARGUMENTS # With coverage pnpm vitest run --coverage # Watch mode (dev) pnpm vitest
bashnpm test -- --passWithNoTests $ARGUMENTS
bashcargo test --quiet $ARGUMENTS 2>&1
Tests: my-api (Python/pytest)
───────────────────────────────
uv run pytest --tb=short -q
[pytest output]
✅ 42 passed in 3.1s → Ready to pushOn failure:
❌ 2 failed
FAILED tests/test_billing.py::TestInvoice::test_promo_expired
AssertionError: expected discount=0, got discount=10
→ Fix before pushing./ci:tests
/ci:tests tests/test_orders.py
/ci:tests src/components/Button.test.tsxTarget: $ARGUMENTS
Other measured skills in the registry, with their headline benchmark lift.