ci-tests

Installation
SKILL.md

/ci:tests: Run tests

Detects the stack and runs tests with the right command.

Stack detection

if [ -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

Commands by stack

Installs
3
GitHub Stars
5.8K
First Seen
10 days ago
ci-tests — florianbruniaux/claude-code-ultimate-guide