minutes-cleanup

Solid

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.

AI & Automation 1,241 stars 131 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /minutes-cleanup Help the user manage disk space and organize old recordings. ## Check current usage ```bash # Total disk usage for meetings du -sh ~/meetings/ # Breakdown: audio vs transcripts echo "Audio files:"; find ~/meetings -name "*.wav" -exec du -ch {} + 2>/dev/null | tail -1 echo "Transcripts:"; find ~/meetings -name "*.md" -exec du -ch {} + 2>/dev/null | tail -1 # Count by type echo "Meetings: $(find ~/meetings -maxdepth 1 -name '*.md' | wc -l | tr -d ' ')" echo "Memos: $(find ~/meetings/memos -maxdepth 1 -name '*.md' 2>/dev/null | wc -l | tr -d ' ')" # Largest files find ~/meetings -type f -exec du -sh {} \; | sort -rh | head -10 ``` Present this to the user before taking any action. ## Common cleanup tasks ### Delete WAV originals (biggest space saver) After transcription, the original `.wav` files are no longer needed for search or recap. They only matter if you want to re-transcribe with a better model. ```bash # List WAV files and their sizes find ~/meetings -name "*.wav" -exec du -sh {} \; # Delete them (ask user for confirmation first!) find ~/meetings -name "*.wav" -delete ``` ### 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 -maxdepth 1 -name "*.md" -mtime +90 # Move them (confirm with user first) find ~/meetings -maxdepth 1 -name "*.md" -mtime +90 -exec mv {} ~/meetings/archive/ \; ``` Archived meetings won't appear in `mi...

Details

Author
silverstein
Repository
silverstein/minutes
Created
2 months ago
Last Updated
today
Language
Rust
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

minutes-list

List recent meetings and voice memos. Use when the user asks "what meetings did I have", "show my recent recordings", "any meetings today", "list my voice memos", or wants an overview of their meeting history. Also use when they need to find a specific meeting by browsing rather than searching.

1,241 Updated today
silverstein
AI & Automation Listed

meeting-cleanup

Batch process multiple meetings from a single day. Consolidates action items and insights across meetings.

0 Updated 1 weeks ago
talgacapri
AI & Automation Solid

minutes-record

Start or stop recording a meeting, call, or voice memo. Use this whenever the user says "record", "start recording", "capture this meeting", "stop recording", "I'm in a meeting", "take notes on this call", or wants to transcribe live audio. Also use when they ask about recording status or want to know if something is being recorded.

1,241 Updated today
silverstein
AI & Automation Solid

minutes-recap

Generate a daily digest of today's meetings and voice memos — key decisions, action items, and themes across all recordings. Use when the user asks "recap my day", "what happened in my meetings today", "daily summary", "what did I discuss today", "any action items from today", or wants a consolidated view of the day's conversations.

1,241 Updated today
silverstein
AI & Automation Solid

minutes-debrief

Post-meeting debrief — analyzes what happened, compares outcomes to your prep intentions, tracks decision evolution. Use when the user says "debrief", "what just happened in that meeting", "what did we decide", "debrief that call", "post-meeting", "what changed", or right after stopping a recording.

1,241 Updated today
silverstein