testing-workflow
✓Verified·Scanned 2/19/2026
Meta-skill that orchestrates comprehensive testing across a project by coordinating testing-patterns, e2e-testing, and testing agents. Use when setting up testing for a new project, improving coverage for an existing project, establishing a testing strategy, or verifying quality before a release.
from clawhub.ai·v1·12.2 KB·0 installs
Scanned from 0.1.0 at d1a7b59 · Transparency log ↗
$ vett add clawhub.ai/wpank/testing-workflow
Testing Workflow
Meta-skill that orchestrates comprehensive testing across a project by coordinating testing-patterns, e2e-testing, and testing agents. Routes to the right skill at each stage and ensures nothing is missed.
What's Inside
- Five-phase orchestration flow:
- Discovery and baseline (scan infrastructure, measure coverage, map gaps)
- Strategy selection (project type, test patterns, critical journeys)
- Implementation (unit → integration → E2E → edge cases)
- Validation (run suite, measure coverage, check quality, verify CI)
- Maintenance (coverage ratcheting, flaky test policy, test review standards, health audits)
- Skill routing table (which skill to use for which need)
- Coverage targets by project type (startup MVP through critical infrastructure)
- Testing strategy template for documentation
- Quality gates for testing completion
When to Use
- Setting up testing for a new project from scratch
- Improving coverage for an existing project with gaps
- Establishing or revising a testing strategy
- Before a major release to verify quality gates are met
- After a large refactor to confirm nothing broke
- During code review when test adequacy is in question
- Onboarding a team to a testing workflow
Installation
npx add https://github.com/wpank/ai/tree/main/skills/testing/testing-workflow
Manual Installation
Cursor (per-project)
From your project root:
mkdir -p .cursor/skills
cp -r ~/.ai-skills/skills/testing/testing-workflow .cursor/skills/testing-workflow
Cursor (global)
mkdir -p ~/.cursor/skills
cp -r ~/.ai-skills/skills/testing/testing-workflow ~/.cursor/skills/testing-workflow
Claude Code (per-project)
From your project root:
mkdir -p .claude/skills
cp -r ~/.ai-skills/skills/testing/testing-workflow .claude/skills/testing-workflow
Claude Code (global)
mkdir -p ~/.claude/skills
cp -r ~/.ai-skills/skills/testing/testing-workflow ~/.claude/skills/testing-workflow
Related Skills
- testing-patterns — Unit and integration test patterns (routed to in Phase 3)
- e2e-testing-patterns — E2E test patterns (routed to in Phase 3)
- clean-code — Code quality standards
- code-review — Review checklist
- quality-gates — CI/CD quality checkpoints
- debugging — Debugging test failures
Part of the Testing skill category.