Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

plaud-unofficial赞扬非官方

Agent Skill

plaud-unofficial 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

63,085

周安装

2,552

GitHub Stars

3

下载量

19,804
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plaud-unofficial(赞扬非官方)
来源仓库:https://github.com/leonardsellem/plaud-unofficial
安装命令:
openclaw skills install plaud-unofficial
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install plaud-unofficial

简介

在访问 Plaud 录音机数据(录音、文字记录、AI 摘要)时使用 - 指导凭证设置并为 plaud_client.py 提供模式

SKILL.md

name
plaud-api
description
Use when accessing Plaud voice recorder data (recordings, transcripts, AI summaries) - guides credential setup and provides patterns for plaud_client.py
aliases

Plaud API Skill

Access Plaud voice recorder data including recordings, transcripts, and AI-generated summaries.

Overview

The Plaud API provides access to:

  • Audio files: MP3 recordings from your Plaud device
  • Transcripts: Full text transcriptions with speaker diarization
  • AI summaries: Auto-generated notes and summaries

Core principle: Use plaud_client.py (included in this skill), not raw API calls. The client handles authentication, error handling, and response parsing.

When to Use This Skill

Use this skill when:

  • User mentions "Plaud", "Plaud recording", or "transcript from Plaud"
  • Need to access voice recorder data
  • Working with recordings, transcripts, or AI notes from a Plaud device

Interactive Credential Tutorial

Before using the Plaud API, you need to extract credentials from the web app.

Step 1: Navigate to Plaud Web App

Open Chrome and go to: https://web.plaud.ai

Log in with your Plaud account if not already logged in.

Step 2: Open Chrome DevTools

Press F12 (or Cmd+Option+I on Mac) to open DevTools.

Step 3: Find localStorage Values

  1. Click the Application tab in DevTools
  2. In the left sidebar, expand Local Storage
  3. Click on https://web.plaud.ai

Step 4: Copy Required Values

Find and copy these two values:

KeyDescription
tokenstrYour bearer token (starts with "bearer eyJ...")
plaud_user_api_domainAPI endpoint (e.g., "https://api-euc1.plaud.ai")

Step 5: Create .env File

Create or update the .env file in the skill directory (~/.claude/skills/plaud-api/):

# In the skill directory
cd ~/.claude/skills/plaud-api
cp .env.example .env
# Edit .env with your actual credentials

Or create it directly:

cat > ~/.claude/skills/plaud-api/.env << 'EOF'
PLAUD_TOKEN=bearer eyJ...your_full_token_here...
PLAUD_API_DOMAIN=https://api-euc1.plaud.ai
EOF

Important: Include the full token including the "bearer " prefix.

Step 6: Verify Setup

Test that credentials work:

cd ~/.claude/skills/plaud-api
python3 plaud_client.py list

If successful, you'll see a list of your recordings with file IDs, durations, and names.

First-time setup: Install dependencies if needed:

pip install -r ~/.claude/skills/plaud-api/requirements.txt

.env File Format

PLAUD_TOKEN=bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
PLAUD_API_DOMAIN=https://api-euc1.plaud.ai

Notes:

  • The token includes the "bearer " prefix
  • API domain is region-specific (EU users: api-euc1, US users may differ)

Quick Reference

All commands should be run from the skill directory (~/.claude/skills/plaud-api):

TaskCommand
List all recordingspython3 plaud_client.py list
List as JSONpython3 plaud_client.py list --json
Get file detailspython3 plaud_client.py details <file_id>
Get details as JSONpython3 plaud_client.py details <file_id> --json
Download audiopython3 plaud_client.py download <file_id>
Download to pathpython3 plaud_client.py download <file_id> -o output.mp3
Download all filespython3 plaud_client.py download-all -o ./recordings
Get file tags/folderspython3 plaud_client.py tags

Common Patterns

Fetch Recent Transcripts

cd ~/.claude/skills/plaud-api

# List files to find IDs
python3 plaud_client.py list

# Get transcript for a specific file
python3 plaud_client.py details <file_id> --json | jq '.data.trans_result'

File ID Discovery

File IDs are 32-character hex strings. Find them from:

  1. URLs: https://web.plaud.ai/file/{file_id}
  2. List output: First column in python3 plaud_client.py list
  3. JSON output: python3 plaud_client.py list --json | jq '.[].id'

Get AI Summary

python3 plaud_client.py details <file_id> --json | jq '.data.ai_content'

Batch Operations

# Download all recordings to a folder
python3 plaud_client.py download-all -o ./all_recordings

# Get all file IDs
python3 plaud_client.py list --json | jq -r '.[].id'

Extract Transcript Text Only

# Get plain transcript text (all segments concatenated)
python3 plaud_client.py details <file_id> --json | jq -r '.data.trans_result.segments[].text' | tr '\
' ' '

Error Handling

ErrorCauseFix
401 UnauthorizedToken expired or invalidRe-extract token from localStorage
Empty responseInvalid file_id formatVerify file_id is 32 hex characters
Connection errorWrong API domainCheck PLAUD_API_DOMAIN in .env
Token requiredMissing .env or PLAUD_TOKENFollow credential tutorial above

Token Refresh

Plaud tokens are long-lived (~10 months), but when they expire:

  1. Log into https://web.plaud.ai
  2. Open DevTools > Application > Local Storage
  3. Copy the new tokenstr value
  4. Update your .env file

API Reference

For detailed API documentation, see PLAUD_API.md included in this skill directory.

Key endpoints used by plaud_client.py:

  • GET /file/simple/web - List all files
  • GET /file/detail/{file_id} - Get file details with transcript
  • GET /file/download/{file_id} - Download MP3 audio
  • GET /filetag/ - Get file tags/folders

Included Files

FilePurpose
plaud_client.pyCLI tool for all Plaud API operations
PLAUD_API.mdDetailed API endpoint documentation
requirements.txtPython dependencies
.env.exampleTemplate for credentials

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.34%
按下载量换算15,712

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills