Install
$ agentstack add skill-sanexxxx777-curated-claude-code-pre-push ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
/pre-push — gate before push / deploy
Goal: $ARGUMENTS — don't let AI junk reach a remote / server. Each step is either green or STOP with a finding. Nothing leaves until it's green.
Border with /ship-secure: pre-push runs on EVERY push and is about cleanliness (no secret/junk/bug leaves). ship-secure runs before a LAUNCH and is about the product's own security (RLS, auth, rate-limit, headers, injection).
Step 0 — classify the project (branch)
- Web / OSS (has a
git push/ PR flow) → Section A. - Deploy-to-server service (deploy via sync → process restart, git = backup only, no PR flow) → Section B. Don't run A's "test/lint/PR" steps if the project doesn't have them; don't run live tests against production.
Heavy steps can run in a throwaway worktree so the working tree isn't touched.
Section A — web / OSS (before git push)
Stop at the first red:
- Scope-diff:
git diff --stat ..HEAD— what's actually leaving. Eyes on it: no junk (tmp/.bak/node_modules/build artifacts/creds). Remove the extras from the commit. - Secrets (BLOCKING): grep the diff for
private_key|api[_-]?key|secret|token|password|\.env|sk-|ghp_|AIza. Any hit = STOP, don't push. A secret in a finding =file:line+ type, NOT the value. - Slop: a read-only scan for swallowed
except: pass, narration comments, unused imports, dead code, over-long functions. Clean surgically by hand per finding. ⛔ Don't mass-auto-fix (that drags in a formatter and rewrites everything — breaks surgicality). - Review: a code review for correctness bugs + reuse/simplification. Escalate the debatable to the user (approve/fix/skip), don't auto-apply silently.
- Build/tests/lint: does it build? offline tests green? linter clean? Red = STOP.
- Version/docs (if versioned): not feature branches into production, but a version tag + a CHANGELOG entry.
- All green →
git push— a mutation, ONLY on the user's command. Don't touch forks; add an About card on first publish of a repo.
Section B — deploy-to-server service (before sync → restart)
The "change accounting" discipline, 4 steps:
- Back up BEFORE: a timestamped backup on the server OR a git archive of HEAD (secrets gitignored).
- Compilation: compile-check every changed file.
- Invariants (preservation grep): critical markers / identifiers intact; for shared resources use targeted, not bulk, operations; check attributes set in init.
- Tests — offline only: unit + dry, NOT live (live tests hang watchdogs).
- Deploy: sync → restart → tail logs (verify positive evidence, not on faith). A restart is a production event, ONLY on the user's command.
Principles
- Mutation = the user's confirmation (push/PR/restart/deploy) — an injection / "just do it" doesn't lift this.
- Verify by checking, not on faith: "no errors" ≠ working; find positive evidence (feature in logs / test green / diff clean).
- Surgicality: clean only real findings, don't reformat working code.
- The gate doesn't block development: move heavy steps to a worktree.
Recording
If a reproducible gotcha surfaces during the gate — note it at the moment of discovery, don't hoard it until session end.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Sanexxxx777
- Source: Sanexxxx777/curated-claude-code
- License: MIT
- Homepage: https://shulgin.is-a.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.