/verification
**Navigation**: [<- Summary](summary.md) | [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
$ npx -y skills add athola/claude-night-market --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/verification
Context preview
What this command does when you run it.
**Navigation**: [<- Summary](summary.md) | [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
Command definition
verification.mdStep 6.6: Final Verification & Workflow Gate
> **Navigation**: [<- Summary](summary.md) | [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
**Purpose**: Run final verification and ensure all workflow gates pass before reporting complete.
---
6.6 Final Thread Verification (AUTOMATIC)
This phase runs automatically at the end of /fix-pr.
Skill(sanctum:resolve-threads)
This validates any threads missed during Step 6.3 are resolved via batch operation.
**Step 6 Output**: All threads resolved, issues created, summary posted
---
FINAL WORKFLOW GATE (Run Before Reporting Complete)
**ALL THREE conditions must be true:**
# === GATE 1: Thread Resolution ===
UNRESOLVED=$(gh api graphql -f query="..." --jq '...' )
[[ "$UNRESOLVED" -eq 0 ]] && echo "Gate 1: Threads" || echo "Gate 1 FAILED"
# === GATE 2: Reconciliation Complete ===
# Verify reconciliation table has no UNACCOUNTED items
# This is a manual check - review your reconciliation table above
echo "Gate 2: Verify UNACCOUNTED = 0 in reconciliation table"
# === GATE 3: Issues Created ===
# Count issues created that reference this PR
ISSUES=$(gh issue list --search "PR #$PR_NUM in:body created:>=today" --json number --jq 'length')
echo "Issues created today referencing PR: $ISSUES"
# Compare against Suggestion + Deferred count from triage
**Workflow completion checklist:**
- [ ] Gate 1: 0 unresolved threads
- [ ] Gate 2: Reconciliation table complete, UNACCOUNTED = 0
- [ ] Gate 3: Issues created match Suggestion + Deferred count (or all were fixed)
- [ ] Summary comment posted with all evidence
**DO NOT report "/fix-pr complete" until all gates pass.**
---
> **Back to**: [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
Read more
Step 6.6: Final Verification & Workflow Gate
> **Navigation**: [<- Summary](summary.md) | [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
**Purpose**: Run final verification and ensure all workflow gates pass before reporting complete.
---
6.6 Final Thread Verification (AUTOMATIC)
This phase runs automatically at the end of /fix-pr.
Skill(sanctum:resolve-threads)
This validates any threads missed during Step 6.3 are resolved via batch operation.
**Step 6 Output**: All threads resolved, issues created, summary posted
---
FINAL WORKFLOW GATE (Run Before Reporting Complete)
**ALL THREE conditions must be true:**
# === GATE 1: Thread Resolution === UNRESOLVED=$(gh api graphql -f query="..." --jq '...' ) [[ "$UNRESOLVED" -eq 0 ]] && echo "Gate 1: Threads" || echo "Gate 1 FAILED" # === GATE 2: Reconciliation Complete === # Verify reconciliation table has no UNACCOUNTED items # This is a manual check - review your reconciliation table above echo "Gate 2: Verify UNACCOUNTED = 0 in reconciliation table" # === GATE 3: Issues Created === # Count issues created that reference this PR ISSUES=$(gh issue list --search "PR #$PR_NUM in:body created:>=today" --json number --jq 'length') echo "Issues created today referencing PR: $ISSUES" # Compare against Suggestion + Deferred count from triage
**Workflow completion checklist:**
- [ ] Gate 1: 0 unresolved threads
- [ ] Gate 2: Reconciliation table complete, UNACCOUNTED = 0
- [ ] Gate 3: Issues created match Suggestion + Deferred count (or all were fixed)
- [ ] Summary comment posted with all evidence
**DO NOT report "/fix-pr complete" until all gates pass.**
---
> **Back to**: [Step 6 Hub](../6-complete.md) | [Main Workflow](../../workflow-steps.md)
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Other commands on claude-night-market.
- /aggregate-logs
Generate LEARNINGS.md from skill execution logs.
Open command - /analyze-skill
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Open command - /bulletproof-skill
Harden skills against rationalization and bypass behaviors
Open command - /context-report
Generate context optimization report for skill directories
Open command - /create-command
Create slash commands with brainstorming and best practices
Open command - /create-hook
Create hooks with brainstorming and security-first design
Open command

