Install
openclaw skills install plaudUse when working with Plaud recordings, including /plaud Telegram workflows, listing recent recordings, finding recordings by date or keyword, reading transcripts, summarizing notes, extracting action items, drafting follow-ups, exporting Plaud content, or diagnosing Plaud MCP/CLI authentication.
openclaw skills install plaudUse this skill for Plaud recording workflows in OpenClaw.
Prefer the Plaud MCP tools when available:
plaud__list_files: list or search recordingsplaud__get_file: get metadata and availability for one recordingplaud__get_note: fetch AI notes, summaries, topics, and action itemsplaud__get_transcript: fetch timestamped transcript with speakersplaud__get_current_user: check authenticationplaud__login: start OAuthplaud__logout: disconnectUse the Plaud CLI when:
CLI reference lives in references/cli.md. MCP reference lives in references/mcp.md.
This skill supports a single Telegram command shape when the OpenClaw Telegram bot exposes /plaud as a custom command:
/plaud [action] [target]
Actions:
/plaud: show compact help plus the latest 3 recordings/plaud recent: list recent recordings/plaud last: show the latest meaningful recording, skipping tiny accidental clips under 30 seconds when possible/plaud find <query>: search by title, keyword, or date/plaud summary [target]: summarize a recording, defaulting to last meaningful recording/plaud actions [target]: extract action items, owners, dates, and open loops/plaud transcript [target]: fetch transcript or explain if unavailable/plaud export [target]: export metadata, summary, and transcript using the CLI helper/plaud status: check MCP and CLI auth status/plaud login: start Plaud OAuthIf the user sends /plaud <text> and <text> is not a known action, treat it as /plaud find <text>.
Slash command registration can be handled by OpenClaw native skill commands when commands.nativeSkills is enabled. This skill declares user-invocable: true, so OpenClaw can expose /plaud without adding a separate Telegram customCommands entry. Do not replace existing custom commands such as /commands or /menu just to add this skill command.
plaud__list_files with page: 1, page_size: 10.plaud__get_note first.plaud__get_transcript.plaud__list_files with query, date_from, or date_to when provided.For simple exports, use the CLI:
plaud summary <id> -o summary.md
plaud transcript <id> -o transcript.txt
For repeatable Markdown export, use scripts/plaud-export.js.
Check auth with plaud__get_current_user or plaud me.
If unauthenticated:
plaud__login for MCP auth.plaud login.localhost:8199, ask the user to paste the callback URL and submit it to the local listener while it is still running.