minutes-cleanup

Featured

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,231 stars 130 forks Updated 2 days ago 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
2 days ago
Language
Rust
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category