focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:human-gate — Get real human review on an artifact and prove it happened. Builds a single-file review page, collects batched feedback as structured data, and runs a gate that refuses to close while a BLOCKER is open, the reviewer is unnamed, or nobody has looked at all.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-human-gateContext preview
What this command does when you run it.
/cs:human-gate — Get real human review on an artifact and prove it happened. Builds a single-file review page, collects batched feedback as structured data, and runs a gate that refuses to close while a BLOCKER is open, the reviewer is unnamed, or nobody has looked at all.
name: "cs-human-gate" description: "/cs:human-gate — Get real human review on an artifact and prove it happened. Builds a single-file review page, collects batched feedback as structured data, and runs a gate that refuses to close while a BLOCKER is open, the reviewer is unnamed, or nobody has looked at all. Non-blocking: hands over the path and ends the turn." argument-hint: "[path to the .md or .html artifact] [optional: open|status|collect|close]"
**Command:** `/cs:human-gate <artifact> [step]`
Machine checks answer *"do the tests pass?"*. This answers the other one: **has a person actually looked at this, and are their objections resolved?**
Refuse to proceed and say which is missing:
1. **Artifact exists** and is `.md` or `.html`. 2. **A named reviewer** is identified — a person, not "the team". The gate enforces this (G3). 3. **Round budget agreed** — default 5. An uncapped review loop is a way to avoid deciding. 4. **Stakes established** — reversible or not? One-way doors need an explicit APPROVE, not merely an absence of blockers.
S=engineering/human-gate/skills/human-gate/scripts
python3 $S/human_gate.py open "$ARTIFACT" --launch
Builds a single-file review page (zero network requests, opens over `file://`) and records round N. Prints the sidecar path.
**Then end the turn.** Do not poll. On a headless host `open` detects it, skips the browser, and tells you to hand over the path — the reviewer can write the sidecar by hand in any editor.
python3 $S/human_gate.py status "$ARTIFACT"
| Exit | Meaning | |---|---| | 0 | collected and clear — `close` would pass | | 2 | collected, but `close` would refuse — prints which rules, same code `close` uses | | 3 | feedback waiting — collect it | | 4 | nothing on disk yet — end the turn again |
Branch on the code alone: 0 clear · 2 blocked · 3 collect me · 4 nothing yet.
python3 $S/human_gate.py collect "$ARTIFACT" --output json
Emits `batch.v1`: every item with severity, block anchor, quote, and the blocking total. Quotes are verified against the real file — a mismatch is reported, not swallowed.
**Apply every item.** `EDIT` items carry `after` across **verbatim** — that is the reviewer's own wording, not a suggestion to paraphrase. If the artifact is generated from a source, apply the edit there too or it disappears on the next build.
python3 $S/human_gate.py close "$ARTIFACT"
| Rule | Refuses when | |---|---| | G1 | no round collected — nobody has looked | | G2 | a BLOCKER or MAJOR is still open | | G3 | no named reviewer | | G4 | the sidecar changed after the last collect | | G5 | round cap exhausted → escalate | | G6 | waiver used without a recorded reason — **G1 can never be waived** | | G7 | the round carries unresolved integrity problems (mistyped severity, EDIT with no replacement, quote not in the file) |
**Exit 2 means you are not done.** Report what is open, not a summary that implies success.
Legitimate override, recorded:
python3 $S/human_gate.py close "$ARTIFACT" --waive "reviewer on leave; CTO accepted risk in writing"
Report back exactly this shape:
GATE: <PASSED | REFUSED | ESCALATE> Reviewer: <name> Rounds: <n> of <max> Open: <BLOCKER/MAJOR items, by block id> Applied: <what you changed, and in which source files> Next: <the one action, or "none — done">
python3 engineering/human-gate/skills/human-gate/scripts/human_gate.py --sample
Runs the whole loop in a temp dir — including the refusals — in about a second.
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…