From sundial-org-awesome-openclaw-skills-4
Syncs and retrieves voice recordings, transcripts, and AI summaries from Voicenotes.com. Supports fetching notes, syncing to markdown files, and searching transcripts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:voicenotesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Sync voice notes from [voicenotes.com](https://voicenotes.com) into the workspace.
Sync voice notes from voicenotes.com into the workspace.
export VOICENOTES_TOKEN="your-token-here"# Verify connection
./scripts/get-user.sh | jq .
# Fetch recent notes (JSON)
./scripts/fetch-notes.sh | jq '.data[:3]'
# Sync all notes to markdown files
./scripts/sync-to-markdown.sh --output-dir ./voicenotes
Fetch voice notes as JSON.
./scripts/fetch-notes.sh # All notes
./scripts/fetch-notes.sh --limit 10 # Last 10 notes
./scripts/fetch-notes.sh --since 2024-01-01 # Notes since date
Verify token and get user info.
./scripts/get-user.sh | jq '{name, email}'
Sync notes to markdown files with frontmatter.
./scripts/sync-to-markdown.sh --output-dir ./voicenotes
Output format:
---
voicenotes_id: abc123
created: 2024-01-15T10:30:00Z
tags: [idea, project]
---
# Note Title
## Transcript
The transcribed content...
## Summary
AI-generated summary...
Base URL: https://api.voicenotes.com/api/integrations/obsidian-sync
Headers required:
Authorization: Bearer {token}X-API-KEY: {token}Endpoints:
GET /user/info - User detailsGET /recordings - List voice notes (paginated)GET /recordings/{id}/signed-url - Audio download URLEach voice note contains:
recording_id - Unique identifiertitle - Note titletranscript - Full transcript textcreations[] - AI summaries, action items, etc.tags[] - User tagscreated_at / updated_at - Timestampsduration - Recording length in secondslinks.next for more pages--since to fetch only new notes since last syncnpx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Reads and searches Monologue notes via a REST API with cursor-based pagination, full-text search, and date filters. Requires MONOLOGUE_API_KEY env var.
CLI for Otter.ai transcription service. List, search, download, upload audio, get AI summaries, and sync transcripts to Twenty CRM. Automates meeting note retrieval.
Process audio recordings, meeting transcripts, podcasts, and lectures into structured Obsidian notes with action items, decisions, and glossary.