configure-audit

configure-audit is a skill for Claude Code from WaterplanAI/agentic-config. It costs 0 tokens per session (536 once invoked), scanned A, original, MIT.

An interactive setup tool for ac-audit, which records agent tool activity. It reads the current YAML settings and lets you change where logs go, file permissions, display limits, and displayed tools.

In plain words
What is it for?
Use it to create or update project-level or user-level audit.yaml configuration.
Why use it?
It removes the need to edit audit.yaml by hand and checks settings such as maximum log-file permissions.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: reads .claude/ paths; mentions Claude Code.

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 ac-audit plugin — 1 skill, 1 hook shipped together

Good fit Use it to create or update project-level or user-level audit.yaml configuration.

Compare 6 skills from other repositories ↓
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 WaterplanAI/agentic-config
Claude Code
/plugin install ac-audit

Made for: Claude Code.

Or install ac-audit, the plugin that ships this one along with the rest of its 1 skill, 1 hook.

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 configure-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/configure-audit/github.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/configure-audit)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/configure-audit"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/configure-audit/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 configure-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/configure-audit"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/configure-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 536 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.00000 $0.00536
Opus 5 $0.00000 $0.00268
Sonnet 5 $0.00000 $0.00107
Haiku 4.5 $0.00000 $0.00054

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

Security

Grade A, and why

configure-audit 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 9d 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/ac-audit/skills/ac-audit/configure-audit/SKILL.md · 62 lines

How it starts

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

configure-audit

Interactive audit.yaml configuration for ac-audit plugin.

Trigger

/configure-audit or /ac-audit:configure-audit

Behavior

  1. Read the 3-tier config resolution and display current effective config:

    • Plugin defaults: ${CLAUDE_PLUGIN_ROOT}/config/audit.default.yaml
    • User-level: ~/.claude/audit.yaml
    • Project-level: ./audit.yaml (relative to project root)
  2. Display current effective settings:

    • log_dir: audit log output directory
    • log_permissions: file permissions for log files (max 0o600)
    • max_words: word truncation limit for systemMessage display
    • display_tools: list of tools that trigger systemMessage in Claude Code UI
  3. Ask user which setting(s) to customize.

  4. For each selected setting, present current value and ask for changes:

    • log_dir: accept a directory path (supports ~ expansion)
    • log_permissions: accept octal value, validate <= 0o600
    • max_words: accept positive integer
    • display_tools: show current list, ask for additions/removals
  5. Ask target location: project-level (./audit.yaml) or user-level (~/.claude/audit.yaml).

  6. Generate or update the YAML file at chosen location.

    • Only write overrides (do not duplicate defaults).
    • Deep-merge with existing content if file already exists.
  7. Validate by loading the merged config and displaying effective result.

Steps

1. Read ${CLAUDE_PLUGIN_ROOT}/config/audit.default.yaml
2. Read ~/.claude/audit.yaml (if exists)
3. Read ./audit.yaml (if exists)
4. Display merged effective config as table
5. Prompt: "Which setting to customize? (log_dir/log_permissions/max_words/display_tools/all)"
6. For selected setting(s):
   a. Show current value
   b. Ask for new value (or skip)
   c. For display_tools list, show current and ask for additions/removals
7. Prompt: "Save to project-level or user-level? (project/user)"
8. Write YAML with only the overrides
9. Re-read and display new effective config

Constraints

  • Never modify plugin defaults (audit.default.yaml)
  • Only write overrides -- do not duplicate default values
  • Validate log_permissions does not exceed 0o600
  • Validate max_words is a positive integer
  • Existing file content must be preserved (deep-merge on write)

Read the full file on GitHub · 62 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. 9d ago First seen · 62 lines · 0 tokens per session scan A 0364890786d6

Subscribe to this mod's changes

configure-audit is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 536 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.