{"id":50878779,"url":"https://github.com/zavora-ai/skill-test-execution","last_synced_at":"2026-06-15T12:02:31.409Z","repository":{"id":360131832,"uuid":"1248814892","full_name":"zavora-ai/skill-test-execution","owner":"zavora-ai","description":"Test execution skill — unit, integration, E2E tests, coverage, and failure analysis via mcp-test-runner","archived":false,"fork":false,"pushed_at":"2026-05-25T05:08:09.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T07:11:08.398Z","etag":null,"topics":["adk-rust","agent-skills","claude-skills","coverage","enterprise","mcp","quality","testing"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zavora-ai.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-05-25T04:35:28.000Z","updated_at":"2026-05-25T05:08:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zavora-ai/skill-test-execution","commit_stats":null,"previous_names":["zavora-ai/skill-test-execution"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zavora-ai/skill-test-execution","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-test-execution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-test-execution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-test-execution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-test-execution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zavora-ai","download_url":"https://codeload.github.com/zavora-ai/skill-test-execution/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-test-execution/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34361403,"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-15T02:00:07.085Z","response_time":63,"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":["adk-rust","agent-skills","claude-skills","coverage","enterprise","mcp","quality","testing"],"created_at":"2026-06-15T12:02:31.321Z","updated_at":"2026-06-15T12:02:31.400Z","avatar_url":"https://github.com/zavora-ai.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Test Execution Skill\n\n\u003e Test operations for AI agents — run unit/integration/E2E tests, track coverage deltas, debug failures, and gate merges on quality via mcp-test-runner.\n\n[![Skill Standard](https://img.shields.io/badge/standard-agentskills.io-blue)](https://agentskills.io)\n[![MCP Server](https://img.shields.io/badge/mcp--server-mcp--test--runner-green)](https://github.com/zavora-ai/mcp-test-runner)\n[![ADK-Rust Enterprise](https://img.shields.io/badge/ADK--Rust-Enterprise-purple.svg)](https://enterprise.adk-rust.com)\n[![License](https://img.shields.io/badge/license-Apache--2.0-orange)](LICENSE)\n\n## What This Skill Does\n\n| Workflow | Tool Calls | What It Achieves |\n|----------|-----------|------------------|\n| Pre-Merge Validation | 3 | Unit + coverage + integration |\n| Debug Failure | 2 | Identify test + root cause |\n| Targeted Tests | 1 | Run specific file/pattern |\n\n### Without this skill:\n- Tests skipped \"to save time\"\n- Coverage decreases go unnoticed\n- Flaky tests rerun endlessly without investigation\n- No coverage delta reporting (just absolute numbers)\n\n### With this skill:\n- Tests always run before merge approval\n- Coverage delta tracked (regression = blocked)\n- Flaky vs genuine failures distinguished\n- Clear failure reports with stack traces\n\n## Installation\n\n```bash\ngit clone https://github.com/zavora-ai/skill-test-execution.git \\\n  ~/.skills/skills/test-execution\n```\n\n## Requirements\n\n**Required:** `mcp-test-runner` (7 tools)\n\n**Cross-MCP:**\n- `mcp-github` — approve PRs only when tests pass\n- `mcp-cicd` — post-deploy verification\n- `mcp-jira` — create bugs from test failures\n\n## Folder Structure\n\n```\ntest-execution/\n├── SKILL.md                       # Decision tree + test strategy\n├── scripts/\n│   └── coverage_delta.py          # Coverage regression detector\n├── references/\n│   ├── tool-sequences.md          # 7 tools\n│   ├── cross-mcp-workflows.md     # Tests + GitHub + CI/CD + Jira\n│   └── examples.md                # Run, debug, coverage\n├── README.md\n└── LICENSE\n```\n\n## Scripts\n\n### `coverage_delta.py`\n```bash\npython scripts/coverage_delta.py '{\"current\": {\"line\": 82}, \"baseline\": {\"line\": 80}}'\n# → {\"line_delta\": 2.0, \"regression\": false, \"message\": \"✅ Coverage improved by +2.0%\"}\n```\n\n## Success Criteria\n\n| Metric | Target |\n|--------|--------|\n| Pre-merge gate | Tests always run before approval |\n| Coverage tracking | Delta reported, regressions blocked |\n| Flaky detection | Distinguish flaky from genuine failures |\n\n## Contributors\n\n| [\u003cimg src=\"https://github.com/jkmaina.png\" width=\"80px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJames Karanja Maina\u003c/b\u003e\u003c/sub\u003e](https://github.com/jkmaina) |\n|:---:|\n\n## License\n\nApache-2.0 — Part of [ADK-Rust Enterprise](https://enterprise.adk-rust.com). Built with ❤️ by [Zavora AI](https://zavora.ai)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzavora-ai%2Fskill-test-execution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzavora-ai%2Fskill-test-execution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzavora-ai%2Fskill-test-execution/lists"}