meetings-cleanup

Installation
SKILL.md

meetings-cleanup

Help the user manage disk space and organize old recordings.

Check current usage

# Total disk usage for meetings
du -sh ~/vault/meetings/

# Breakdown: audio vs transcripts
echo "Audio files:"; find ~/vault/meetings -name "*.wav" -exec du -ch {} + 2>/dev/null | tail -1
echo "Transcripts:"; find ~/vault/meetings -name "*.md" -exec du -ch {} + 2>/dev/null | tail -1

# Count by type
echo "Meetings: $(find ~/vault/meetings -maxdepth 1 -name '*.md' | wc -l | tr -d ' ')"
echo "Memos: $(find ~/vault/meetings/memos -maxdepth 1 -name '*.md' 2>/dev/null | wc -l | tr -d ' ')"
Installs
2
GitHub Stars
130
First Seen
Jul 18, 2026
meetings-cleanup — flonat/flonat-research