Awesome-openclaw-skills voicenotes
Sync and access voice notes from Voicenotes.com. Use when the user wants to retrieve their voice recordings, transcripts, and AI summaries from Voicenotes. Supports fetching notes, syncing to markdown, and searching transcripts.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/voicenotes" ~/.claude/skills/sundial-org-awesome-openclaw-skills-voicenotes && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/voicenotes" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-voicenotes && rm -rf "$T"
manifest:
skills/voicenotes/SKILL.mdsource content
Voicenotes Integration
Sync voice notes from voicenotes.com into the workspace.
Setup
- Get access token from: https://voicenotes.com/app?obsidian=true#settings
- Set environment variable:
export VOICENOTES_TOKEN="your-token-here"
Quick Start
# 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
Scripts
fetch-notes.sh
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
get-user.sh
Verify token and get user info.
./scripts/get-user.sh | jq '{name, email}'
sync-to-markdown.sh
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...
API Reference
Base URL:
https://api.voicenotes.com/api/integrations/obsidian-sync
Headers required:
Authorization: Bearer {token}X-API-KEY: {token}
Endpoints:
- User detailsGET /user/info
- List voice notes (paginated)GET /recordings
- Audio download URLGET /recordings/{id}/signed-url
Data Structure
Each voice note contains:
- Unique identifierrecording_id
- Note titletitle
- Full transcript texttranscript
- AI summaries, action items, etc.creations[]
- User tagstags[]
/created_at
- Timestampsupdated_at
- Recording length in secondsduration
Tips
- Notes are paginated; check
for more pageslinks.next - Use
to fetch only new notes since last sync--since - AI creations include summaries, todos, and custom prompts
- Rate limited to ~60 requests/minute