implement-batch

Implement code modules in parallel using subagents from a plan file.

4|Updated Mar 7, 2026
One-click install
npx skills add https://github.com/kimon1230/claude_extensions --skill implement-batch
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement-batch
Source: https://github.com/kimon1230/claude_extensions/tree/main/skills/implement-batch
Command: npx skills add https://github.com/kimon1230/claude_extensions --skill implement-batch

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the complex process of implementing batches of code modules, especially in large projects, by leveraging parallel subagents and ensuring code quality through integrated testing and validation.

Core Features & Use Cases

  • Parallel Subagent Implementation: Distributes module implementation across multiple AI agents for faster development.
  • Dependency Management: Handles sequential implementation for modules with inter-batch dependencies.
  • Automated Quality Assurance: Runs comprehensive test suites and quality checks (linting, type-checking) post-implementation.
  • Use Case: Implementing a new feature broken down into 5 independent modules. This skill can assign each module to a separate subagent, run their code and tests in parallel, and then integrate the results, flagging any conflicts or failures.

Quick Start

Use the implement-batch skill to implement Batch 3 from the plan file 'feature-x-plan.yaml'.

Frequently Asked Questions about implement-batch

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

FAQPage Schema
How do I implement multiple code modules in parallel from a plan file?

Parallel module implementation uses subagents to distribute development tasks defined in your plan file. It executes multiple code generation tasks concurrently, managing dependencies between batches to ensure structural integrity.

How does parallel subagent batch implementation handle module dependencies?

Batch implementation manages dependencies by scheduling sequential execution for modules with inter-batch dependencies. It coordinates subagent execution to ensure dependent code modules are processed in the correct order, preventing integration conflicts.

Can I run automated testing and quality checks after parallel code generation?

Yes, automated quality assurance runs comprehensive test suites and quality checks like linting and type-checking after parallel code generation. It validates implemented code against project testing conventions to ensure quality standards are met.

What is the best way to implement a large feature broken down into independent modules?

Using parallel subagents is the best way to implement a large feature broken into independent modules. It assigns each module to a separate subagent, runs their code and tests concurrently, and integrates results while flagging conflicts or failures.

Do I need to specify a batch number to implement code modules sequentially?

Yes, you need to specify a batch number from your plan file to implement code modules. The Skill uses this batch number to identify the specific group of modules for subagents to process, managing sequential dependencies between batches.