business-ops
Business operations: strategy, technology, growth, competitive intelligence, support, finance, HR, legal, operations, sales, productivity, product management.
Defense-in-depth verification before declaring any task complete.
$ npx -y skills add notque/vexjoy-agent --skill verification-before-completion --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/verification-before-completionContext preview
The summary Claude sees to decide when to auto-load this skill.
Defense-in-depth verification before declaring any task complete.
name: verification-before-completion
description: "Defense-in-depth verification before declaring any task complete."
user-invocable: false
success-criteria:
- "Required and relevant tests pass"
- "Required build succeeds; new warnings reviewed"
- "Changed files validated against task requirements"
- "No unfinished implementations in requested work"
- "Artifacts exist at expected paths (4-level verification)"
allowed-tools:
- Read
- Bash
- Grep
- Glob
routing:
triggers:
- "verify completion"
- "run tests"
- "check build"
- "defense in depth"
- "final verification"
category: process
pairs_with:
- systematic-code-reviewVerify the requested result using observed commands and actual artifacts. Match checks to the affected behavior and repository requirements.
1. Inspect `git status --short` and `git diff` to include modified, staged, and untracked files. Read the changed code; check imports, error handling, compatibility, and unintended edits. 2. Run the repository's required tests, build, lint, and format checks. Start with relevant tests; run the full affected suite when required or when shared behavior changed. Do not substitute syntax checks for behavior tests. 3. Check generated artifacts at their expected paths. For integrations, verify all four levels: **EXISTS** on disk, **SUBSTANTIVE** implementation, **WIRED** into callers, and real **DATA FLOWS** through it. Trace inputs and results; an unused file or hardcoded empty result is not a working feature. 4. Inspect the diff for accidental debug code, secrets, placeholders, and unfinished work. Review matches in context: an intentional `pass` or empty result is not automatically a stub. Resolve missing implementations and wiring before claiming completion. 5. Fix failures within the authorized task and rerun affected checks. A failed required build or test blocks a success claim. Do not repeat unchanged passing checks without a reason. 6. Report commands, observed status, relevant counts, and remaining limitations. Retain full logs; include actionable failure excerpts and log paths instead of every passing test name. Distinguish automated checks, manual checks, and checks not run.
Use project commands first. Defaults when no project command exists:
| Language | Tests | Build or syntax | Lint | |---|---|---|---| | Python | `pytest -v` | `python -m py_compile {files}` | `ruff check {files}` | | Go | `go test ./... -v -race` | `go build ./...` | `golangci-lint run ./...` | | JavaScript | `npm test` | `npm run build` | `npm run lint` | | TypeScript | `npm test` | `npx tsc --noEmit` | `npm run lint` | | Rust | `cargo test` | `cargo build` | `cargo clippy` |
Reuse a passing result when it covers the current task and checked files, dependencies, configuration, and relevant environment. Keep its command, scope, revision or file state, result, and log path when available. A phase change or new worker alone does not require a rerun.
After edits, rerun affected checks. Rerun when evidence is missing, the checked state cannot be established, shared dependencies or environment changed, or failures leave uncertainty. Refresh mutable external state such as CI and deployment status before acting on it. Required CI and release checks still apply to the commit or artifact being delivered; an earlier local pass does not replace them.
For inherited results, cite their source and check their applicability. Do not claim you ran them. Review roster and review reuse belong to `skills/process/pr-workflow/references/pr-risk-policy.md`; this skill owns check evidence and completion claims.
Load only when the signal applies; files are under `references/`.
| Signal | Reference | Purpose | |---|---|---| | Stub detection or integration evidence | `adversarial-methodology.md` | Four-level checks and goal-backward verification | | Domain checklist or database/schema change | `checklist.md` | Before/after schema, duplicate tables/columns, existing-query compatibility | | Verification walkthrough needed | `verification-examples.md` | Bug fix, refactor, migration, config examples | | Pressure to skip consequential checks | `anti-rationalization-enforcement.md` | Failure patterns and pressure checks |
For code-review artifacts, use `python3 scripts/validate-review-output.py --type {systematic|parallel|sapcc-review|sapcc-audit} <file.md>`. Exit codes: 0 valid, 1 schema errors, 2 unparseable, 3 missing `jsonschema` (`pip install jsonschema`). Systematic and parallel review validate on return and retry once before stopping. A valid schema verifies structure, not the truth of review findings.
Essays and writing behind this toolkit live at vexjoy.com. VexJoy Agent connects plain-English requests to specialist agents, skills, and workflows. /do selects the knowledge and tools needed for your task.
Repo: notque/vexjoy-agent
Business operations: strategy, technology, growth, competitive intelligence, support, finance, HR, legal, operations, sales, productivity, product management.
Design workflows — UX copy, design systems, design critique, accessibility review, design handoff, user research synthesis. Use when writing UI copy, reviewing…
Marketing: SEO audits, campaign planning, content strategy, email sequences, competitive analysis, brand review, performance reporting.