audiobook-organizer: Skill for Codex

.agents/skills/abo-bugfix/SKILL.md

abo-bugfix is a skill for Codex from jeeftor/audiobook-organizer. It costs 40 tokens per session (295 once invoked), scanned A, original, MIT.

A bug-fixing workflow for Audiobook Organizer, an application that manages audiobook files and metadata.

In plain words
What is it for?
Use it to reproduce and fix Audiobook Organizer bugs, add regression tests, update affected documentation, and run the relevant checks.
Why use it?
It keeps bug fixes focused and checks that existing behavior such as dry runs, undo, logging, metadata, and file layouts remains intact.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md; $skill-name invocation.

This is jeeftor/audiobook-organizer's own configuration. It tells Codex how to work on audiobook-organizer itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything audiobook-organizer configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jeeftor/audiobook-organizer. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jeeftor/audiobook-organizer/master/.agents/skills/abo-bugfix/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jeeftor/audiobook-organizer

Made for: 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 abo-bugfix

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeeftor/audiobook-organizer/abo-bugfix.svg)](https://agentmods.dev/skills/jeeftor/audiobook-organizer/abo-bugfix)
Your own site
<a href="https://agentmods.dev/skills/jeeftor/audiobook-organizer/abo-bugfix"><img src="https://agentmods.dev/badge/skills/jeeftor/audiobook-organizer/abo-bugfix.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 295 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.00040 $0.00295
Opus 5 $0.00020 $0.00148
Sonnet 5 $0.00008 $0.00059
Haiku 4.5 $0.00004 $0.00030

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

Security

Grade A, and why

abo-bugfix 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 7d 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/skills/abo-bugfix/SKILL.md · 26 lines

What it actually says

ABO Bugfix

You are the Audiobook Organizer bugfix engineer.

Read AGENTS.md, references/abo-assistant/common.md, and references/abo-assistant/testing.md.

Workflow

  1. Confirm or create the tracking issue with $abo-issue-create logic.
  2. Confirm git status --short --branch shows a dedicated non-master issue branch before editing.
  3. Reproduce the bug or identify an existing failing check before editing when practical.
  4. Locate the smallest responsible package boundary.
  5. Fix the root cause without unrelated cleanup.
  6. Add or update regression coverage.
  7. Update docs, CHANGELOG.md, or test/abs/test-matrix.md when the fix changes user-visible or ABS-facing behavior. For functionality or workflow changes, follow $abo-docs guidance by checking both README.md and the static docs site source under web/src/content/docs/, plus mirrored docs/ pages when present.
  8. Run the focused failing check, then the relevant repo-native checks.

For path, metadata, dry-run, undo, and rename issues, explicitly verify the behavior invariant involved.

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 26 lines · 40 tokens per session scan A f0eb00d74597

Subscribe to this mod's changes

abo-bugfix is a skill published in the GitHub repository jeeftor/audiobook-organizer (187 stars, last pushed 1mo ago), licensed MIT. It adds 40 tokens to every session and 295 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.

Related

Other skills, from other repositories

testing

Skill validation framework PLUS daily test-suite health and regression intelligence. Validates skill conformance (frontmatter, manifest coverage, resolver coverage). Runs the project test suite in tiered phases (unit / evals / integration / system health), classifies failures, and produces a regression-aware report.

garrytan/gbrain · 63 tokens

verify

Verify that a change really works before you claim completion.

Yeachan-Heo/oh-my-claudecode · 12 tokens

detect-static-dependencies

Scan C# source files for hard-to-test static dependencies — DateTime.Now/UtcNow, File., Directory., Environment., HttpClient, Console., Process., and other untestable statics. Produces a ranked report of static call sites by frequency. USE FOR: find untestable statics, scan for static dependencies, testability audit…

dotnet/skills · 143 tokens

experiment-iterative-coder

Iterative code refinement through plan → code → evaluate → refine cycles. Runs lint checks (ruff), tests (pytest), and structured self-evaluation each cycle, then diagnoses failures and refines. Decomposes complex tasks into sequential phases, iterates up to 3 times per phase (10 total). Use when: the main agent…

EvoScientist/EvoSkills · 145 tokens

testing-blocks

Use this when you have made AEM Edge Delivery Services code changes to blocks, scripts, or styles and need to validate them before opening a pull request. Covers unit testing for utilities and logic, browser testing with Playwright, linting, and guidance on what to test and how.

adobe/skills · 61 tokens

mockito-stale-mock-silent-trycatch-failure

Fix misleading Flutter/Dart test failures where expected data is empty ([]) or default values instead of the mocked response, caused by stale Mockito generated mocks or missing stubs being silently swallowed by try/catch in provider/repository code. Use when: (1) Test expects non-empty data but gets [], (2) Mock stubs…

divinevideo/divine-mobile · 186 tokens