feature-flag-auditor

feature-flag-auditor is an agent for Claude Code from hmcts/agentic-plugins-marketplace. It costs 326 tokens per session (1,580 once invoked), scanned A, original, MIT.

An automated reviewer for configuration-based feature toggles in service-cp repositories. These toggles are simple settings read from application or deployment configuration, not controls from a live feature-flag service.

In plain words
What is it for?
Use it during code review or before a release to inspect toggles added, removed, or read in the code, and to identify flags that may be safe to delete.
Why use it?
Feature toggles can be placed incorrectly or left behind after a rollout, making code and configuration harder to maintain. The reviewer checks the repository against documented placement rules and finds possible obsolete toggles.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the hmcts-apim-sdlc-orchestrator plugin — 8 skills, 11 agents, 3 hooks shipped together

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/hmcts/agentic-plugins-marketplace/feature-flag-auditor
Clone the repo
git clone --depth 1 https://github.com/hmcts/agentic-plugins-marketplace

Made for: Claude Code.

Or install hmcts-apim-sdlc-orchestrator, the plugin that ships this one along with the rest of its 8 skills, 11 agents, 3 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 feature-flag-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/hmcts/agentic-plugins-marketplace/feature-flag-auditor.svg)](https://agentmods.dev/agents/hmcts/agentic-plugins-marketplace/feature-flag-auditor)
Your own site
<a href="https://agentmods.dev/agents/hmcts/agentic-plugins-marketplace/feature-flag-auditor"><img src="https://agentmods.dev/badge/agents/hmcts/agentic-plugins-marketplace/feature-flag-auditor.svg" alt="Measured on agentmods" height="20"></a>
Per session 326 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,580 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.00326 $0.01580
Opus 5 $0.00163 $0.00790
Sonnet 5 $0.00065 $0.00316
Haiku 4.5 $0.00033 $0.00158

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

Security

Grade A, and why

feature-flag-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 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/agents/hmcts-apim-sdlc-orchestrator/agents/feature-flag-auditor.md · 126 lines

How it starts

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

Agent: Feature Flag Auditor

Role

Audit @Value-injected feature toggles in a service-cp-* repo against the five placement rules already defined in context/service-shared.md (T1–T5), and flag flag debt before it accrues. This closes a real gap: the pipeline documents T1–T5 in detail (implementation.md, code-reviewer.md) but nothing actually sweeps a repo for violations or for flags that are safe to delete.

Important — this plugin has no dynamic flag service. Toggles here are plain @Value("${some.toggle:false}") booleans read from application.yaml / Helm values — there is no LaunchDarkly/Unleash/Togglz-style runtime dashboard to query. "Rolled out" means the toggle's configured value is the same (and has been for a while) across every environment's config, not a live percentage. Do not describe or recommend a flag service this codebase doesn't have.

Hub-and-spoke, not a numbered stage. Invoke from code-reviewer on any PR that adds, removes, or reads a @Value toggle, or standalone as a periodic sweep before a release.

Inputs

  • The service-cp-* repo's source (src/main/java/uk/gov/hmcts/cp/)
  • application.yaml and any environment-specific values files (Helm values-*.yaml / cp-vp-aks-deploy's vp-config/services_values.yml for this service, if accessible)
  • context/service-shared.md — the T1–T5 rule definitions

Output

A flag audit report: every @Value toggle found, its T1–T5 compliance, and a recommendation (keep / clean up placement / delete as flag debt).


Instructions

Step 1 — Find every toggle

grep -rn '@Value("\${.*:.*}")' src/main/java/uk/gov/hmcts/cp/ | grep -i -E 'boolean|toggle|enabled|flag'

Cross-reference against the field type — only boolean/Boolean fields are toggles for this audit; other @Value fields (URLs, timeouts) are out of scope.

Step 2 — Check T1–T5 per toggle

For each toggle found, walk the same checklist code-reviewer.md §C already applies to a single PR — apply it repo-wide here:

Read the full file on GitHub · 126 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 · 126 lines · 326 tokens per session scan A 11a5a7beaa6d

Subscribe to this mod's changes

feature-flag-auditor is an agent published in the GitHub repository hmcts/agentic-plugins-marketplace (3 stars, last pushed yesterday), licensed MIT. It adds 326 tokens to every session and 1,580 once invoked, about $0.0016 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.

Related

Other agents, from other repositories

cpp-reviewer

Expert C++ code reviewer specializing in memory safety, modern C++ idioms, concurrency, and performance. Use for all C++ code changes. MUST BE USED for C++ projects.

affaan-m/ECC · 41 tokens

reviewer

Read-only reviewer for an SDD implementation — checks that the change satisfies the acceptance criteria it claims (stage 1) and meets quality/convention/edge-case bars (stage 2). Use after a task (or the whole feature) reaches GREEN, before it's considered done. It reads the diff and the upstream artifacts and reports…

genkovich/sdd · 81 tokens

atomic-auditor

Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…

damusix/atomic-claude · 169 tokens

bt6-pr-auditor

Reviews one pull request in a BT6 codebase for correctness, research integrity, security, verification quality, and merge readiness.

elder-plinius/T3MP3ST · 32 tokens

Reviewer

Mandatory fast reviewer: validates every agent delegation output before acceptance. Checks acceptance criteria, file partitions, regressions, type safety, security basics.

monkilabs/opencastle · 30 tokens

security-auditor

Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.

NeoLabHQ/context-engineering-kit · 40 tokens