automation-audit-ops

automation-audit-ops is a skill for Claude Code, Codex from pekral/cursor-rules. It costs 78 tokens per session (1,890 once invoked), scanned A, original, MIT.

A read-only inventory of the automation in a software repository, including scheduled jobs, code-hosting workflows, hooks, servers, scripts, installers, and the skills catalogue.

In plain words
What is it for?
Use it to audit repository automation and produce evidence-based recommendations to keep, merge, remove, or fix each item.
Why use it?
It distinguishes working, broken, redundant, and unverified automation before changes are made.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

Good fit Use it to audit repository automation and produce evidence-based recommendations to keep…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pekral/cursor-rules/automation-audit-ops
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.

Any agent
npx skills add pekral/cursor-rules --skill automation-audit-ops
Clone the repo
git clone --depth 1 https://github.com/pekral/cursor-rules

Made for: Claude Code, Codex.

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 automation-audit-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/pekral/cursor-rules/automation-audit-ops.svg)](https://agentmods.dev/skills/pekral/cursor-rules/automation-audit-ops)
Your own site
<a href="https://agentmods.dev/skills/pekral/cursor-rules/automation-audit-ops"><img src="https://agentmods.dev/badge/skills/pekral/cursor-rules/automation-audit-ops.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,890 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.00078 $0.01890
Opus 5 $0.00039 $0.00945
Sonnet 5 $0.00016 $0.00378
Haiku 4.5 $0.00008 $0.00189

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

Security

Grade A, and why

automation-audit-ops 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.

skills/automation-audit-ops/SKILL.md · 85 lines

How it starts

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

Constraints

  • Apply @rules/reports/general.mdc — any report published to an issue tracker follows the assignment language; code identifiers, file paths, workflow names, and command output stay verbatim.
  • Apply @rules/compound-engineering/general.mdc — a recurring breakage or a confirmed redundancy is a durable lesson; recommend recording it in the project's own memory, never in this shared package.
  • Apply @rules/git/general.mdc — use gh for GitHub Actions run history; if no GitHub tool is available, stop and report that, do not guess run state.
  • Read-only skill — never modify, stage, commit, push, run installers, trigger workflows, or change any setting. Reading the working tree, run logs, and config is allowed; mutating anything is not. The only output is the inventory plus the keep/merge/cut/fix report.
  • Evidence-first — never claim an automation is live, authenticated, or working just because a config or skill references it. Every claim cites proof: a file path with line, a workflow run id/conclusion, a log line, or the exact command output that produced it.
  • Flag ambiguity, do not assume. When proof is missing or contradictory, mark the item UNVERIFIED and state what would confirm it — never upgrade a guess to a fact.
  • Do not invent automations. Catalog only surfaces that actually exist in the repo or the configured environment.

Use when

  • You are about to add, rewrite, or delete an automation and need to know what already exists and whether it works.
  • CI, a hook, an MCP server, or a composer script is suspected broken, stale, or duplicated and you need an evidence-backed verdict before touching it.
  • The automation surface has grown organically and you want a keep/merge/cut/fix decision set across the whole repo.

Execution

Number each finding and carry its proof through to the report. Work surface by surface.

  1. Enumerate the surfaces. Build the raw catalog from these locations (skip a surface only after confirming it is absent):
    • GitHub Actions — every file in .github/workflows/ (triggers, jobs, steps).
    • Claude Code config & hooks.claude/settings.json, .claude/settings.local.json, and any hooks blocks within them; project skill rules under .claude/rules/ and rules/.
    • MCP servers — any mcpServers block in .mcp.json, .claude/settings*.json, or other configured JSON.
    • Composer scripts — the scripts map in composer.json (build, check, fix, analyse, skill-check, security-audit, test:coverage, normalize/pint/rector/phpcs entries).
    • Bundled CLI installerbin/cursor-rules and the install/sync logic it drives.
    • Skills catalogskills/*/SKILL.md and their bundled scripts/, treated as automations themselves.
    • Scheduler / cron — any cron entry, Laravel scheduler definition, or .claude/scheduled_tasks* lock/registry.
  2. Classify live state per item. Assign exactly one state, each backed by proof:
    • LIVE — confirmed running/passing: a recent successful workflow run, a command you executed returning success, or a hook observably firing.
    • CONFIGURED-UNVERIFIED — defined in config but no proof it ran or succeeded (no run history, no log, unconfirmed credential).
    • BROKEN — proof of active failure: failed run conclusion, non-zero command exit, missing referenced file/binary, malformed config.
    • AUTH-OUTAGE — defined and otherwise sound but blocked by a missing/expired token, secret, or MCP auth (cite the missing key, never its value).
    • STALE — references files, scripts, actions, or services that no longer exist, or pinned to a removed version.
    • MISSING — a capability the repo clearly needs (e.g. a quality gate exists in composer check but no workflow enforces it on PRs) with no automation covering it.
  3. Trace proof for each claim. For GitHub Actions, read run conclusions via gh run list --workflow <file> / gh run view. For composer scripts, inspect the script body and any binary it calls; only mark LIVE if you ran it read-only or have a CI log proving it passed — never from the script name alone. For hooks/MCP, cite the exact config block and the auth/binary it depends on. Record the proof reference inline with the finding.
  4. Detect overlap and redundancy. Cross-map surfaces that do the same work (e.g. a quality check duplicated between a workflow step and a composer script, two workflows triggering on the same event, two skills covering the same task). For each overlap, identify the canonical owner and the duplicate.
  5. Classify each finding by problem-type before recommending: active-breakage, auth-outage, redundancy, or missing-capability. This drives the keep/merge/cut/fix decision.
  6. Recommend keep / merge / cut / fix per item, justified only by the proof gathered. Never recommend deleting an item marked CONFIGURED-UNVERIFIED — recommend verifying it first.

Read the full file on GitHub · 85 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 · 85 lines · 78 tokens per session scan A 463d45e9ea8b

Subscribe to this mod's changes

automation-audit-ops is a skill published in the GitHub repository pekral/cursor-rules (6 stars, last pushed 6d ago), licensed MIT. It adds 78 tokens to every session and 1,890 once invoked, about $0.0004 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 skills, from other repositories

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens

skill-benchmark

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

HoangNguyen0403/agent-skills-standard · 16 tokens

browse-and-evaluate

Use when exploring the ai-agent-skills catalog to find, compare, and evaluate skills before installing. Always use --fields to limit output size and --dry-run before committing to an install.

MoizIbnYousaf/Ai-Agent-Skills · 43 tokens

render-airdrop-carousel

Assemble a viral iOS "AirDrop" notification-carousel video ad (≈6–8s, 9:16) from a brand line plus 6–16 real product photos — a native AirDrop share-sheet card ("Brand would like to share a · Decline / Accept") springs up and its preview window CYCLES through the products, landing on a range/lineup payoff with an…

gooseworks-ai/goose-skills · 207 tokens

render-3d-product-showcase

Assemble a premium 3D product-showcase ad from a config — four beat clips (an orbiting hero rotation, a macro push-in, a physics reveal, a typographic close) normalized to the brand-color canvas, hard-concatenated in order, closed on a deterministic Playwright brand end card, and mixed under one instrumental bed at…

gooseworks-ai/goose-skills · 159 tokens