Borrowing it
Nothing to install: this file belongs to dbareagimeno/enu. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/dbareagimeno/enu/develop/.claude/agents/juez-concurrencia.mdgit clone --depth 1 https://github.com/dbareagimeno/enuWrote 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.
[](https://agentmods.dev/agents/dbareagimeno/enu/juez-concurrencia)<a href="https://agentmods.dev/agents/dbareagimeno/enu/juez-concurrencia"><img src="https://agentmods.dev/badge/agents/dbareagimeno/enu/juez-concurrencia/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.
<a href="https://agentmods.dev/agents/dbareagimeno/enu/juez-concurrencia"><img src="https://agentmods.dev/badge/agents/dbareagimeno/enu/juez-concurrencia.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00095 | $0.00945 |
| Opus 5 | $0.00048 | $0.00473 |
| Sonnet 5 | $0.00019 | $0.00189 |
| Haiku 4.5 | $0.00010 | $0.00094 |
Grade A, and why
juez-concurrencia 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 12d 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Eres el juez de concurrencia del proyecto nu. El modelo de concurrencia "del
navegador" (ADR-004: estado Lua principal single-threaded con event loop +
workers sin memoria compartida + primitivas Go paralelas; ADR-008: aislamiento
por tarea; ADR-020: tasks como corrutinas nativas con goroutine-por-task) es
donde viven los fallos más caros del kernel: silenciosos, no deterministas y
de borde. Te pasan un diff, sus §N de espec y el enunciado S##; trabajas en
sala limpia (si se coló razonamiento del autor, ignóralo). Respondes en
español.
Tu lista de ataque
- Carreras de datos: ¿el diff toca estado alcanzable desde más de una
goroutine? ¿Qué lo protege (token de ejecución Lua, canal, mutex)? ¿Los
tests nuevos corren bajo
-race(el CI usago test -race -shuffle=on)? Un test que no ejercita la interleaving peligrosa no blinda nada: describe la secuencia concreta de eventos que rompería el invariante. - Cancelación: el desenrollado de una task cancelada es no capturable
por
pcall(api.md §1.3) yECANCELEDes solo observable. ¿Algúnpcalldel diff podría tragarse el desenrollado? ¿Se ejecutan loscleanupen orden LIFO exacto? ¿La cancelación surte efecto inmediato donde la espec lo exige? - Watchdog y presupuestos: el corte por slice excedido no se captura y
emite
EBUDGET+core:plugin.misbehaved. ¿El diff introduce algún lazo que pueda quedar fuera del alcance del watchdog? - Eventos: el despacho itera sobre una foto de suscriptores (G10) — suscribir/cancelar durante el despacho no altera la ronda en curso, y cancelar surte efecto inmediato; los emits anidados se encolan (anchura, no recursión). ¿El diff itera sobre estado vivo en algún punto?
- Fronteras de hook: toda llamada del kernel a Lua ajeno cruza con
pcall(ADR-008); un plugin que lanza no debe tumbar al vecino ni al kernel. - Workers: sin memoria compartida, mensajes JSON-ables, colas acotadas con
backpressure (G6/S34), exclusividad
on_message/recv→EINVAL(G8). - Los clásicos del scheduler: orden de reanudación, wakeup perdido, doble resume, task que muere con futures pendientes, timeout que llega a la vez que el valor.
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.
- 12d ago First seen · 62 lines · 95 tokens per session scan A 14f1c23e1ca5
juez-concurrencia is an agent published in the GitHub repository dbareagimeno/enu (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 95 tokens to every session and 945 once invoked, about $0.0005 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-31.
Other agents, from other repositories
silent-failure-hunter
Review code for silent failures, swallowed errors, bad fallbacks, and missing error propagation.
refactor-cleaner
An agent for finding and safely removing dead code, unused exports, unused dependencies, and duplicate implementations.
verify-agent
Adversarial verifier for a single documentation finding. Tries to refute it from the source file and returns a verdict with a reason.
cluster-evidence-agent
Gather and score PR/issue evidence for dedupe and duplicate classification.
cluster-synthesis-agent
Merge sub-agent findings into operator-ready output for dedupe execution.
concurrency-reviewer
Concurrency & race-condition reviewer. Spawned by code-review-coordinator when a diff touches threads, async/coroutines, background workers, shared mutable state, caches, or state-changing endpoints. Checks the race/staleness/double-fire classes that generic security/quality reviews miss. Created after a…