batch

Automate parallel batch file operations with glob pattern discovery and chunking.

Updated May 15, 2026
One-click install
npx skills add https://github.com/qazz92/glm-code --skill batch-qazz92
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: batch
Source: https://github.com/qazz92/glm-code/tree/main/packages/core/src/skills/bundled/batch
Command: npx skills add https://github.com/qazz92/glm-code --skill batch-qazz92

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the execution of batch operations on multiple files in parallel, significantly reducing the time and effort required for repetitive tasks.

Core Features & Use Cases

  • Parallel Processing: Process multiple files concurrently for faster execution.
  • File Discovery: Automatically discovers files based on a pattern.
  • Chunking: Splits files into manageable chunks for parallel processing.
  • Worker Agents: Utilizes worker agents to perform tasks in parallel.
  • Result Aggregation: Provides a summary of the operation's outcome.
  • Usage Scenarios: Ideal for tasks like adding comments, converting file formats, or fixing lint errors across multiple files.

Quick Start

Execute the /batch command followed by the operation and file pattern, e.g., /batch Add JSDoc comments to src/**/*.ts

Frequently Asked Questions about batch

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

FAQPage Schema
How do I run parallel file processing on multiple files at once?

Parallel file processing uses worker agents to execute operations concurrently across discovered files. The system chunks files into manageable groups, enabling concurrent execution to significantly reduce time spent on repetitive tasks.

How do I automate batch operations across files using a glob pattern?

Batch operations automate file discovery using glob patterns like src/**/*.ts. You provide an operation command and pattern, and the system automatically discovers matching files, chunks them, and processes them in parallel.

What is the best way to add JSDoc comments to multiple TypeScript files in parallel?

Adding JSDoc comments to multiple files is handled through parallel batch operations. Specify the operation and file pattern, and worker agents will concurrently process the files, aggregating results into a final summary.

Can I use this for fixing lint errors across an entire software engineering project?

Fixing lint errors across files is an ideal use case for this parallel batch operation tool. It discovers files via patterns, chunks them for concurrent processing, and executes the fixes using parallel worker agents.

Does parallel batch processing provide a summary of file operations performed?

Parallel batch processing provides result aggregation that summarizes the outcome of file operations. After worker agents complete their concurrent tasks, the system compiles a summary detailing the operations performed across all processed files.

What are the limitations of chunking files for parallel processing in software automation?

Chunking files for parallel processing splits files into manageable groups for concurrent execution. It is designed for repetitive software engineering tasks like format conversion or lint fixing, though complex sequential dependencies between files may limit parallel efficiency.