octez-manager: Agent for Claude Code

.claude/agents/qa.md

qa is an agent for Claude Code from trilitech/octez-manager. It costs 15 tokens per session (550 once invoked), scanned A, original, MIT.

A quality-checking agent that runs tests and checks implemented behavior against requirements. It can verify builds, formatting, integration tests, and terminal user-interface flows.

In plain words
What is it for?
Use it to run a project's test commands, inspect a terminal interface through simulated key presses, and compare results with the expected user flow.
Why use it?
It helps catch broken behavior, navigation regressions, rendering problems, compilation failures, and formatting issues before delivery.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions AGENTS.md.

This is trilitech/octez-manager's own configuration. It tells Claude Code how to work on octez-manager itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything octez-manager configures →

Reuse

Borrowing it

Nothing to install: this file belongs to trilitech/octez-manager. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/trilitech/octez-manager/main/.claude/agents/qa.md
Clone the repo
git clone --depth 1 https://github.com/trilitech/octez-manager

Made for: Claude Code.

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 qa

README.md
[![agentmods](https://agentmods.dev/badge/agents/trilitech/octez-manager/qa/github.svg)](https://agentmods.dev/agents/trilitech/octez-manager/qa)
Your own site
<a href="https://agentmods.dev/agents/trilitech/octez-manager/qa"><img src="https://agentmods.dev/badge/agents/trilitech/octez-manager/qa/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.

agentmods 80×15 button for qa

Your own site · 80×15
<a href="https://agentmods.dev/agents/trilitech/octez-manager/qa"><img src="https://agentmods.dev/badge/agents/trilitech/octez-manager/qa.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 550 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.00015 $0.00550
Opus 5 $0.00008 $0.00275
Sonnet 5 $0.00003 $0.00110
Haiku 4.5 $0.00002 $0.00055

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

Security

Grade A, and why

qa 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 4d 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.

.claude/agents/qa.md · 75 lines

What it actually says

QA

Project Context — octez-manager

OCaml 5 / Dune TUI app managing Octez blockchain services. Miaou TUI + Eio concurrency.

Deterministic test commands:

  • dune runtest — unit + headless TUI tests
  • dune build — verify compilation
  • dune fmt --check — verify formatting (do not run dune fmt to fix; report if it fails)
  • Integration tests: see test/integration/AGENTS.md for how to run them
  • ./scripts/check-copyright.sh — copyright header gate

TUI verification (manual checks when needed): Use the tmux pattern from AGENTS.md:

tmux new-session -d -s qa-debug -x 220 -y 50
tmux send-keys -t qa-debug './octez-manager' Enter
sleep 1
tmux capture-pane -t qa-debug -p

Navigate with arrow keys, Enter, Tab, Esc. Capture screen after each action (sleep 0.3 then capture). Kill with tmux kill-session -t qa-debug when done.

What to check in TUI:

  • Golden path: the primary user flow described in the brief
  • Navigation regressions: Esc, Tab, arrow keys still work on other pages
  • No visible rendering glitches or truncated content at 220×50

Issue tracker: trilitech/octez-manager GitHub, use gh.

You validate delivered behavior against requirements.

Token discipline:

  • concise pass/fail reporting
  • concise defect reproduction notes

Workflow

  1. Read requirements and implemented scope.
  2. Run deterministic tests relevant to the change.
  3. Run broader regression checks when configured.
  4. Execute targeted manual scenarios when needed.
  5. Report pass/fail with concrete evidence.

Output Contract

  • result: pass or fail
  • executed checks
  • failing scenarios with repro steps
  • severity of observed defects

Rules

  • do not approve when deterministic checks fail
  • do not mark pass on partial evidence
  • avoid speculative claims without reproduction
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. 4d ago First seen · 75 lines · 15 tokens per session scan A 9ec69627cac5

Subscribe to this mod's changes

qa is an agent published in the GitHub repository trilitech/octez-manager (5 stars, last pushed 1mo ago), licensed MIT. It adds 15 tokens to every session and 550 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-09-04.

Related

Other agents, from other repositories

qa

Verifies implemented behavior through deterministic test execution and focused scenario checks.

mathiasbourgoin/roster · 15 tokens

proof

Risk-maps codebases and writes the actual test code — integration tests on critical paths, Playwright E2E for user journeys, flaky test triage, and CI gating — using the testing trophy over the pyramid. Use when a codebase has no test strategy, CI is slow/flaky, or a critical path has zero coverage. Trigger with…

jeremylongshore/tons-of-skills-marketplace · 84 tokens

test-automator

Test automation specialist delivering coverage improvements, deterministic suites, and pipeline integration. Ideal for establishing or upgrading testing strategy, fixtures, and quality gates across the stack.

NickCrew/Claude-Cortex · 39 tokens

testing

Test strategy and implementation — unit, integration, and end-to-end suites, fixtures, flake elimination, and coverage that means something.

omgcarlo/fushiguro-mcp · 29 tokens

integration-testing-orchestrator

Use this agent when you need to coordinate end-to-end testing across multiple components, optimize build systems, validate deployments, or ensure proper integration between eBPF programs, Rust collector, and frontend components. Examples: Context: User has made changes to both eBPF programs and Rust collector and…

eunomia-bpf/agentsight · 0 tokens

cocotb-reviewer

RAT audit protocol (condensed; dev source: plugindocs/agent-lib/audit-output-protocol.md — plugin-internal, do NOT Read it at runtime).

babyworm/rtl-agent-team · 51 tokens