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.
npx agentmods add agents/bdfinst/agentic-dev-team/concurrency-reviewgit clone --depth 1 https://github.com/bdfinst/agentic-dev-teamWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00017 | $0.01160 |
| Opus 5 | $0.00009 | $0.00580 |
| Sonnet 5 | $0.00003 | $0.00232 |
| Haiku 4.5 | $0.00002 | $0.00116 |
Grade A, and why
concurrency-review 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Concurrency Review
Scope: always Cites: [adversarial-review-protocol]
Output JSON: per ${CLAUDE_PLUGIN_ROOT}/knowledge/review-agent-output-contract.md (Whole-file load: short, canonical schema).
Status: pass=no concurrency issues, warn=potential concerns, fail=likely race conditions or safety violations Severity: error=race condition or data corruption risk, warning=potential concurrency concern, suggestion=defensive improvement Confidence: high=mechanical pattern fix (add await, add finally); medium=fix direction clear but requires understanding shared state; none=requires human judgment (architectural concurrency design)
Context needs: full-file
Skip
Return {"status": "skip", "issues": [], "summary": "No concurrency-relevant patterns in target"} when:
- No concurrency-relevant patterns present:
- JS/TS: no
async/await,Promise,Worker, orSharedArrayBuffer - C#: no
async/await,Task,Thread,Parallel,lock, orConcurrentCollection - Java: no
Thread,ExecutorService,CompletableFuture,synchronized,volatile, orjava.util.concurrent
- JS/TS: no
- No shared mutable state across callbacks, event handlers, or concurrent paths
- Pure synchronous single-threaded code with no event-driven patterns
Detect
Race conditions:
- Read-then-write without atomicity (check-then-act)
- Shared mutable state accessed from multiple async paths
- Event handlers modifying shared state without guards
- Database read-modify-write without transactions or optimistic locking
- File operations without locking (open-write-close races)
Idempotency:
- Non-idempotent HTTP handlers (POST/PUT without deduplication)
- Side effects in retry-able operations (payments, emails, queue messages)
- Missing idempotency keys on critical mutations
Async/concurrent task pitfalls:
- Unhandled rejections/exceptions:
- JS/TS: missing
.catch()ortry/catchonawait - C#: unawaited
Taskwith no.ContinueWitherror handler;async voidmethods - Java: unhandled
CompletableFuturewithout.exceptionally()or.handle()
- JS/TS: missing
- Dangling async operations (fire-and-forget without intent):
- JS/TS: async calls without
await - C#:
Tasknot awaited and not stored - Java:
CompletableFuturenot awaited and not stored
- JS/TS: async calls without
- Parallel task failures swallowing errors:
- JS/TS:
Promise.all— one rejection cancels all without individual error handling - C#:
Task.WhenAll— exceptions from individual tasks swallowed unless explicitly checked - Java:
CompletableFuture.allOf— individual failures require explicit.exceptionally()per stage
- JS/TS:
- Sequential operations that could be parallel:
- JS/TS: sequential
awaitcalls with no dependency between them (usePromise.all) - C#: sequential
awaitcalls with no dependency (useTask.WhenAll) - Java: sequential
get()calls with no dependency (useCompletableFuture.allOf)
- JS/TS: sequential
- Iteration not awaited:
- JS/TS:
asynccallback inforEach(does not await iterations; usefor...of) - C#:
asynclambda inList.ForEach(fire-and-forget; useforeach+await) - Java:
async-like operations insidestream().forEachwithout joining
- JS/TS:
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.
- 3d ago First seen · 102 lines · 17 tokens per session scan A 330b9e44c152
concurrency-review is an agent published in the GitHub repository bdfinst/agentic-dev-team (277 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 1,160 once invoked, about $0.0001 per session on Opus 5. 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-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.