notque/vexjoy-agent/skills/process/verification-before-completion/SKILL.md
verification-before-completion
Defense-in-depth verification before declaring any task complete.
- Source repository stars
- 415
- Declared platforms
- 0
- Static risk flags
- 2
- Last source update
- 2026-08-25
- Source checked
- 2026-08-25
Decision brief
What it does: where it fits
Defense-in-depth verification before declaring any task complete.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/notque/vexjoy-agent --skill "skills/process/verification-before-completion"Inspect the Agent Skill "verification-before-completion" from https://github.com/notque/vexjoy-agent/blob/8fb395c784c32cd00f680ef9750d940da092b03e/skills/process/verification-before-completion/SKILL.md at commit 8fb395c784c32cd00f680ef9750d940da092b03e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Instructions
Verification means execution, not reasoning. Run the command. Do not reason about whether the command would pass. Do not summarize the expected output. Execute the check, paste the exit code, paste the relevant output. A verification phase that produces a verdict without an obse…
Verification means execution, not reasoning. Run the command. Do not reason about whether the command would pass. Do not summarize the expected output. Execute the check, paste the exit code, paste the relevant output.…Before verification, understand the scope of changes: - 02
Step 1: Identify What Changed
Before verification, understand the scope of changes:
Before verification, understand the scope of changes: - 03
Step 2: Run Domain-Specific Tests
Run the appropriate test suite and show complete output (not summaries):
Show COMPLETE test output (not "X tests passed")Display all test names that ranShow any warnings or deprecation notices - 04
Step 3: Verify Build/Compilation
Run the build command from the table above and show the full output. Confirm: - Build completes without errors - No new warnings introduced - Output artifacts are created (if applicable)
Build completes without errorsNo new warnings introducedOutput artifacts are created (if applicable) - 05
Step 4: Validate Changed Files
For each changed file, use the Read tool to inspect the actual file contents. Validate assumptions: Re-read the file to confirm the actual contents — re-read the file to confirm. Verify that what you think happened actually happened.
Syntax is correct (no unterminated strings, mismatched brackets)Logic makes sense (no inverted conditions, off-by-one errors)Formatting is consistent with surrounding code
Permission review
Static risk signals and limitations
Runs scripts
The documentation asks the agent to run terminal commands or scripts.
*Verification means execution, not reasoning.** Run the command. Do not reason about whether the command would pass. Do not summarize the expected output. Execute the check, paste the exit code, paste the relevant output. A verification phaRuns scripts
The documentation asks the agent to run terminal commands or scripts.
git diff --name-onlyReads files
The documentation asks the agent to read local files, directories, or repositories.
Read the file with the Read tool to validate the actual contentsReads files
The documentation asks the agent to read local files, directories, or repositories.
For each changed file, use the Read tool to inspect the actual file contents. **Validate assumptions**: Re-read the file to confirm the actual contents — re-read the file to confirm. Verify that what you think happened actually happened.Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 415 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- notque/vexjoy-agent
- Skill path
- skills/process/verification-before-completion/SKILL.md
- Commit
- 8fb395c784c32cd00f680ef9750d940da092b03e
- License
- MIT
- Collected
- 2026-08-25
- Default branch
- main
View the original SKILL.md
Verification Before Completion Skill
Overview
Enforce rigorous, adversarial verification before declaring any task complete. Implements defense-in-depth validation with multiple independent checks to catch errors before they reach users. The core principle: verify independently rather than trusting executor claims — verify what ACTUALLY exists in the codebase through testing, inspection, and data-flow tracing.
This skill prevents the most common form of premature completion: claiming success without running tests, summarizing results instead of showing evidence, or trusting code that "looks right" without verification.
Reference Loading Table
| Signal | Load These Files | Why |
|---|---|---|
| verifying artifacts are real and substantive, not stubs | adversarial-methodology.md | Loads detailed guidance from adversarial-methodology.md. |
| checklist-driven work | checklist.md | Loads detailed guidance from checklist.md. |
| diff touches migration files or schema definitions | checklist.md (Database Change Checklist → Schema Verification Gate) | Before/after schema state checks (SQLite, Django, Rails, raw SQL), duplicate-table/column check, existing-query compatibility check |
| good-vs-bad verification walkthroughs: bug fix, refactor, migration, config change | verification-examples.md | Loads detailed guidance from verification-examples.md. |
| maximum rigor, anti-rationalization enforcement, pressure resistance, gate checking patterns | anti-rationalization-enforcement.md | Domain-specific rationalization detection, 5-signal checklist, pressure resistance framework (from demoted with-anti-rationalization). |
Instructions
Verification means execution, not reasoning. Run the command. Do not reason about whether the command would pass. Do not summarize the expected output. Execute the check, paste the exit code, paste the relevant output. A verification phase that produces a verdict without an observed tool result is not a verification — it is a guess with a rigor aesthetic.
Step 1: Identify What Changed
Before verification, understand the scope of changes:
# For git repositories
git diff --name-only
Why: Use git status --short (not just git diff) to capture both modified AND untracked (new) files. New files created during the session are easy to miss in status summaries. Over-engineering prevention requires limiting scope to what was actually changed — limit verification to what was actually changed. Focus only on the specific changes made.
For each changed file:
- Read the file with the Read tool to validate the actual contents
- Summarize what changed
- Identify affected systems/modules and dependencies
Report separately:
- New files: [files with
??orAstatus in git] - Modified files: [files with
Mstatus]
Step 2: Run Domain-Specific Tests
Run the appropriate test suite and show complete output (not summaries):
| Language | Test Command | Build Command | Lint Command |
|---|---|---|---|
| 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 |
Why full test suite, not just changed files: ALWAYS run relevant tests before saying "done". The same agent that writes code has inherent bias toward believing its own output is correct. Running the full suite catches regressions and unintended side effects that focused testing misses.
Output Requirements:
- Show COMPLETE test output (not "X tests passed")
- Display all test names that ran
- Show any warnings or deprecation notices
- Include execution time
Critical constraint: Show test output when reporting test results. Summary claims document what was SAID, not what IS. Evidence-based reporting is required.
Step 3: Verify Build/Compilation
Run the build command from the table above and show the full output. Confirm:
- Build completes without errors
- No new warnings introduced
- Output artifacts are created (if applicable)
# Example: Go project
go build ./...
# Example: Python - check syntax of changed files
python -m py_compile path/to/changed_file.py
# Example: JavaScript/TypeScript
npm run build
Critical gate: If the build fails, stop immediately. Fix build issues before proceeding to any other verification step. A failed build is a blocker that supersedes all other checks. Re-run from Step 1 after fixing. This prevents declaring "done" when the code doesn't compile.
Step 4: Validate Changed Files
For each changed file, use the Read tool to inspect the actual file contents. Validate assumptions: Re-read the file to confirm the actual contents — re-read the file to confirm. Verify that what you think happened actually happened.
For each file verify:
- Syntax is correct (no unterminated strings, mismatched brackets)
- Logic makes sense (no inverted conditions, off-by-one errors)
- Formatting is consistent with surrounding code
- Imports/dependencies are present and correct
- No leftover artifacts (commented-out code, placeholder values, TODO markers)
This step counteracts confirmation bias where executors believe their own edits are correct without evidence.
Step 5: Check for Unintended Changes
# Check git diff for unexpected changes
git diff
# Look for debug code that should be removed
grep -r "console.log\|print(\|fmt.Println\|debugger\|pdb.set_trace" {changed_files}
# Check for TODO/FIXME comments that should be resolved
grep -r "TODO\|FIXME\|HACK\|XXX" {changed_files}
# Verify no sensitive data
grep -r "password\|secret\|api_key\|token" {changed_files}
Why this matters: If git diff shows changes to files you didn't intend to modify, investigate before proceeding. Unintended changes are a red flag for accidental side effects. Detecting this early prevents silent regressions that reach users.
Constraint: No stub patterns (TODO, FIXME, pass, not implemented) should remain in new code created by the task.
Step 6: Review Verification Checklist
Core Verification (Required):
- Tests pass (actual output shown)
- Build succeeds (actual output shown)
- Changed files reviewed (Read tool used)
- No unintended changes (diff checked)
- No debug/console statements left
- No sensitive data exposed
Extended Verification (Recommended):
- Documentation updated if needed
- No new warnings introduced
- Error handling adequate
- Backwards compatibility maintained
See
references/checklist.mdfor domain-specific checklists (Python, Go, JavaScript, Database, Infrastructure).
Step 7: Final Verification Statement
ONLY AFTER all checks pass, provide verification statement:
Verification Complete
**Tests Run:**
{paste actual test output}
**Build Status:**
{paste actual build output}
**Files Verified:**
- {file1}: Reviewed, syntax valid, logic correct
- {file2}: Reviewed, syntax valid, logic correct
**Checklist Status:** X/X core checks passed
Test if this addresses the issue.
Critical constraints on communication:
- Show test output when reporting test results. Show complete verification output, not summaries.
- Report verification results concisely without self-congratulation. Show command output rather than describing it.
- Verify that what you think happened actually happened. Use Read tool on changed files, not memory.
Replace with:
- "Should be fixed now"
- "This is working"
- "All done"
- "Tests pass" (without showing output)
ALWAYS say:
- "Test if this addresses the issue"
- "Please verify the changes work for your use case"
4-Level Adversarial Artifact Verification
See
references/adversarial-methodology.mdfor the complete methodology: goal-backward framing, all four verification levels (EXISTS, SUBSTANTIVE, WIRED, DATA FLOWS), stub detection patterns with automated scan command, completion shortcut scan, verification report format, and the "when to apply each level" table.
Steps 1-7 above verify that tests pass, builds succeed, and files contain what you expect. The adversarial methodology goes deeper: it verifies that artifacts are real implementations (not stubs), actually integrated (not orphaned), and processing real data (not hardcoded empties). Apply this methodology after Steps 1-7 pass, focusing on artifacts that are part of the stated goal.
Summary of levels:
- L1 EXISTS: File is present on disk (catches forgotten writes)
- L2 SUBSTANTIVE: File contains real logic, not stubs (catches placeholder implementations)
- L3 WIRED: Artifact is imported and used by other code (catches orphaned files)
- L4 DATA FLOWS: Real data reaches the artifact and real results come out (catches dead integration)
Error Handling
Error: "Tests failed after changes"
- Resolve stubs before declaring task complete
- Show full test failure output
- Analyze what went wrong
- Fix issues and re-run full verification
Error: "Build failed"
- Stop immediately
- Show complete build error output
- Fix build issues before proceeding
- Re-run verification from Step 1
Error: "No tests exist for changed code"
- Acknowledge lack of test coverage
- Recommend writing tests (but include only if user requests)
- Perform extra manual validation
- Document that changes are untested
Error: "Cannot run tests (missing dependencies)"
- Document what's missing
- Attempt alternative verification (syntax checks, manual review)
- Be explicit about verification limitations
Error: "Stub patterns detected in changed files"
- Review each match individually — some stubs are intentional (e.g.,
return []when empty list is the correct result) - For confirmed stubs: flag as blocker, resolve stubs before declaring task complete
- For intentional patterns: document in verification report with rationale
- If unsure: treat as stub (false positive is safer than false negative)
Error: "Artifact exists but is not wired (Level 3 failure)"
- Identify what should import/reference the artifact
- Check if the wiring was planned but not executed (common in multi-step tasks)
- Flag as blocker with specific guidance: "File X exists but is not imported by Y"
Error: "Data flow gap detected (Level 4 failure)"
- Trace the call chain to identify where real data stops flowing
- Common cause: function called with hardcoded
[]or{}instead of computed values - Flag as blocker: "Function X is called but receives empty data at call site Y"
References
Core Principles
- Adversarial distrust: Verify independently. The same agent that writes code has inherent bias toward believing its own output is correct. Structural distrust in the verification process counteracts this bias.
- Evidence over claims: Summary claims document what was SAID, not what IS. Always show actual test output, build logs, and file contents. Verification without evidence is unverifiable.
- Goal-backward framing: Derive verification conditions from what must be true for the goal, not from executor task lists. This prevents executors from confirming their own narrative.
- 4-level artifact verification: EXISTS → SUBSTANTIVE → WIRED → DATA FLOWS. Each level catches distinct classes of premature-completion failures.
Key Constraints (Integrated Above)
- Run tests before declaring completion
- Show complete verification output (not summaries or "X tests passed")
- Check all changed files using Read tool (not memory)
- Show actual test output when reporting test results
- Run full test suite for affected domain (not just changed files)
- Flag any stub patterns as blockers — mark complete only after full verification
- Build failures are gates that stop all other verification
- Over-engineering prevention: only verify what was actually changed
Reference Files
references/adversarial-methodology.md— 4-level verification system, stub detection, goal-backward framingreferences/checklist.md— Domain-specific checklists (Python, Go, JS, Database, Infrastructure)references/verification-examples.md— Good vs bad verification examples per language
Schema gate for review artifacts
When the artifact being verified is a code-review output, prefer a deterministic schema check over reading the prose for completeness: python3 scripts/validate-review-output.py --type {systematic|parallel|sapcc-review|sapcc-audit} <file.md> (exit 0 = valid, 1 = schema errors, 2 = unparseable, 3 = jsonschema not installed — pip install jsonschema). The parallel and systematic review skills wire this as a validate-on-return + retry-once-then-stop gate. This is the L1/L2 EXISTS/SUBSTANTIVE check for review documents: it confirms a verdict, severity buckets, and file:line locations are actually present, not just that a file was written.
Frequently asked questions
What to verify before installation and use
What does the verification-before-completion source document cover?
Defense-in-depth verification before declaring any task complete.
How do I install verification-before-completion?
The source record exposes this install command: npx skills add https://github.com/notque/vexjoy-agent --skill "skills/process/verification-before-completion". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged exec-script, read-files in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
obra/superpowers
verification-before-completion
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
terrylica/cc-skills
notion-sdk
Control Notion via Python SDK. TRIGGERS - Notion API, create page, query database, add blocks.
K-Dense-AI/scientific-agent-skills
dask
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
K-Dense-AI/scientific-agent-skills
medchem
Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.