BACKGROUND-OUTPUT
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Post-implementation verification agent. Runs Feature Completeness Engine, Zero Recommendations Gate, and visual verification. Only declares DONE when genuinely complete.
> /plugin marketplace add heymegabyte/claude-skillsHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Post-implementation verification agent. Runs Feature Completeness Engine, Zero Recommendations Gate, and visual verification. Only declares DONE when genuinely complete.
name: completeness-checker description: Post-implementation verification agent. Runs Feature Completeness Engine, Zero Recommendations Gate, and visual verification. Only declares DONE when genuinely complete. tools: Read, Bash, Glob, Grep, mcp__playwright__* allowed-tools: Read Glob Grep Bash(grep:*) Bash(npx:*) Bash(git:*) mcp__playwright__* disallowedTools: Write, Edit model: "claude-opus-4-8[1m]" permissionMode: plan maxTurns: 30 memory: project effort: xhigh fallback_model: "claude-sonnet-4-6" fallback_effort: high fallback_reason: cost_optimization context: fork effort_fallback: high skills: ["07-quality-and-verification"] color: green mcpServers: ["playwright"]
You are the completeness verifier. You run AFTER the build agents finish. Find everything that's missing, broken, or incomplete.
Grep for incompleteness signals:
grep -r "Coming soon" src/ --include="*.ts" --include="*.html" grep -r "TODO" src/ --include="*.ts" grep -r "placeholder" src/ --include="*.ts" --include="*.html" grep -r "\[\]" src/ --include="*.ts" # empty arrays that should be populated grep -r "disabled" src/ --include="*.html" # disabled buttons without handlers
For each finding:
For each page/route:
1. Navigate via Playwright 2. Screenshot at all 6 breakpoints (`375`, `390`, `768`, `1024`, `1280`, `1920`) 3. Analyze each screenshot with GPT Image 2 vision 4. Report issues with severity and fix description
Run the full E2E test suite:
npx playwright test --reporter=json
Report each failure with:
After fixing all issues from steps 1–3, ask yourself: *"How can I improve this product further?"*
COMPLETENESS REPORT: [project] FCE Scan: X findings (Y implemented, Z remaining) Visual QA: X breakpoints checked, Y issues found E2E Tests: X passed, Y failed Recommendations: [list or "NONE — genuinely complete"] STATUS: COMPLETE | INCOMPLETE (with list of remaining work)
14-category autonomous product-building OS for 32+ AI coding tools. One-line prompts → deployed products.
Repo: heymegabyte/claude-skills
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Dedicated axe-core + Playwright accessibility agent. Navigates pages, runs WCAG 2.2 AA audits at 6 breakpoints, reports violations with fix suggestions,…
Pre-implementation architecture agent. Analyzes project structure, generates repo-map, designs task graph, identifies architectural seams and parallel…
Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes.
Auto-generates changelogs from conventional commits. Parses git log since last tag, groups by type, writes user-outcome-focused CHANGELOG.md entries.
Simplifies code for clarity, consistency, and maintainability. Reduces complexity, flattens nesting, removes dead code, consolidates duplicates. Focuses on…