conflict-arbiter

conflict-arbiter is an agent for Claude Code from nguyenthienthanh/aura-frog. It costs 55 tokens per session (1,337 once invoked), scanned A, original, MIT.

A decision-making agent for conflicts between planned software tasks. It chooses whether work should be paused, ordered one after another, replanned, or sent to a person for a decision.

In plain words
What is it for?
Use it when two pending tasks depend on or interfere with each other, including cases that require reordering, freezing, discarding, replanning, or escalation.
Why use it?
It prevents incompatible tasks from being run together and records how each conflict was handled.

Agent for Claude Code

Written for Claude Code: effort in frontmatter.

Part of the aura-frog plugin — 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers shipped together

Good fit Use it when two pending tasks depend on or interfere with each other, including cases that require reordering, freezing, discarding, replanning, or escalation.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nguyenthienthanh/aura-frog/conflict-arbiter
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/nguyenthienthanh/aura-frog

Made for: Claude Code.

Or install aura-frog, the plugin that ships this one along with the rest of its 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers.

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 conflict-arbiter

README.md
[![agentmods](https://agentmods.dev/badge/agents/nguyenthienthanh/aura-frog/conflict-arbiter.svg)](https://agentmods.dev/agents/nguyenthienthanh/aura-frog/conflict-arbiter)
Your own site
<a href="https://agentmods.dev/agents/nguyenthienthanh/aura-frog/conflict-arbiter"><img src="https://agentmods.dev/badge/agents/nguyenthienthanh/aura-frog/conflict-arbiter.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 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,337 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.00055 $0.01337
Opus 5 $0.00028 $0.00668
Sonnet 5 $0.00011 $0.00267
Haiku 4.5 $0.00006 $0.00134

Measured 8d ago against content hash abd195343a1b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

conflict-arbiter 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 8d 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.

aura-frog/agents/conflict-arbiter.md · 103 lines

How it starts

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

Agent: Conflict Arbiter

STATUS — v3.7.0-beta.2. Pairs with conflict-detector skill and pre-dispatch-conflict-check / post-execute-conflict-rescan hooks.

Purpose

When conflict-detector finds a conflict between a proposed T4 task and a pending-confirm sibling, this agent decides what happens next. Five resolution paths per spec §21.5:

resolutions[6]{path,trigger,result}:
  auto_thaw,"Blocker done AND output compatible","Frozen → planned, re-queue"
  auto_discard,"Blocker done AND output incompatible","Frozen → planned with replan_required:true"
  user_priority,"/aura-frog:plan-conflicts resolve <id>","User picks winner"
  sequential_reorder,"Master-planner restructures DAG","One becomes depends_on the other"
  replan,"High-cost conflict","Replanner creates alternative"
  escalate,"replan_budget exhausted OR cycle detected","Human action required"

Constraints

  • MUST NOT execute task code or modify application files
  • MUST log every decision to BOTH history.jsonl AND conflicts.jsonl
  • MUST respect replan_budget; escalate after exhaustion (per rules/workflow/replan-thresholds.md)
  • MUST prefer sequential_reorder over replan when DAG restructure is feasible (cheaper than re-decomposing)

When invoked

  • pre-dispatch-conflict-check hook detects L1/L2 overlap and emits a CONFLICT-NNNNN record
  • post-execute-conflict-rescan hook fires when a blocker reaches done and frozen siblings need re-evaluation
  • User runs /aura-frog:plan-conflicts resolve <CONFLICT-ID>

Process

  1. Read the conflict record from .claude/plans/conflicts.jsonl (latest entry for the given conflict_id)
  2. Read participant nodes and their parents (up to T2)
  3. Read any prior arbitration in history.jsonl for these participants (avoid thrash cycles)
  4. Apply decision table:
IF conflict.layer == L1 AND blocker.status != done:
  → freeze the proposed task (descendants only per spec §13.1, Q10)

IF conflict.layer == L1 AND blocker.status == done:
  → run compatibility check (git_diff blocker.checkpoint vs HEAD)
  IF still_overlaps:    → auto_discard (frozen → planned + replan_required)
  ELSE:                 → auto_thaw (frozen → planned)

IF conflict.layer == L2:
  → check if DAG reordering would resolve (one task depends_on the other)
  IF feasible:           → sequential_reorder (mutate parent's children order)
  ELSE:                  → freeze + escalate

IF conflict.layer in [L3, L4]:    ← stubbed in beta.2
  → freeze + escalate to user (LLM-driven arbitration ships in rc.1)

IF replan_count(participant) >= replan_budget:
  → escalate to user (replan_budget exhausted)

IF last 3 history entries for participant are all `arbitration`:
  → escalate (cycle guard — same as replan-thresholds.md cycle guard)

Read the full file on GitHub · 103 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. 8d ago First seen · 103 lines · 55 tokens per session scan A abd195343a1b

Subscribe to this mod's changes

conflict-arbiter is an agent published in the GitHub repository nguyenthienthanh/aura-frog (24 stars, last pushed 4d ago), licensed MIT. It adds 55 tokens to every session and 1,337 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

thoughts-analyzer

Extracts decisions and actionable insights from project history documents. Plans in thoughts/ contain problems, solutions, and reasoning - but mixed with exploration noise. Returns: what was decided, why, constraints identified, and whether conclusions are still valid. Filters noise, returns only high-value…

hoblin/claude-ruby-marketplace · 0 tokens

alchemist

Code/data transmutation via four-stage alchemical process (nigredo/albedo/citrinitas/rubedo) with meditate/heal checkpoints.

pjt222/agent-almanac · 32 tokens

documentation-researcher

Need to learn how to use a library, gem, or framework? This agent fetches up-to-date official documentation via Context7, understands your specific use case, and provides ready-to-use code examples. Great for setup guides, API usage, Rails methods, gem configuration, and implementation patterns.

hoblin/claude-ruby-marketplace · 64 tokens

review-rails

Rails conventions and architecture reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-rails with artifact paths. Ensures existing framework features are used, not reinvented — reads changed files in full and compares them against siblings and the framework-native form.

hoblin/claude-ruby-marketplace · 64 tokens

review-ticket-delivery

Ticket-delivery reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-ticket-delivery with artifact paths. Code-quality reviewers judge how the work was done; this one judges whether the work was done. Runs on every review; carries the always-on security sweep.

hoblin/claude-ruby-marketplace · 68 tokens

review-docs

Documentation reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-docs with artifact paths. Treats every comment as a claim to verify against code read in full — reasoning narration and stale references are its prey.

hoblin/claude-ruby-marketplace · 57 tokens