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.
npx skills add tdimino/claude-code-minoan --skill disc-forgegit clone --depth 1 https://github.com/tdimino/claude-code-minoanWrote 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.
[](https://agentmods.dev/skills/tdimino/claude-code-minoan/disc-forge)<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/disc-forge"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/disc-forge/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.
<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/disc-forge"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/disc-forge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Rogue Agent · line 87 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00096 | $0.02967 |
| Opus 5 | $0.00048 | $0.01484 |
| Sonnet 5 | $0.00019 | $0.00593 |
| Haiku 4.5 | $0.00010 | $0.00297 |
Grade A, and why
disc-forge 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.
disc-forge
Automated CD burning for macOS via cdrdao. Two modes:
- Audio CD (default) — Red Book, plays in any CD player, 80-min capacity, CD-Text from ID3 tags
- MP3 data CD (
--mp3-disc) — plays in MP3-capable stereos (most 2005+ car head units), 700 MB capacity, ISO9660+Joliet filesystem
Turns "burn the BSG soundtrack to a CD" or "make an MP3 disc of these mantras" into a single command.
When to Use
- User asks to burn an album, soundtrack, or playlist to an audio CD for a car stereo / home stereo
- Source music lives on Hoodrat HDD (Mac Mini) or in a local folder
- A USB CD burner is plugged into the current Mac
- User wants either a Red Book audio CD or an MP3 data CD
Out of scope: DVD burning, CD ripping (use XLD — see ~/.claude/agent_docs/music.md), multi-session discs, DDP mastering, mixed-mode discs (audio + data on one disc).
Quick Start
Burn a full album from Hoodrat HDD with one command:
python3 ~/.claude/skills/disc-forge/scripts/burn_audio_cd.py \
--source "mac-mini-ts:/Volumes/Hoodrat HDD/Musica/BSG.S1 - OST/" \
--name BSG-S1
That runs the full pipeline: preflight → tar-over-SSH stage → duration check → parallel WAV conversion → TOC build with CD-Text → cdrdao write at 16x → cleanup → eject. Takes ~5–7 minutes for an 80-minute disc. cdrdao streams its own progress to stdout; a 10-second countdown precedes the actual burn so Ctrl-C still aborts safely.
Before the first burn, make sure a blank writable CD-R or CD-RW is in the drive — preflight.py will abort early if not.
The Pipeline
burn_audio_cd.py is the master orchestrator. It chains the stage scripts in sequence and halts on any failure, preserving staging for debugging. Each script is also independently usable.
Shared stages (both modes):
| Stage | Script | What it does |
|---|---|---|
| 1 | preflight.py |
Verifies cdrdao + ffmpeg, drive reachable, blank writable disc inserted. Retries drutil status for ~3 s after cdrdao drive-info (which briefly locks the drive). Surfaces the Unsupported drutil label as an informational note — cdrdao bypasses DiscRecording. |
| 2 | stage_tracks.py |
Pulls source files. Remote sources (mac-mini-ts:/path) use tar-over-SSH, not rsync. Local sources use cp. Filters to one format (default mp3) to dedupe MP3+WMA and MP3+M4A siblings. |
| final | cdrdao write |
Actual burn. --speed 16 --eject by default. Streams progress. |
What ships with it
12 files 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.
- README.md 8.0 KB
- references/burn-app-fallback.md 3.0 KB
- references/cdrdao-toc-format.md 3.3 KB
- references/gotchas.md 7.9 KB
- references/hoodrat-layout.md 1.8 KB
- scripts/build_data_toc.py 3.2 KB runs code
- scripts/build_toc.py 5.3 KB runs code
- scripts/burn_audio_cd.py 9.9 KB runs code
- scripts/check_duration.py 4.2 KB runs code
- scripts/convert_to_wav.py 4.4 KB runs code
- scripts/preflight.py 5.0 KB runs code
- scripts/stage_tracks.py 4.6 KB runs code
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.
- 8d ago First seen · 182 lines · 96 tokens per session scan A 1d66de9f1208
disc-forge is a skill published in the GitHub repository tdimino/claude-code-minoan (41 stars, last pushed yesterday), licensed MIT. It adds 96 tokens to every session and 2,967 once invoked, about $0.0005 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-09-03.
Other skills, from other repositories
art-director
Orchestrate iterative visual style searches with branch prompts, decision graphs, feedback loops, and final direction selection.
canvas
Create, inspect, and update Obsidian JSON Canvas boards with text, file, link, group, and edge nodes. Use for canvas status, canvas lists, visual maps, zones, spatial layouts, adding vault notes or media to a .canvas file, and requests such as create canvas, add to canvas, or put this on the canvas.
app-builder
Build and edit small, personal visual tools and artifacts — dashboards, trackers, calculators, data visualizations, charts, simple landing pages, and slide decks the user wants for THEMSELVES. This is the right skill whenever the user asks to "visualize this," "make a chart," or "build an artifact" for their own use…
fish-audio
Generate expressive audio clips using Fish Audio S2 TTS with bracket emotion tags. Record voice memos, narration, audio messages, or any spoken content.
voice-setup
Complete voice configuration in chat - desktop Talk and PTT shortcuts, microphone permissions, ElevenLabs/Deepgram TTS, and troubleshooting.
vellum-avatar
Customize the assistant's avatar - build a native character, upload an image, or generate one with AI.