parallel-debug

Runs the pr-converge loop across open GitHub PRs using AHK auto-continue pacing in Cursor.

6|1|Updated Jul 11, 2026
One-click install
npx skills add https://github.com/jl-cmd/claude-dev-env --skill parallel-debug-jl-cmd
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: parallel-debug
Source: https://github.com/jl-cmd/claude-dev-env/tree/main/.cursor/skills-archived/parallel-debug
Command: npx skills add https://github.com/jl-cmd/claude-dev-env --skill parallel-debug-jl-cmd

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating bugbot and bugteam review loops across many open pull requests is slow and manual, especially in Cursor where ScheduleWakeup is unavailable. This Skill automates the convergence loop so every open PR in jl-cmd/claude-dev-env reaches back-to-back clean reviews without constant human prompting. ## Core Features & Use Cases - Automated PR convergence loop: Drives bugbot and bugteam review phases per PR until both report CLEAN at the same HEAD, then marks the PR ready with gh pr ready. - AHK auto-continue pacing: Launches an AutoHotkey auto-typer that sends "continue" ticks every 5 minutes, replacing ScheduleWakeup in Cursor sessions. - Multitask fan-out: In Cursor Multitask Mode, spawns one background subagent per open PR so all PRs advance in parallel. - Use Case: You have six open PRs awaiting review convergence. Activate the skill, and it discovers the work queue, fixes findings via clean-coder subagents, re-triggers bugbot, and stops when all PRs are marked ready. ## Quick Start Say "parallel-debug" to start the pr-converge convergence loop across all open PRs in jl-cmd/claude-dev-env.

Frequently Asked Questions about parallel-debug

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

FAQPage Schema
How do I run the pr-converge loop in Cursor?▼

Activate the parallel-debug skill by saying "parallel-debug". It resolves the Cursor window PID, launches the AHK auto-typer for pacing, discovers open PRs, and runs per-tick bugbot and bugteam phases until every PR converges.

How does the skill pace ticks without ScheduleWakeup?▼

It launches an AutoHotkey v2 auto-typer via cursor-agents-continue.cmd targeting the Cursor window PID. Every 5 minutes it types "continue" into the window, triggering the next convergence tick.

Can parallel-debug handle multiple open PRs at once?▼

Yes. In Cursor Multitask Mode, typing "continue" fans out one background generalPurpose subagent per open PR, each running a single tick scoped to its PR. Outside Multitask Mode, ticks advance one active PR.

What prerequisites does parallel-debug require on Windows?▼

It requires the GitHub CLI (gh), PowerShell (pwsh), Python with the pr-converge helper scripts, and AutoHotkey v2 installed at C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe, plus the pr-converge and bugteam skills installed.

When does the convergence loop stop automatically?▼

The loop stops when all open PRs reach back-to-back clean and are marked ready, when tick_count reaches 30 (safety cap), or on hard blockers such as persistent API auth failure, inline_lag_streak of 3, or a bugteam stuck state.