agentsclimarketplace

Dev run tests

Skill ainova-systems/intelligence-dev-packs/packs/core/skills/dev-run-tests

Run typecheck, lint, and tests with the right scope; analyze failuresFrom its SKILL.md

Install
npx -y skills add ainova-systems/intelligence-dev-packs --skill dev-run-tests

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `git status --porcelain` and 1 more.

SKILL.md

2.0 KB, 441 tokens by cl100k_base, as published. Nobody here has run it

Run the Gates

Cheapest-first verification with scope detection. Invoke per task slice, at phase boundaries, and before push.

Steps

  1. Resolve commands: profile verify set - run exactly that single gate-runner command and report what it ran and skipped; the remaining steps are its internals and this skill adds only the failure analysis. Else profile typecheck / lint / test; else detect (package.json scripts, *.sln - dotnet test, pyproject.toml - pytest, go.mod - go test ./..., Makefile targets). Confirm detected commands in one line on the first run.
  2. Detect scope: git status --porcelain + git diff --name-only - map changed files to their test areas. Docs/markdown-only change - report "no tests to run" and stop. An explicit argument overrides.
  3. Typecheck first - it fails fastest. On error: report the file and the first error, STOP.
  4. Lint second. On error: report the finding, STOP.
  5. Tests: scoped by default; full suite when shared code changed, at phase boundaries, and before push. Enforce the profile coverage_gate when set.
  6. On failure: failing test name, the assertion, trimmed relevant output; classify the cause (production change / the test itself / environment); propose the fix. Re-run after fixes with the same scope discipline.
  7. Report per area: pass/fail counts, duration, coverage vs the gate.

Verify

  • All gates green for the declared scope, or a precise failure analysis delivered - never "mostly passing".

Scope / hand-off

  • Fixing production code - the executing skill/subagent; CI-level failures - git-finalize-pr.

CRITICAL

  • Never modify tests, configs, or thresholds to make a failing gate pass.
  • A flaky test (passes on rerun) is reported as flaky with evidence; never silently retried into green.
  • Missing env/dependency - report the precondition; never stub the environment to force a pass.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.