# Send Voicenotes to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "voicenotes",
    "name": "Voicenotes",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/shawnhansen/voicenotes",
    "canonicalUrl": "https://clawhub.ai/shawnhansen/voicenotes",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/voicenotes",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voicenotes",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch-notes.sh",
      "scripts/get-user.sh",
      "scripts/sync-to-markdown.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "voicenotes",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T17:49:50.189Z",
      "expiresAt": "2026-05-17T17:49:50.189Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voicenotes",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voicenotes",
        "contentDisposition": "attachment; filename=\"voicenotes-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "voicenotes"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/voicenotes"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/voicenotes",
    "downloadUrl": "https://openagent3.xyz/downloads/voicenotes",
    "agentUrl": "https://openagent3.xyz/skills/voicenotes/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voicenotes/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voicenotes/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: shawnhansen
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T17:49:50.189Z
- Expires at: 2026-05-17T17:49:50.189Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/voicenotes)
- [Send to Agent page](https://openagent3.xyz/skills/voicenotes/agent)
- [JSON manifest](https://openagent3.xyz/skills/voicenotes/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/voicenotes/agent.md)
- [Download page](https://openagent3.xyz/downloads/voicenotes)