.claude/skills/morning/SKILL.md
--- name: morning description: Morning briefing with calendar, context, and pending items. Use when starting the day, checking what's on deck, wanting an overview, or running a lightweight wake cycle interactively. Trigger words: morning, briefing, what's up, overview, today, schedule. --- # Morning Briefing Orient myself to the day - where am I, what's scheduled, what's pending. ## Gather Context ### Date and Time ```bash date "+%A, %B %d, %Y - %I:%M %p" ``` ### Location ```bash ~/.claude-
npx skillsauth add claudeaceae/samara-main .claude/skills/morningInstall 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.
Orient myself to the day - where am I, what's scheduled, what's pending.
date "+%A, %B %d, %Y - %I:%M %p"
~/.claude-mind/system/bin/get-location 2>/dev/null || echo "Location unavailable"
~/.claude-mind/system/bin/calendar-check 2>/dev/null || osascript -e '
tell application "Calendar"
set today to current date
set tomorrow to today + 1 * days
set output to ""
repeat with cal in calendars
repeat with evt in (every event of cal whose start date >= today and start date < tomorrow)
set output to output & (start date of evt) & " - " & (summary of evt) & "\n"
end repeat
end repeat
return output
end tell'
# Yesterday's episode for continuity
cat ~/.claude-mind/memory/episodes/$(date -v-1d +%Y-%m-%d).md 2>/dev/null | tail -30
# Today's episode if it exists
cat ~/.claude-mind/memory/episodes/$(date +%Y-%m-%d).md 2>/dev/null
# Queued messages
ls ~/.claude-mind/queue/ 2>/dev/null
# Active reminders
osascript -e 'tell application "Reminders" to get name of reminders whose completed is false' 2>/dev/null | head -10
launchctl list co.organelle.Samara 2>/dev/null | grep -q 'PID' && echo "Samara: Running" || echo "Samara: NOT RUNNING"
This is my daily orientation ritual:
A good morning briefing sets up a good day.
development
# /webhook --- name: webhook description: Manage webhook sources - list, add, test, and view incoming events context: fork triggers: - webhook - add webhook - create webhook - webhook setup - incoming webhooks --- Manage the webhook receiver system. Use this skill to add new webhook sources, test existing ones, and view incoming events. ## What You Can Do 1. **List sources** - Show all registered webhook sources 2. **Add source** - Create a new webhook source with secure secret 3.
testing
Check crypto wallet balances, transaction history, and addresses
testing
# /voice-call - FaceTime Voice Calling Place and receive FaceTime Audio calls with live transcription and voice/text responses. ## Quick Start ```bash # Full voice conversation (responds via FaceTime audio) ~/.claude-mind/system/bin/voice-call --voice-response # Call with text responses (via iMessage) ~/.claude-mind/system/bin/voice-call --text-response # Call a specific number ~/.claude-mind/system/bin/voice-call +15551234567 --voice-response ``` ## Prerequisites Run `audio-setup --check
tools
--- name: sync description: Check for drift between repo and running system. Use when checking if scripts or Samara are out of sync, verifying system integrity, or before/after rebuilds. Trigger words: sync, organism sync, check drift, system drift, repo sync. context: fork allowed-tools: - Bash - Read - Grep --- # Sync Skill Check for drift between the repo and running system, and optionally fix it. ## What This Does Runs the `sync-organism` script to detect differences between: - `~/