parallel-monitor

parallel-monitor is an agent for Claude Code from jimmc414/claude-code-plugin-marketplace. It costs 0 tokens per session (733 once invoked), scanned A, original, MIT.

A monitoring tool for parallel Git worktree tasks that reads worker branch commits to identify progress, completion, waiting, or blockage.

In plain words
What is it for?
Use it to check worker status, find stalled tasks, and locate branches marked complete or blocked.
Why use it?
It gives a quick view of which workers are active and which need attention.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the parallel-workflows plugin — 3 skills, 3 agents shipped together

Good fit Use it to check worker status, find stalled tasks, and locate branches marked complete or blocked.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/jimmc414/claude-code-plugin-marketplace

Made for: Claude Code.

Or install parallel-workflows, the plugin that ships this one along with the rest of its 3 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for parallel-monitor

README.md
[![agentmods](https://agentmods.dev/badge/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor/github.svg)](https://agentmods.dev/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor)
Your own site
<a href="https://agentmods.dev/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor"><img src="https://agentmods.dev/badge/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for parallel-monitor

Your own site · 80×15
<a href="https://agentmods.dev/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor"><img src="https://agentmods.dev/badge/agents/jimmc414/claude-code-plugin-marketplace/parallel-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 733 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00733
Opus 5 $0.00000 $0.00367
Sonnet 5 $0.00000 $0.00147
Haiku 4.5 $0.00000 $0.00073

Measured 7d ago against content hash 22ba473288b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

parallel-monitor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/parallel-workflows/agents/parallel-monitor.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Parallel Workflow Monitor Agent

You monitor parallel workflows by analyzing git commits on worker branches.

When Invoked

Immediately scan all worker branches and report status.

Status Detection

Parse commit messages for status prefixes:

Prefix Status Meaning
[COMPLETE] ✅ COMPLETE Worker finished all tasks
[CHECKPOINT] 🔄 IN PROGRESS Worker making progress
[BLOCKED:<reason>] ❌ BLOCKED Worker cannot proceed
[NEEDS:task-X/<item>] ⏳ WAITING Worker needs another worker's output
(no prefix commits) 🟡 STARTING Worker just started

Commands to Run

# List all worker branches
git branch -a | grep 'work/task-'

# Get latest commit for each branch
for branch in $(git branch | grep 'work/task-'); do
  echo "=== $branch ==="
  git log $branch --oneline -1
done

# Find blocked workers
git log --all --grep="\[BLOCKED" --oneline

# Find completed workers
git log --all --grep="\[COMPLETE\]" --oneline

# Check for stalls (no commits in worktree)
for dir in worktrees/task-*/; do
  echo "=== $dir ==="
  git -C "$dir" log --oneline -3 2>/dev/null || echo "No commits"
done

Output Format

## Worker Status Report

| Worker | Branch | Status | Latest Commit |
|--------|--------|--------|---------------|
| 1 | work/task-1-core | ✅ COMPLETE | [COMPLETE] Add visualize command |
| 2 | work/task-2-html | 🔄 IN PROGRESS | [CHECKPOINT] Add HTMLRenderer |
| 3 | work/task-3-markdown | 🔄 IN PROGRESS | [CHECKPOINT] Add tables |
| 4 | work/task-4-tui | ❌ BLOCKED | [BLOCKED:missing-base] Need base.py |

### Summary
- Completed: 1/4
- In Progress: 2/4
- Blocked: 1/4

### Alerts
⚠️ Worker 4 is BLOCKED - needs base.py from Worker 1

### Recommended Actions
1. Check if Worker 1 created base.py
2. If yes, Worker 4 should pull and continue

Stall Detection

A worker is stalled if:

  • Last commit was >30 minutes ago
  • No [BLOCKED] or [COMPLETE] status
  • Worktree has uncommitted changes (check with git status)

Read the full file on GitHub · 99 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 99 lines · 0 tokens per session scan A 22ba473288b0

Subscribe to this mod's changes

parallel-monitor is an agent published in the GitHub repository jimmc414/claude-code-plugin-marketplace (4 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 733 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other agents, from other repositories

implementer

Scope-fenced implementation worker dispatched per phase by /implementation:implement-dispatch (directly, or chained from callers such as /work-items:work): executes exactly one brief inside its assigned or self-provisioned worktree, commits and pushes early, and returns a verdict plus identifiers. Not intended for…

melodic-software/claude-code-plugins · 70 tokens

gsd-executor

Executes GSD plans with atomic commits, deviation handling, checkpoint protocols, and state management. Spawned by execute-phase orchestrator or execute-plan command.

travisjneuman/.claude · 36 tokens

Jira Workflow Steward

Expert delivery operations specialist who enforces Jira-linked Git workflows, traceable commits, structured pull requests, and release-safe branch strategy across software teams.

SHAdd0WTAka/Zen-Ai-Pentest · 34 tokens

github-issue-sync-worker

Atomic GitHub issue synchronization executor. Updates issue body checkboxes and completion status based on PROGRESS.json changes.

evan043/claude-cli-advanced-starter-pack · 28 tokens

commit-agent-csk

Commit message specialist (thin trigger). Reads the staged diff and proposes a Conventional Commits message via the commit-message skill. Writes no source; commits only with user approval.

byerlikaya/claude-starter-kit · 42 tokens

jira-dev

Generate developer artifacts from JIRA tickets via the jira-as CLI wrapper: branch names, PR descriptions, parsed commits, commit/PR-to-issue links. Routed by mk:jira-dev skill. NOT for executing git/gh commands (mk:ship); NOT for issue CRUD (jira-issue).

ngocsangyem/MeowKit · 63 tokens