skills/linux-notes/SKILL.md
Manage notes on Linux via simple markdown files in a notes directory. Create, view, edit, delete, search, and list notes. Use when a user asks FRIDAY to add a note, list notes, search notes, or manage notes on Linux.
npx skillsauth add balaraj74/f.r.i.d.a.y linux-notesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use simple bash commands to manage markdown notes in ~/friday-notes/. This is a Linux alternative to Apple Notes.
Create the notes directory:
mkdir -p ~/friday-notes
find ~/friday-notes -name "*.md" -type f -printf "%T@ %p\n" | sort -rn | cut -d' ' -f2- | head -20
cat ~/friday-notes/note-name.md
grep -ril "search query" ~/friday-notes/
grep -rin "search query" ~/friday-notes/
cat > ~/friday-notes/$(date +%Y%m%d-%H%M%S)-note-title.md << 'EOF'
# Note Title
Note content goes here...
EOF
echo "# Quick Note Title" > ~/friday-notes/$(date +%Y%m%d-%H%M%S)-quick-note.md
echo "" >> ~/friday-notes/$(date +%Y%m%d-%H%M%S)-quick-note.md
echo "Note content here" >> ~/friday-notes/$(date +%Y%m%d-%H%M%S)-quick-note.md
echo "" >> ~/friday-notes/note-name.md
echo "Additional content" >> ~/friday-notes/note-name.md
nano ~/friday-notes/note-name.md
vim ~/friday-notes/note-name.md
rm ~/friday-notes/note-name.md
mkdir -p ~/friday-notes/.trash
mv ~/friday-notes/note-name.md ~/friday-notes/.trash/
mkdir -p ~/friday-notes/work
mkdir -p ~/friday-notes/personal
mkdir -p ~/friday-notes/ideas
mv ~/friday-notes/note-name.md ~/friday-notes/work/
ls -la ~/friday-notes/work/
find ~/friday-notes -name "*.md" -type f | wc -l
find ~/friday-notes -name "*.md" -type f -mtime -7
grep -l "important" ~/friday-notes/*.md
~/friday-notes/.cp -r ~/friday-notes ~/backup/.development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Control VS Code from the terminal. Open files, run commands, manage extensions, use the integrated terminal, interact with Copilot, and automate editor tasks. Use when a user asks FRIDAY to work with VS Code, edit files, or run VS Code commands.
tools
Start voice calls via the FRIDAY voice-call plugin.