parallel-test-fixing

Distribute failing test files across subagents to fix them in parallel.

2|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/kscius/KS-Cursor-Orchestrator --skill parallel-test-fixing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: parallel-test-fixing
Source: https://github.com/kscius/KS-Cursor-Orchestrator/tree/main/skills/parallel-test-fixing
Command: npx skills add https://github.com/kscius/KS-Cursor-Orchestrator --skill parallel-test-fixing

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates fixing failing tests by distributing each failing test file to a separate subagent that fixes it independently in parallel.

Core Features & Use Cases

  • Parallelization of test fixes: assigns failing test files to individual subagents to speed up recovery.
  • Cross-framework support: handles failures from Jest, Vitest, and Pytest by grouping by file and launching dedicated workers.
  • Result aggregation: gathers fixes, changed files, and potential conflicts for review.

Quick Start

Start by running the task that outputs failing tests, then let subagents fix each file in parallel.

Frequently Asked Questions about parallel-test-fixing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix multiple failing tests in parallel across large JavaScript and Python suites?

You can fix failing tests in parallel by distributing failing test files across separate subagents that fix each file concurrently. This orchestrates per-file agents for Jest, Vitest, and Pytest to speed up recovery for large test suites.

How does parallel test fixing group and handle failures from different testing frameworks?

Parallel test fixing handles failures by grouping them according to their source test files. It reads test outputs from frameworks like Jest, Vitest, and Pytest, then launches dedicated subagents to resolve each file independently.

Can I use subagents to automate Pytest and Vitest failure recovery at the same time?

Yes, you can automate recovery for Pytest and Vitest failures concurrently. The process reads test outputs, groups failing files, and assigns each to an individual subagent for simultaneous cross-framework fixing.

What is the best way to aggregate fixes and changed files when running tests in parallel?

The best way to aggregate parallel fixes is to use a coordinator that gathers changes, fixes, and potential conflicts for review. It collects outcomes from each subagent to report modified files and resolution status.

How do I start automating test fixes with subagents after a test run outputs failures?

To start automating test fixes, run the task that outputs failing tests first, then let the subagents fix each failing file in parallel. This workflow applies to JavaScript and Python environments like Jest and Pytest.