run

run is a command for Claude Code from AleksandarBisevac/claude-plugins. It costs 32 tokens per session (1,116 once invoked), scanned A, original, MIT.

A command for executing exactly one task in an audit pipeline, with checks for its current status and blockers. It also supports a dry run, which previews the work without changing anything.

In plain words
What is it for?
It is for previewing or running a specific task, enforcing status rules, handling reopened tasks, and reporting the task outcome.
Why use it?
It prevents tasks from being run in the wrong state or repeated silently after completion.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the audit plugin — 2 skills, 20 commands, 4 agents, 4 hooks shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add AleksandarBisevac/claude-plugins
Claude Code
/plugin install audit

Made for: Claude Code.

Or install audit, the plugin that ships this one along with the rest of its 2 skills, 20 commands, 4 agents, 4 hooks.

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 run

README.md
[![agentmods](https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/run.svg)](https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/run)
Your own site
<a href="https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/run"><img src="https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/run.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,116 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00032 $0.01116
Opus 5 $0.00016 $0.00558
Sonnet 5 $0.00006 $0.00223
Haiku 4.5 $0.00003 $0.00112

Measured 6d ago against content hash 4f968e21dadf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

run 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 6d 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/audit/commands/run.md · 69 lines

How it starts

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

/audit:run — execute one task

$ARGUMENTS = the task id to run (plus optional --dry-run). Read ${CLAUDE_PLUGIN_ROOT}/reference/orchestrator.md and ${CLAUDE_PLUGIN_ROOT}/reference/manifest-conventions.md first.

If --dry-run is present: follow the orchestrator's Dry-run / preview section — preview whether the task is ready + what would run, and STOP without mutating.

Otherwise run the full preflight (steps 1–5, including the lock) and emit Progress output as you go.

Execute exactly <taskId>, with status guards:

  1. status == "done" → refuse: report its commit/outcome. Offer (AskUserQuestion) an explicit re-open: on confirmation, reset status = "pending", attempts = 0, clear commit, outcome, completedAt, verifiedBy — and if task.bugId is set, reopen the linked bug too (its bugs[] entry back to status: "in_progress", clear fixedIn) so a re-opened bugfix task never leaves its bug marked fixed at a stale SHA — then execute. Never silently re-run a done task. A reopened task with an ado link gets the ADO echo (orchestrator.md → "ADO echo"): its card moves back to the pending-state with the comment reopened by /audit:run — the reopen was human-confirmed, so the board move inherits that consent. testEvidence is deliberately not on that list. The block is a cache of a run that really happened, the evidence ledger still holds that run, and run-test-gate.py --reconcile re-derives every subject's pointer from that ledger — so a cleared pointer is put straight back by the next reconcile or the next recorded run, and clearing it buys a reader nothing but a disagreement between the plan and the record, which /audit:doctor will then report. What marks the verdict as stale is the task reading pending again beside an at stamp older than the reopen, not a missing block.
  2. status == "blocked" → refuse: report why (exhausted attempts / blockers). Offer a confirmed reset of attempts to 0 (back to pending), then execute.
  3. status == "in_progress" → warn: likely an interrupted run — point to /audit:resume. Proceed only if the human explicitly confirms re-execution.
  4. Unmet blockers → refuse and list them.
  5. Otherwise run Execute the task (orchestrator).

Then follow Reporting and release the lock.

Read the full file on GitHub · 69 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. 6d ago First seen · 69 lines · 32 tokens per session scan A 4f968e21dadf

Subscribe to this mod's changes

run is a command published in the GitHub repository AleksandarBisevac/claude-plugins (4 stars, last pushed 5d ago), licensed MIT. It adds 32 tokens to every session and 1,116 once invoked, about $0.0002 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.