Claude-skill-registry agent-friendly-commands
Use these when you want low-noise lint/test output (good for LLM/CI logs) while staying aligned with repo policy.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agent-friendly-commands" ~/.claude/skills/majiayu000-claude-skill-registry-agent-friendly-commands && rm -rf "$T"
manifest:
skills/data/agent-friendly-commands/SKILL.mdsource content
Goal
Run the same checks as CI with less ANSI noise and more compact reporters.
Commands
- Lint (no ANSI):
npm run lint:agent - Unit/integration tests (Rust + UI):
npm run test:agent - Rust-only tests (nextest, CI profile):
npm run test:rust:agent - UI unit tests (Vitest, dot reporter):
npm run test:ui:agent - Smoke suite (builds first):
npm run test:smoke:agent - Smoke suite (no rebuild):
npm run test:smoke:quick:agent
When to use what
- Tight loop on a Rust failure: start with
, then widen tonpm run test:rust:agent
.npm run test:agent - Tight loop on a UI unit test:
.npm run test:ui:agent -- -t "<substring>" - Tight loop on smoke:
(only if you already built recently).npm run test:smoke:quick:agent -- -t "<substring>"
Notes
- These scripts are implemented inline in
usingpackage.json
to setbash -lc
, disable forced color, and use dot reporters for Vitest.NO_COLOR=1 - Repo policy still applies: after code changes, the completion bar is
,npm run lint
,npm test
.npm run smoke