Plaud API Claude Skill
A self-contained Claude Code skill for accessing Plaud voice recorder data (recordings, transcripts, AI summaries).
Contents
| File | Purpose |
|---|---|
SKILL.md |
Main skill document with credential tutorial |
plaud_client.py |
CLI tool for Plaud API access |
PLAUD_API.md |
Detailed API documentation |
requirements.txt |
Python dependencies |
.env.example |
Template for credentials |
Installation
Option 1: Symlink (Recommended for Development)
ln -s /path/to/plaud-api ~/.claude/skills/plaud-api
Option 2: Copy
cp -r /path/to/plaud-api ~/.claude/skills/
Quick Setup
-
Install Python dependencies:
pip install -r ~/.claude/skills/plaud-api/requirements.txt -
Copy the example environment file:
cd ~/.claude/skills/plaud-api cp .env.example .env -
Follow the credential tutorial in
SKILL.mdto obtain your Plaud API token -
Update
.envwith your actual credentials -
Test with:
cd ~/.claude/skills/plaud-api python3 plaud_client.py list
Usage
In Claude Code, invoke with:
/plaud-api- Full skill with setup tutorial/plaud- Alias/plaud-recordings- Alias
Requirements
- Python 3.x
requestsandpython-dotenvpackages (see requirements.txt)- Plaud account with web access at https://web.plaud.ai


