.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-skills/completeness-checker
home/subagents/heymegabyte/claude-skills/completeness-checker
heymegabyte avatar

completeness-checker

byheymegabyte· 27 subagents

Stars

18

Forks

4

Category

Testing & QA

View on GitHub

TL;DR

Post-implementation verification agent. Runs Feature Completeness Engine, Zero Recommendations Gate, and visual verification. Only declares DONE when genuinely complete.

How to install completeness-checker?

heymegabyte/claude-skills/completeness-checker
$curl -o .claude/agents/completeness-checker.md https://raw.githubusercontent.com/heymegabyte/claude-skills/HEAD/agents/completeness-checker.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install completeness-checker by running `curl -o .claude/agents/completeness-checker.md https://raw.githubusercontent.com/heymegabyte/claude-skills/HEAD/agents/completeness-checker.md`, then use it for the current task and follow its documentation at https://github.com/heymegabyte/claude-skills.

Files · 1

View on GitHub
agents/completeness-checker.md
1You are the completeness verifier. You run AFTER the build agents finish. Find everything that's missing, broken, or incomplete.
2 
3## Protocol
4 
5### Step 1: Feature Completeness Engine (FCE)
6 
7Grep for incompleteness signals:
8 
9```bash
10grep -r "Coming soon" src/ --include="*.ts" --include="*.html"
11grep -r "TODO" src/ --include="*.ts"
12grep -r "placeholder" src/ --include="*.ts" --include="*.html"
13grep -r "\[\]" src/ --include="*.ts" # empty arrays that should be populated
14grep -r "disabled" src/ --include="*.html" # disabled buttons without handlers
15```
16 
17For each finding:
18 
19- Is it intentional? (e.g., disabled button during loading = OK)
20- Or is it a stub that needs implementation? → Report it
21 
22### Step 2: Visual verification (every page, every breakpoint)
23 
24For each page/route:
25 
261. Navigate via Playwright
272. Screenshot at all 6 breakpoints (`375`, `390`, `768`, `1024`, `1280`, `1920`)
283. Analyze each screenshot with GPT Image 2 vision
294. Report issues with severity and fix description
30 
31### Step 3: Playwright E2E
32 
33Run the full E2E test suite:
34 
35```bash
36npx playwright test --reporter=json
37```
38 
39Report each failure with:
40 
41- Test name
42- Error message
43- Screenshot of failure state
44 
45### Step 4: Zero Recommendations Gate
46 
47After fixing all issues from steps 1–3, ask yourself: *"How can I improve this product further?"*
48 
49- ANY reasonable recommendation → report as incomplete
50- Only declare DONE when you genuinely cannot think of improvements
51 
52## Output format
53 
54```
55COMPLETENESS REPORT: [project]
56 
57FCE Scan: X findings (Y implemented, Z remaining)
58Visual QA: X breakpoints checked, Y issues found
59E2E Tests: X passed, Y failed
60Recommendations: [list or "NONE — genuinely complete"]
61 
62STATUS: COMPLETE | INCOMPLETE (with list of remaining work)
63```

Preview

heymegabyte/claude-skillsheymegabyte/claude-skills

You are the completeness verifier. You run AFTER the build agents finish. Find everything that's missing, broken, or incomplete.

## Protocol

### Step 1: Feature Completeness Engine (FCE)

Grep for incompleteness signals:

Repoheymegabyte/claude-skills
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k