Agent skill · Workflow & Productivity

minutes-cleanup

Manage old recordings — find large files, archive old meetings, delete processed originals. Use when the user says "clean up recordings", "how much space are meetings using", "delete old recordings", "archive meetings", "manage meeting storage", or asks about disk space from minutes.

silversteingithub.com/silversteinGitHub ↗
claude-codeMIT
Install
npx skills add silverstein/minutes --skill minutes-cleanup --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Requires: opencode
Path: .opencode/skills/minutes-cleanup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,410
Language: Rust

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /minutes-cleanup Help the user manage disk space and organize old recordings. Minutes is transcript-first: markdown notes and structured memory are durable, while raw audio is a temporary recovery/reprocessing layer unless pinned. ## Check current usage ```bash minutes storage minutes storage --json ``` Present this to the user before taking any action. ## Common cleanup tasks ### Preview raw-audio cleanup After transcription, the original audio files are no longer needed for search or recap. They only matter if you want to re-transcribe with a better model or debug recovery. Cleanup is preview-only unless `--apply` is passed. ```bash # Use the configured retention policy minutes cleanup # Try a shorter successful-audio window minutes cleanup --older-than 14d # Machine-readable preview for agents minutes cleanup --json ``` ### Delete raw audio candidates Only apply cleanup after showing the preview and getting explicit confirmation. ```bash minutes cleanup --apply minutes cleanup --older-than 14d --apply ``` ### Archive old meetings Move meetings older than N days to an archive folder: ```bash mkdir -p ~/meetings/archive # Find meetings older than 90 days find ~/meetings -maxdept

What's inside
Steps it walks through
  1. Check current usage
  2. Common cleanup tasks
  3. Preview raw-audio cleanup
  4. Delete raw audio candidates
  5. Archive old meetings
  6. Clean up processed voice memos
  7. Clean up stale state
  8. Gotchas
Commands it runs
minutes storage
minutes storage --json
Use the configured retention policy
minutes cleanup
Try a shorter successful-audio window
minutes cleanup --older-than 14d
Machine-readable preview for agents
minutes cleanup --json
minutes cleanup --apply
minutes cleanup --older-than 14d --apply
More from minutes
All skills →
About this skill
What does the minutes-cleanup skill do?

Manage old recordings — find large files, archive old meetings, delete processed originals. Use when the user says "clean up recordings", "how much space are meetings using", "delete old recordings", "archive meetings", "manage meeting storage", or asks about disk space from minutes.

How do I install it?

Run `npx skills add silverstein/minutes --skill minutes-cleanup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From silverstein/minutes, a repository with 1,410 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going