{"id":48734213,"url":"https://github.com/comfy-org/comfy-qa","last_synced_at":"2026-04-29T01:09:12.611Z","repository":{"id":349926906,"uuid":"1201856100","full_name":"Comfy-Org/Comfy-QA","owner":"Comfy-Org","description":"Draft","archived":false,"fork":false,"pushed_at":"2026-04-12T01:57:30.000Z","size":383,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-12T03:25:06.496Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Comfy-Org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-05T09:00:01.000Z","updated_at":"2026-04-12T01:56:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Comfy-Org/Comfy-QA","commit_stats":null,"previous_names":["comfy-org/comfy-qa"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Comfy-Org/Comfy-QA","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Comfy-Org%2FComfy-QA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Comfy-Org%2FComfy-QA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Comfy-Org%2FComfy-QA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Comfy-Org%2FComfy-QA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Comfy-Org","download_url":"https://codeload.github.com/Comfy-Org/Comfy-QA/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Comfy-Org%2FComfy-QA/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31797376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-12T03:11:51.463Z","updated_at":"2026-04-29T01:09:12.599Z","avatar_url":"https://github.com/Comfy-Org.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# comfy-qa\n\nE2E QA automation for user-facing frontend repos. AI-driven Playwright tests with video recording, HUD overlay, and structured reports.\n\n## One-shot setup\n\nTell your AI agent (Claude Code, Cursor, etc.):\n\n```\nrun npx comfy-qa setup\n```\n\nThe agent reads the emitted prompt and automatically:\n\n- Detects your framework, package manager, backend, and auth\n- Installs Playwright\n- Creates `playwright.qa.config.ts` with video/trace/screenshot enabled\n- Creates `.claude/skills/comfy-qa/SKILL.md` tailored to your repo\n- Creates `.claude/skills/comfy-qa/REPRODUCE.md` for issue reproduction\n- Creates starter `tests/e2e/qa.spec.ts` covering your key routes\n- Updates `.gitignore`\n\nRe-running `npx comfy-qa setup` updates existing files without overwriting what's already correct.\n\n## QA a PR or issue\n\n```bash\n# Paste a GitHub URL — auto-detects PR vs issue\ncomfy-qa https://github.com/org/repo/pull/123\ncomfy-qa https://github.com/org/repo/issues/456\n\n# Or use subcommands\ncomfy-qa pr https://github.com/org/repo/pull/123\ncomfy-qa issue org/repo#456\n\n# Batch QA recent open issues\ncomfy-qa full org/repo --limit 5\n```\n\nEach run produces in `.comfy-qa/\u003cslug\u003e/`:\n\n| File | Content |\n|------|---------|\n| `report.md` | Full QA report — bug analysis, checklist, test scenarios |\n| `qa-sheet.md` | Printable QA checklist for manual testing |\n| `\u003ctype\u003e-\u003cN\u003e.e2e.ts` | Generated Playwright E2E test |\n| `qa-\u003cN\u003e.webm` | Recorded session video with HUD overlay |\n| `screenshots/` | Step-by-step screenshots |\n| `research.json` | Raw research data |\n| `agent-log.txt` | Agent action log |\n\n## Options\n\n```\n--no-record         Disable video recording (ON by default)\n--add-comment       Post report as GitHub comment\n--comfy-url \u003curl\u003e   Point to a running dev server (default: auto-detect)\n--limit N           Number of issues for batch mode (default: 5)\n```\n\n## How it works\n\n1. **Research** — Fetches PR/issue from GitHub, Claude analyzes bug/feature and generates QA checklist + test scenarios\n2. **Record** — Playwright opens the app with a HUD overlay showing what the agent is doing. If the dev server is running, an AI agent drives the browser through each test scenario\n3. **Report** — Generates structured markdown report, QA sheet, E2E test file, and video\n\n### Backend strategy\n\nNo mocks. QA runs against real servers:\n\n- If the QA target is **unrelated to the backend** — use the repo's default staging server\n- If the QA target **is related to the backend** — clone the backend to `tmp/`, build, run locally, point the frontend to `localhost`\n\n## Install\n\n```bash\nbun install\n```\n\n## Roadmap\n\nShort-term, in priority order:\n\n1. **Improve reproduction precision.** Current pipeline misses bugs that depend\n   on specific workflows or custom nodes (see\n   [PR #9430](https://github.com/Comfy-Org/ComfyUI_frontend/pull/9430) — 8/11\n   reproduced). Environment setup tools (workflow loader, custom-node\n   installer, attachment downloader) close this gap.\n\n2. **Measure reliability (flakiness).** Run the same checklist N times, track\n   pass→fail→pass transitions per operation. A QA run is only trustworthy if\n   its result is stable across repeats. Surface flaky operations on the\n   dashboard.\n\n3. **Auto-file GitHub issues for failing operations** — gated behind a\n   confidence threshold. `scripts/report-failures.sh` exists but is intentionally\n   not wired up yet: while reproduction rate is still ~70%, auto-filing would\n   drown maintainers in false positives. Enable once (1) and (2) lift the\n   floor, and keep a manual review step before filing the first batch per repo.\n\n4. **Cross-product QA matrix.** Today: registry, docs, website, download-data,\n   embedded-editor. Add cloud.comfy.org (WebGL, already working via\n   `--headless=new`), comfy-vibe, and first-party ComfyUI_frontend runs.\n\n5. **Continuous QA.** Schedule daily runs, track score trends per product,\n   alert on regressions (score drop ≥ 10%).\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomfy-org%2Fcomfy-qa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomfy-org%2Fcomfy-qa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomfy-org%2Fcomfy-qa/lists"}