Agent skill · Testing & QA

test

Comprehensive testing workflow - unit tests ∥ integration tests → E2E tests

parcadeigithub.com/parcadeiGitHub ↗
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill test --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: .claude/skills/test/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /test - Testing Workflow Run comprehensive test suite with parallel execution. ## When to Use - "Run all tests" - "Test the feature" - "Verify everything works" - "Full test suite" - Before releases or merges - After major changes ## Workflow Overview ``` ┌─────────────┐ ┌───────────┐ │ diagnostics │ ──▶ │ arbiter │ ─┐ │ (type check)│ │ (unit) │ │ └─────────────┘ └───────────┘ │ ├──▶ ┌─────────┐ ┌───────────┐ │ │ atlas │ │ arbiter │ ─┘ │ (e2e) │ │ (integ) │ └─────────┘ └───────────┘ Pre-flight Parallel Sequential (~1 second) fast tests slow tests ``` ## Agent Sequence | # | Agent | Role | Execution | |---|-------|------|-----------| | 1 | **arbiter** | Unit tests, type checks, linting | Parallel | | 1 | **arbiter** | Integration tests | Parallel | | 2 | **atlas** | E2E/acceptance tests | After 1 passes | ## Why This Order? 1. **Fast feedback**: Unit tests fail fast 2. **Parallel efficiency**: No dependency between unit and integration 3. **E2E gating**: Only run slow E2E tests if faster tests pass ## Execution ### Phase 0: Pre-flight Diagnostics (NEW) Before running tests, check for type errors - they often cause test failures: ```bash tldr diagnostics . --project --format text 2

What's inside
Steps it walks through
  1. When to Use
  2. Workflow Overview
  3. Agent Sequence
  4. Why This Order?
  5. Execution
  6. Phase 0: Pre-flight Diagnostics (NEW)
  7. Phase 0.5: Change Impact (Optional)
  8. Phase 1: Parallel Tests
  9. Phase 2: E2E Tests (If Phase 1 Passes)
  10. Test Scopes
  11. Full Suite
  12. Feature Scope
  13. Quick Check
  14. Example
Commands it runs
tldr diagnostics . --project --format text 2>/dev/null | grep "^E " | head -10
tldr change-impact --session
or for explicit files:
tldr change-impact src/changed_file.py
More from Continuous-Claude-v3
All skills →
About this skill
What does the test skill do?

Comprehensive testing workflow - unit tests ∥ integration tests → E2E tests

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill test --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going