skills$openclaw/voicenotes
shawnhansen6.7k

by shawnhansen

voicenotes – OpenClaw Skill

voicenotes is an OpenClaw Skills integration for writing workflows. 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.

6.7k stars9.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namevoicenotes
descriptionSync 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. OpenClaw Skills integration.
ownershawnhansen
repositoryshawnhansen/voicenotes
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @shawnhansen/voicenotes
last updatedFeb 7, 2026

Maintainer

shawnhansen

shawnhansen

Maintains voicenotes in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
scripts
fetch-notes.sh
1.0 KB
get-user.sh
444 B
sync-to-markdown.sh
1.9 KB
_meta.json
277 B
SKILL.md
2.3 KB
SKILL.md

name: voicenotes description: 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.

Voicenotes Integration

Sync voice notes from voicenotes.com into the workspace.

Setup

  1. Get access token from: https://voicenotes.com/app?obsidian=true#settings
  2. 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:

  • GET /user/info - User details
  • GET /recordings - List voice notes (paginated)
  • GET /recordings/{id}/signed-url - Audio download URL

Data Structure

Each voice note contains:

  • recording_id - Unique identifier
  • title - Note title
  • transcript - Full transcript text
  • creations[] - AI summaries, action items, etc.
  • tags[] - User tags
  • created_at / updated_at - Timestamps
  • duration - Recording length in seconds

Tips

  • Notes are paginated; check links.next for more pages
  • Use --since to fetch only new notes since last sync
  • AI creations include summaries, todos, and custom prompts
  • Rate limited to ~60 requests/minute
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install voicenotes?

Run openclaw add @shawnhansen/voicenotes in your terminal. This installs voicenotes into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/shawnhansen/voicenotes. Review commits and README documentation before installing.