ac-audit-configure-audit

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

An interactive setup workflow for pi-ac-audit's audit.yaml file, which controls audit-log settings. It shows the effective settings from package, user, and project configuration and can update selected values.

In plain words
What is it for?
Use it to change the audit-log directory, file permissions, word limit, or tools displayed in the audit interface at project or user level.
Why use it?
It makes configuration differences visible and validates changes such as log-file permissions and numeric limits. This helps avoid editing the wrong configuration layer or using unsafe values.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is 1. Read ../../assets/config/audit.default.yaml.

Part of the agentic-config plugin — 49 skills, 1 plugin shipped together

Good fit Use it to change the audit-log directory, file permissions, word limit, or tools displayed in the audit interface at project or user level.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config
agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-audit-configure-audit

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 1 plugin.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-audit-configure-audit"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-audit-configure-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 656 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.00047 $0.00656
Opus 5 $0.00023 $0.00328
Sonnet 5 $0.00009 $0.00131
Haiku 4.5 $0.00005 $0.00066

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

Security

Grade A, and why

ac-audit-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 12d 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.

packages/pi-ac-audit/skills/ac-audit-configure-audit/SKILL.md · 70 lines

How it starts

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

Configure Audit

Interactive audit.yaml configuration for pi-ac-audit.

Compatibility Note

Use normal chat questions and confirmations for the interactive steps. Do not assume a separate prompt tool.

Trigger

/skill:ac-audit-configure-audit

Behavior

  1. Read the 3-tier config resolution and display the current effective config:
    • Package defaults: ../../assets/config/audit.default.yaml
    • User-level: ~/.claude/audit.yaml
    • Project-level: ./audit.yaml (relative to project root)
  2. Display the 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 the UI
  3. Ask which setting(s) to customize.
  4. For each selected setting, present the current value and ask for changes:
    • log_dir: accept a directory path (supports ~ expansion)
    • log_permissions: accept an octal value and validate <= 0o600
    • max_words: accept a positive integer
    • display_tools: show the current list and ask for additions/removals
  5. Ask the target location: project-level (./audit.yaml) or user-level (~/.claude/audit.yaml).
  6. Generate or update the YAML file at the chosen location.
    • Only write overrides; do not duplicate defaults.
    • Deep-merge with existing content if the file already exists.
  7. Validate by loading the merged config and displaying the effective result.

Steps

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

Read the full file on GitHub · 70 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. 12d ago First seen · 70 lines · 47 tokens per session scan A 3860fe96cbc0

Subscribe to this mod's changes

ac-audit-configure-audit is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 47 tokens to every session and 656 once invoked, about $0.0002 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.