bulk-edit

Apply reviewer comments from a file to a target document using per-thread agents.

11|2|Updated May 29, 2025
One-click install
npx skills add https://github.com/yulonglin/dotfiles --skill bulk-edit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bulk-edit
Source: https://github.com/yulonglin/dotfiles/tree/main/claude/local-marketplace/plugins/code-toolkit/skills/bulk-edit
Command: npx skills add https://github.com/yulonglin/dotfiles --skill bulk-edit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manually applying reviewer comments to large code and documentation bases is slow and error-prone; this skill automates the process safely using per-thread agents.

Core Features & Use Cases

  • Automates bulk edits by parsing a comments/feedback file into threads and applying each edit to the target document
  • Dynamically assesses edit complexity, spawning haiku or sonnet agents as appropriate, and ensuring deterministic results
  • Tracks progress within the comments file, enabling resumable runs and auditable history
  • Enforces safety rules (one agent at a time, fresh agent per edit, explicit status markers)

Quick Start

Run /bulk-edit <comments-file> [--target <file>] to process all uncompleted threads in the comments file against the specified target document.

Frequently Asked Questions about bulk-edit

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

FAQPage Schema
How do I automate applying reviewer comments to a code file?

To automate bulk edits from reviewer comments, you parse a comments file into threads, spawn a dedicated fresh agent per thread, and apply each edit sequentially to the target document to ensure safe, deterministic results.

How do I process multiple code review feedback threads automatically?

Processing multiple code review threads involves parsing a feedback file, classifying edit complexity, and dispatching one sequential agent per thread to modify the target document while updating explicit status markers for auditable progress.

Can I resume an automated bulk edit workflow if it stops halfway?

Yes, automated bulk edit workflows are resumable because the agent records explicit progress status markers directly within the comments file, allowing you to restart and process only the uncompleted threads.

What is the best way to safely apply bulk code edits with agents?

The safest way to apply bulk code edits with agents is enforcing a one-agent-at-a-time workflow, spawning a fresh agent per edit, and tracking progress with explicit status markers to ensure an auditable history.

Why does the bulk edit agent process threads sequentially instead of in parallel?

The bulk edit agent processes threads sequentially to enforce safety, prevent conflicts when modifying a single target document, and ensure deterministic results through a strict one-agent-at-a-time workflow.

Does the bulk edit workflow require a specific comments file format?

The bulk edit workflow requires a comments file containing multiple feedback threads and a specified target document, parsing the uncompleted threads to dynamically assess edit complexity and spawn appropriate sequential agents.