Help us improve
Share bugs, ideas, or general feedback.
From wipnote
Code hygiene, quality gates, and pre-commit workflows. Use for linting, type checking, testing, and fixing errors. Works for Go, JavaScript/TypeScript, Python, Rust, and any other language.
npx claudepluginhub shakestzd/wipnote --plugin wipnoteHow this skill is triggered — by the user, by Claude, or both
Slash command
/wipnote:code-quality-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for code hygiene, quality gates, and pre-commit workflows.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Guides systematic root-cause debugging when tests fail, builds break, or unexpected errors occur. Provides a structured triage checklist to preserve evidence, localize, and fix issues instead of guessing.
Share bugs, ideas, or general feedback.
Use this skill for code hygiene, quality gates, and pre-commit workflows.
Trigger keywords: code quality, lint, type checking, pre-commit, build, fix errors, quality gate
Quality gate runs should be attributed. Before fixing errors:
wipnote statuswipnote bug create "Fix: description" --track <trk-id> then wipnote bug start <id>wipnote help for available commandsEvery project enforces the same three-phase pattern. Only commit when all three pass.
Check for a project manifest in the repository root:
| File | Language/Runtime |
|---|---|
go.mod | Go |
package.json | JavaScript / TypeScript (Node) |
pyproject.toml or requirements.txt | Python |
Cargo.toml | Rust |
pom.xml or build.gradle | Java / JVM |
Multiple manifests may coexist (e.g., a Go backend with a package.json frontend) — run quality gates for each.
go.mod)go build ./... # BUILD — type checking + compilation
go vet ./... # LINT — static analysis
go test ./... # TEST — run test suite
package.json)npm run build # BUILD — or tsc --noEmit for type-check only
npm run lint # LINT — eslint, biome, or equivalent
npm test # TEST — jest, vitest, mocha, etc.
pyproject.toml / requirements.txt)uv run python -m py_compile **/*.py # BUILD — syntax check
uv run ruff check . # LINT — or flake8, pylint
uv run pytest # TEST
Cargo.toml)cargo build # BUILD
cargo clippy # LINT
cargo test # TEST
pom.xml)mvn compile # BUILD
mvn checkstyle:check # LINT
mvn test # TEST
Before implementing anything new:
go.mod, package.json, pyproject.toml, etc.) for already-available dependenciesinternal/, lib/, src/utils/) before duplicating logicCRITICAL: Fix ALL errors with every commit, regardless of when introduced.
Deployment scripts and CI pipelines block on failing quality gates. This is intentional — maintain quality gates regardless of time pressure.
Typical blockers:
Narrow the type, remove the ambiguity:
// Go: tighten interface{} to concrete type
func GetUser(id string) *User { ... }
// TypeScript: add explicit type annotation
function getUser(id: string): User { ... }
Remove unused imports, fix shadowed variables, resolve flagged patterns. Most linters print the file and line — fix each location directly.
# Go: gofmt fixes formatting automatically
gofmt -w .
# JS/TS: many linters have --fix
eslint --fix .
# Python: ruff can auto-fix
uv run ruff check --fix .
Track quality improvements in active work items (features, bugs) using wipnote feature edit <id> or wipnote bug edit <id>.
Remember: Fixing errors immediately is faster than letting them accumulate.