Conitens validation-gate

Run the minimum validation needed to prove a change, and reject completion when evidence is missing.

install
source · Clone the upstream repo
git clone https://github.com/seunghwaneom/Conitens
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/seunghwaneom/Conitens "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agents/skills/validation-gate" ~/.claude/skills/seunghwaneom-conitens-validation-gate && rm -rf "$T"
manifest: .agents/skills/validation-gate/SKILL.md
source content

validation-gate

Workflow

  1. Map the change to the smallest relevant validation surface.
  2. Run targeted checks first, then broader checks only if risk warrants it.
  3. Record evidence, failures, and remaining gaps.
  4. Reject completion if the change lacks concrete proof.

Constraints

  • No narrative-only "looks good" approvals.
  • Prefer targeted validation over repo-wide scans.
  • Preserve regression-only gates where legacy debt exists.