โ† All skills
Tencent SkillHub ยท Developer Tools

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/fetch-notes.sh, scripts/get-user.sh, scripts/sync-to-markdown.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

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

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/fetch-notes.sh Scripts
  • scripts/get-user.sh Scripts
  • scripts/sync-to-markdown.sh Scripts