# import-plaud > Import Plaud recording transcripts to Obsidian vault. Use when user wants to sync or import Plaud recordings. - Author: David Lin - Repository: abundance-company/claude-code - Version: 20260122165217 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/abundance-company/claude-code - Web: https://mule.run/skillshub/@@abundance-company/claude-code~import-plaud:20260122165217 --- --- name: import-plaud description: Import Plaud recording transcripts to Obsidian vault. Use when user wants to sync or import Plaud recordings. user-invocable: true disable-model-invocation: false argument-hint: "" allowed-tools: Bash(~/.transcript-hub:*), Read --- # Plaud Import Import Plaud recording transcripts to Obsidian vault using the transcript-hub system. ## When User Requests Import When the user asks to import or sync Plaud recordings: 1. **Check if transcript-hub is installed** ```bash test -f ~/.transcript-hub/scripts/thub && echo "✓ Installed" || echo "✗ Not installed" ``` If not installed, inform user and provide installation instructions from [README.md](README.md). 2. **Run the import** ```bash ~/.transcript-hub/scripts/thub run ``` 3. **Parse and display results** - Look for "PlaudImporter - INFO - Found X new Plaud transcripts" - Look for "ObsidianWriter - INFO - Wrote transcript to:" lines for Plaud folder - Count successful imports - Show any errors 4. **Provide summary** - Number of new transcripts imported - Location: `ObsidianVault/Transcripts/Plaud/` - Any issues encountered ## What This Tool Does - Extracts auth token from Plaud Desktop app - Fetches recordings from Plaud API - Downloads transcripts and AI-generated summaries - Creates markdown files with frontmatter in Obsidian at `Transcripts/Plaud/` ## Troubleshooting If import fails: - Check if Plaud Desktop is running and logged in - Check logs: `~/.transcript-hub/scripts/thub logs` - Verify service status: `launchctl list | grep transcript-hub` ## Related Commands - Status: `~/.transcript-hub/scripts/thub status` - Logs: `~/.transcript-hub/scripts/thub logs` - Manual run: `~/.transcript-hub/scripts/thub run` For complete documentation and setup instructions, see [README.md](README.md).