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 commands/uipath/coder_eval/coder-eval-code-review-wfgit clone --depth 1 https://github.com/UiPath/coder_evalWhat 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.00023 | $0.04007 |
| Opus 5 | $0.00012 | $0.02004 |
| Sonnet 5 | $0.00005 | $0.00801 |
| Haiku 4.5 | $0.00002 | $0.00401 |
Grade A, and why
coder-eval-code-review-wf 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 yesterday.
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 — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Context
This is the workflow-orchestrated variant of /coder-eval-code-review-full.
It produces the same report (same axes, severity standard, scoring formula,
output files, PR comment) but replaces the inline parallel-Agent fan-out
(steps 3–5 of the sibling command) with a single Workflow call:
- One sub-workflow per axis (Option B). The parent workflow invokes a
parameterized
cr-axischild once per selected axis, so each axis is an isolated, independently-resumable sub-run. - Each axis agent reads its rubric from the sibling file directly. The
Review Principles / Severity Standard / Output Format / Techniques are NOT
pasted into the workflow payload — the agent
Reads them from.claude/commands/coder-eval-code-review-full.md. This keeps a single literal source of truth and keeps theargspayload small (just paths, per-axis starting points, and routed tool output). - Adversarial verification of every medium+ finding. Inside each axis
sub-workflow, every 🔴/🟠/🟡 finding is independently re-checked by a second
agent whose job is to refute it. False-positives are dropped; a finding
that is real but has an inaccurate detail (wrong line count, metric, symbol)
is corrected in place (the verifier returns a
corrected_titlecarrying the verified facts). 🔵 (low) findings pass through unverified. A verification ledger (proposed / verified / refuted / corrected counts + the refuted list with reasons, plus the cross-axis-reconcile drops) is surfaced in the report andresults.json, so false-positive rate is measurable and comparable run-over-run. To keep that correction rate low at the source, each axis agent is held to an accuracy gate — citefile/line/metrics only from a direct Read (or verbatim tool output), quoting the offending line — and must record a per-axis signal disposition stating, for each routed automated signal, whether it was filed or why not (so a genuinely clean axis reads as deliberately clean rather than as if the tool output was ignored). - Dedup + theme-group + cross-axis reconcile before scoring. One synthesis
agent merges findings that are the same root cause (incl. the same issue
surfaced under two axes) and collapses same-class themes (e.g. several
god-functions) into one scored finding that lists its members — so a single
issue isn't counted multiple times and one theme can't tank an axis. It is
also handed the refuted ledger and drops any survivor that is the same
claim a sibling axis's verifier already refuted with evidence — because the
per-axis verifiers run independently, the same finding can be refuted under one
axis yet survive under another, and the survivor would otherwise score against
its axis. Cross-axis convergence is taken from this agent's semantic merge
judgment (which findings it ruled the same issue), not from exact
file:linestring-matching (which almost never coincides for a real cross-axis issue). Scoring runs on the merged, reconciled set. - Deterministic scoring AND rendering in JS. Counts → score, overall mean,
weakest axis, and cross-axis convergence are computed in the workflow script;
the workflow also renders the report markdown itself and returns a
filesmap (filename → contents), including a machine-readableresults.json(structured findings + scores for trend/external use). The main agent writes those verbatim — no hand-transcription, so the report can't drift from the data.
Everything else — scope resolution, the worktree, the automated tool checks, saving raw tool output, and PR-comment posting — stays in the main loop (this command), because those are one-time I/O and shared-state actions that belong under the main agent's direct control.
Opt-in note: invoking Workflow is explicitly part of this command's
instructions (step 5 below), which is what authorizes the tool call. Do not ask
the user to re-confirm.
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.
- yesterday First seen · 256 lines · 23 tokens per session scan A 0ce36404a478
coder-eval-code-review-wf is a command published in the GitHub repository UiPath/coder_eval (119 stars, last pushed 3d ago), licensed Apache-2.0. It adds 23 tokens to every session and 4,007 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 commands, from other repositories
work
通过 v3 流程发起正式工作请求 (entry gate).
ng-red-team
Portable command prompt generated from skills/stress-testing-agent-changes/SKILL.md. Edit the skill, then run python tools/ng.py gen-commands; do not edit this file by hand.
milestone-status
PitWay: Show a milestone's status, contract, progress, and tasks.
usage-add
PitWay: Accumulate measured planning or qa token usage onto a milestone.
milestone-list
PitWay: List every milestone with a concise one-line status.
fix
Universal debugging and fix application with semantic code analysis.