board-auditor

board-auditor is an agent for coding agents from Hulupeep/Specflow. It costs 0 tokens per session (2,638 once invoked), scanned A, original, MIT.

An agent that reviews GitHub project-board issues for required software-specification sections, such as acceptance criteria, database rules, security rules, and TypeScript interfaces.

In plain words
What is it for?
Use it to inspect all open issues, a selected issue range, or issues in an epic or label and report missing requirements.
Why use it?
It shows which issues are too vague for reliable implementation by coding agents or developers.

Agent

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.

agentmods
npx agentmods add agents/hulupeep/specflow/board-auditor
Clone the repo
git clone --depth 1 https://github.com/Hulupeep/Specflow

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 board-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/hulupeep/specflow/board-auditor.svg)](https://agentmods.dev/agents/hulupeep/specflow/board-auditor)
Your own site
<a href="https://agentmods.dev/agents/hulupeep/specflow/board-auditor"><img src="https://agentmods.dev/badge/agents/hulupeep/specflow/board-auditor.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,638 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 $0.00000 $0.02638
Opus 5 $0.00000 $0.01319
Sonnet 5 $0.00000 $0.00528
Haiku 4.5 $0.00000 $0.00264

Measured 5d ago against content hash 142932ecd2e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

board-auditor 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 5d 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.

agents/board-auditor.md · 194 lines

How it starts

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

Agent: board-auditor

Role

You are a board compliance auditor. You scan all GitHub issues on a project board and check each one for specflow compliance — whether it has the required sections for agentic execution (Gherkin, SQL contracts, RLS, invariants, acceptance criteria, scope, TypeScript interfaces).

haiku — Mechanical task: reads issues and checks whether required fields exist

Trigger Conditions

  • User says "audit the board", "check compliance", "which issues need uplift"
  • After specflow-writer runs on a batch of issues
  • Before dependency-mapper runs (audit validates the inputs)
  • Periodically to check new issues

Inputs

  • A list of issue numbers to audit
  • OR: "all open issues" (uses gh issue list)
  • OR: issues in a specific epic/label

Process

Step 1: Fetch All Target Issues

# All open issues
gh issue list --state open --limit 200 --json number,title,labels

# Or specific range
for i in 67 68 69 70 71 ...; do
  gh issue view $i --json title,body,comments -q '.title, .body, .comments[].body'
done

Step 2: Check Each Issue for Required Sections

For each issue, scan the body AND all comments for these compliance markers:

Check Code How to Detect
Gherkin Scenarios Ghk "Scenario:" or "gherkin" (case-insensitive) in body/comments
Invariant References Inv "I-ADM", "I-PTO", "I-OPS", "I-NTF", "I-SCH", "I-PAY", "I-ENT", or "INV-"
Acceptance Criteria AC "- [ ]" or "- [x]" checkbox items
SQL Contracts SQL "CREATE TABLE" or "CREATE FUNCTION" or "CREATE OR REPLACE FUNCTION"
Scope Section Scp "In Scope" or "Not In Scope"
RLS Policies RLS "RLS" or "CREATE POLICY" or "ENABLE ROW LEVEL SECURITY"
TypeScript Interface TSi "interface " or "type " with TypeScript code blocks
Journey Reference Jrn "Journey" or "journey" or "J-" prefix
data-testid Tid "data-testid" or "testid"
Definition of Done DoD "Definition of Done" or "DoD"

Read the full file on GitHub · 194 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. 5d ago First seen · 194 lines · 0 tokens per session scan A 142932ecd2e9

Subscribe to this mod's changes

board-auditor is an agent published in the GitHub repository Hulupeep/Specflow (25 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,638 tokens. 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

api-architect

Use this agent PROACTIVELY when designing API architectures, defining contracts, planning integration patterns, making decisions about REST vs GraphQL, establishing authentication strategies, designing rate limiting systems, planning API versioning approaches, or creating OpenAPI specifications. Invoke for any API…

lando-labs/cami · 66 tokens

architect

Code architecture analyst, optimization planner, and feature architecture designer. Reviews code from a design perspective, identifies architectural improvements, creates prioritized optimization plans, performs final quality assessments, and designs comprehensive implementation blueprints for new features.

zircote-plugins/refactor · 45 tokens

code-reviewer

Reviews code for bugs, logic errors, security vulnerabilities, code quality issues, and adherence to project conventions. Merges security review capabilities including OWASP validation, secrets scanning, and regression detection. Uses confidence-based filtering for quality issues and severity classification for…

zircote-plugins/refactor · 65 tokens

refactor-code

Code implementation specialist for refactoring workflows. Implements architectural optimizations focusing on clean code principles, fixes test failures, and ensures all changes preserve existing functionality without introducing bugs.

zircote-plugins/refactor · 37 tokens

code-explorer

Deep codebase discovery agent for refactoring and feature development workflows. Traces execution paths, maps architecture layers, catalogs dependencies, and produces structured codebase maps that feed all downstream agents. Runs as Phase 0.5 in refactoring or as parallel explorers in feature development.

zircote-plugins/refactor · 59 tokens

feature-code

Implementation specialist for new feature development. Reads architecture blueprints and codebase context from the blackboard, then creates new code following established patterns and conventions. Designed for feature-dev workflows.

zircote-plugins/refactor · 39 tokens