This skill should be used when the user wants to set up linting, configure auto-checking after edits, create a deploy checklist, set up pre-push checks, configure a CI pipeline, add quality gates, set up a hook for typechecking, enable post-edit validation, or auto-validate code changes. Triggered by phrases like "set up linting", "auto check after edits", "deploy checklist", "pre-push checks", "CI pipeline", "quality gates", "hook for typecheck", "post-edit validation", "auto-validate".
From dev-intelligencenpx claudepluginhub hedera-dev/hedera-skills --plugin dev-intelligenceThis skill uses the workspace's default tool permissions.
references/ci-pipeline.mdreferences/deploy-checklist.mdreferences/hook-patterns.mdSearches, 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.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Automatic quality validation at every stage of development — from individual file edits to full deployments. Quality gates catch errors early when they're cheapest to fix.
The most powerful quality gate: automatic validation every time a file is edited or created.
Edit or Write to modify a fileThe plugin includes a ready-to-use hook in hooks/hooks.json that runs scripts/post-edit-check.sh. When installed as a plugin, this works automatically.
For manual setup in a project, add to .claude/settings.json:
{
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "bash .claude/scripts/post-edit-check.sh"
}
]
}
]
}
}
Important: The command must be exactly bash .claude/scripts/post-edit-check.sh — do not add arguments. The script reads $CLAUDE_TOOL_INPUT from the environment automatically.
See references/hook-patterns.md for stack-specific hook examples.
Before deploying any application, run through these 5 verification stages:
| Stage | What | Gate |
|---|---|---|
| 1. Code Quality | Lint + Typecheck + Tests | All pass |
| 2. Build | Full build succeeds | Artifacts exist |
| 3. Environment | Required env vars present | All set (never read values) |
| 4. Container | Image builds and starts | No errors |
| 5. Post-Deploy | Health endpoint, logs | 200 OK, clean logs |
See references/deploy-checklist.md for complete verification commands per stack.
Run the full quality suite locally before pushing to remote:
Lint → Build → Test → Security Scan
Key rules:
.claude/reports/ci/See references/ci-pipeline.md for the full pipeline template.
The quality gates system auto-detects your project stack to run the right validators.
| Check | Detected Stack | Primary Validator |
|---|---|---|
tsconfig.json exists | TypeScript | npx tsc --noEmit |
package.json exists (no tsconfig) | JavaScript | npx eslint |
pyproject.toml or setup.py exists | Python | ruff check |
Cargo.toml exists | Rust | cargo check |
go.mod exists | Go | go vet ./... |
When editing individual files, detect by extension:
| Extension | Validator |
|---|---|
.ts, .tsx | TypeScript checker |
.js, .jsx | ESLint (if configured) |
.py | ruff or py_compile |
.rs | cargo check |
.go | go vet |
| Other | Silent pass |
references/hook-patterns.md — PostToolUse hook examples for every stackreferences/deploy-checklist.md — 5-stage pre-deploy verificationreferences/ci-pipeline.md — Local CI pipeline pattern