{"id":50688440,"url":"https://github.com/jc1122/test-quality-assurance","last_synced_at":"2026-06-09T01:03:40.122Z","repository":{"id":363426695,"uuid":"1171104440","full_name":"jc1122/test-quality-assurance","owner":"jc1122","description":"Audit test suites against TDD and behavior-first best practices. Produces severity-ordered findings and a prioritized improvement plan.","archived":false,"fork":false,"pushed_at":"2026-06-08T22:23:20.000Z","size":362,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-08T22:24:37.514Z","etag":null,"topics":["best-practices","claude-code","code-quality","leaf-skill","skill","tdd","testing"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/jc1122.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-02T21:58:40.000Z","updated_at":"2026-06-08T22:23:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jc1122/test-quality-assurance","commit_stats":null,"previous_names":["jc1122/test-quality-assurance"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/jc1122/test-quality-assurance","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jc1122%2Ftest-quality-assurance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jc1122%2Ftest-quality-assurance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jc1122%2Ftest-quality-assurance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jc1122%2Ftest-quality-assurance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jc1122","download_url":"https://codeload.github.com/jc1122/test-quality-assurance/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jc1122%2Ftest-quality-assurance/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34086665,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["best-practices","claude-code","code-quality","leaf-skill","skill","tdd","testing"],"created_at":"2026-06-09T01:03:39.555Z","updated_at":"2026-06-09T01:03:40.118Z","avatar_url":"https://github.com/jc1122.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# test-quality-assurance\n\nTest suite quality assessment with 8-dimension TDD rubric scoring and delta tracking.\n\nDelta reports compare two audit runs to show score trends, evidence-tier\nupgrades, and finding changes. See `SKILL.md` Step 5a for the full delta\nworkflow: baseline selection, compatibility checks, path normalization, and\ninterpretation rules.\n\n## Install\n\nThe installer refuses to overwrite an existing installation unless `--force` is\nsupplied (fail-closed). Use `--dry-run` to preview without mutating state.\n\nFrom a pinned GitHub release:\n\n```bash\nnpx github:jc1122/test-quality-assurance#v0.1.14 --dest ~/.agents/skills --force\n```\n\nFrom a local checkout:\n\n```bash\nnode bin/install-test-quality-assurance.js --dest ~/.agents/skills --force\n```\n\n## Usage\n\n**Important**: `audit_test_quality.py` is a **static heuristic inventory** — it\ndoes not execute tests, run mutation analysis, or produce a final grade. Its\noutput is evidence for expert review. Final scoring requires the full\n`SKILL.md` workflow: runtime baseline, contract map, process/gate inventory,\nevidence-tiered rubric scoring, and expert confirmation.\n\n### Installed-Skill Invocation\n\nFrom any target repository, once this skill is installed:\n\n```bash\n# Resolve the script relative to the loaded SKILL.md directory.\n# Common default (assumes install dest ~/.agents/skills):\npython3 $HOME/.agents/skills/test-quality-assurance/scripts/audit_test_quality.py \\\n  --root /path/to/target/repo \\\n  --json-out /tmp/test_quality.json \\\n  --md-out /tmp/test_quality.md\n\n# Robust fallback when SKILL_DIR or CODEX_HOME is set, otherwise use ~/.agents:\nSKILL_DIR=\"${SKILL_DIR:-${CODEX_HOME:+$CODEX_HOME/skills/test-quality-assurance}}\"\nSKILL_DIR=\"${SKILL_DIR:-$HOME/.agents/skills/test-quality-assurance}\"\npython3 \"$SKILL_DIR/scripts/audit_test_quality.py\" --root /path/to/target/repo ...\n```\n\nNote: `--root` must point at the target repository under audit, never at the\nskill installation directory itself.\n\n### Local-Checkout Invocation\n\nFrom within a local checkout of this skill:\n\n```bash\npython3 scripts/audit_test_quality.py --root /path/to/repo --json-out report.json --md-out report.md\n```\n\nFor the full workflow, see `SKILL.md`.\n\n## Local Checks\n\n```bash\nnpm run check              # run fixture + reproducibility + release checks\nnpm run check:fixtures     # fixture-only checks\nnpm run check:repro        # reproducibility checks\nnpm run check:release      # release-metadata checks\nnpm run check:release:clean\nnpm run pack:dry-run       # verify npm package contents\n```\n\n## Release Flow\n\n1. Run `npm run check` and `npm run pack:dry-run`.\n2. Commit, push `main`.\n3. Ensure clean tree before tagging:\n\n   ```bash\n   npm run check:release:clean\n   ```\n\n4. Tag and push:\n\n   ```bash\n   git tag vX.Y.Z \u0026\u0026 git push origin vX.Y.Z\n   ```\n\n5. Wait for tag CI to pass:\n\n   ```bash\n   gh run watch $(gh run list -b vX.Y.Z --limit 1 --json databaseId --jq '.[0].databaseId')\n   ```\n\n6. Create GitHub release from the tag.\n7. Reinstall pinned version:\n\n   ```bash\n   npx github:jc1122/test-quality-assurance#vX.Y.Z --dest ~/.agents/skills --force\n   ```\n\n8. Verify installed payload parity:\n\n   ```bash\n   python3 scripts/check_release.py --installed-skill-dir ~/.agents/skills/test-quality-assurance\n   ```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjc1122%2Ftest-quality-assurance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjc1122%2Ftest-quality-assurance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjc1122%2Ftest-quality-assurance/lists"}