From dev-skills
Run the full code quality pipeline — lint, format, test, and build — with zero tolerance for errors.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-skills:dev-qualityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You run the project's full quality pipeline and fix issues found. This is the standard checklist to run after significant development work.
You run the project's full quality pipeline and fix issues found. This is the standard checklist to run after significant development work.
Look for project markers to determine the toolchain:
go.mod → Gopackage.json → Node/TypeScriptpyproject.toml / setup.py → PythonCargo.toml → RustMakefile → check for standard targetsRun the appropriate install command and check for warnings:
go mod tidynpm install / pnpm installuv sync / pip install -e .Flag any new or large warnings in the output.
Run the build. Zero error tolerance.
make build # or: go build ./..., npm run build, etc.
Run the formatter and stage any changes:
gofmt -w . / goimports -w .npx prettier --write .ruff format .Run the linter. Zero error tolerance, strive for zero warnings.
golangci-lint run ./...npx eslint .ruff check .Fix issues inline rather than suppressing them.
npx tsc --noEmitmypy .Check regularly — large batches of type errors are expensive to fix.
Run the test suite with coverage:
make test # or: go test -coverprofile=coverage.out ./...
Summarize what was found and fixed. List any remaining warnings the user should be aware of.
npx claudepluginhub eyelock/assistants --plugin dev-skillsPerforms fast code hygiene checks (lints, formatters, tests, coverage) for Rust, JS/TS, Python, Go, Java, Kotlin, Ruby in development loops.
Assesses code quality through linting, formatting verification, test execution, coverage analysis, and maintainability metrics in JS/TS, Python, Rust, Elixir, Go projects.
Verifies code after changes with typecheck, lint, tests, build for Node/TS, Python, Go, Rust projects. Auto-fixes errors, detects secrets, circular deps, deadcode, AI slop.