Skip to content

Commit 81a01b8

Browse files
committed
update cli.md
1 parent 42534eb commit 81a01b8

1 file changed

Lines changed: 61 additions & 25 deletions

File tree

skills/references/cli.md

Lines changed: 61 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -180,38 +180,74 @@ podwise get transcript <episode-url> --format vtt # WebVTT
180180

181181
---
182182

183+
### translate
184+
185+
Request translation of an episode's transcript and summary into a target language, then wait for completion.
186+
187+
```bash
188+
podwise translate <episode-url> --lang Chinese
189+
```
190+
191+
Supported languages: `Chinese`, `Traditional-Chinese`, `English`, `Japanese`, `Korean`
192+
193+
---
194+
195+
### export
196+
197+
Export AI-generated episode content to external services.
198+
199+
```bash
200+
# Export to Notion
201+
podwise export notion <episode-url>
202+
podwise export notion <episode-url> --lang Chinese
203+
204+
# Export to Readwise Reader
205+
podwise export readwise <episode-url>
206+
podwise export readwise <episode-url> --location later
207+
podwise export readwise <episode-url> --lang Chinese
208+
209+
# Export to Obsidian
210+
podwise export obsidian <episode-url>
211+
podwise export obsidian <episode-url> --lang Chinese
212+
podwise export obsidian <episode-url> --folder Podcasts/2026
213+
```
214+
183215
## Artifact Reference
184216

185-
| Artifact | Command | Description |
186-
|---|---|---|
187-
| Summary | `get summary` | AI-generated summary and key takeaways |
188-
| Transcript | `get transcript` | Full transcript in text, SRT, or VTT |
189-
| Chapters | `get chapters` | Chapter breakdown with timestamps |
190-
| Highlights | `get highlights` | Notable highlights with timestamps |
191-
| Q&A | `get qa` | AI-extracted question and answer pairs |
192-
| Mind map | `get mindmap` | Topic structure as a nested tree |
193-
| Keywords | `get keywords` | Topic keywords with descriptions |
217+
| Artifact | Command | Description |
218+
| ---------- | ---------------- | -------------------------------------- |
219+
| Summary | `get summary` | AI-generated summary and key takeaways |
220+
| Transcript | `get transcript` | Full transcript in text, SRT, or VTT |
221+
| Chapters | `get chapters` | Chapter breakdown with timestamps |
222+
| Highlights | `get highlights` | Notable highlights with timestamps |
223+
| Q&A | `get qa` | AI-extracted question and answer pairs |
224+
| Mind map | `get mindmap` | Topic structure as a nested tree |
225+
| Keywords | `get keywords` | Topic keywords with descriptions |
194226

195227
---
196228

197229
## Intent → Command Mapping
198230

199-
| User wants to… | Command |
200-
|---|---|
201-
| Find episodes about a topic | `search episode "X"` |
202-
| Find a podcast by name | `search podcast "X"` |
203-
| See what's trending | `popular` |
204-
| See new episodes from followed shows | `list episodes --latest 7` |
205-
| Explore a specific show's episodes | `drill <podcast-url>` |
206-
| Get a synthesized answer from transcripts | `ask "X"` |
207-
| Summarize an episode | `get summary <url>` |
208-
| Get the full transcript | `get transcript <url>` |
209-
| Export subtitles | `get transcript <url> --format srt` |
210-
| Process a YouTube video | confirm → `process <youtube-url>` |
211-
| Transcribe a local file | confirm → `process <file>` |
212-
| Follow a podcast | `follow <podcast-url>` |
213-
| See listening history | `history listened` |
214-
| See reading history | `history read` |
231+
| User wants to… | Command |
232+
| ----------------------------------------- | ----------------------------------- |
233+
| Find episodes about a topic | `search episode "X"` |
234+
| Find a podcast by name | `search podcast "X"` |
235+
| See what's trending | `popular` |
236+
| See new episodes from followed shows | `list episodes --latest 7` |
237+
| Explore a specific show's episodes | `drill <podcast-url>` |
238+
| Get a synthesized answer from transcripts | `ask "X"` |
239+
| Summarize an episode | `get summary <url>` |
240+
| Get the full transcript | `get transcript <url>` |
241+
| Export subtitles | `get transcript <url> --format srt` |
242+
| Process a YouTube video | confirm → `process <youtube-url>` |
243+
| Transcribe a local file | confirm → `process <file>` |
244+
| Follow a podcast | `follow <podcast-url>` |
245+
| See listening history | `history listened` |
246+
| See reading history | `history read` |
247+
| Translate an episode transcript/summary | `translate <url> --lang Chinese` |
248+
| Export episode notes to Notion | `export notion <url>` |
249+
| Export episode notes to Readwise | `export readwise <url>` |
250+
| Export episode notes to Obsidian | `export obsidian <url>` |
215251

216252
---
217253

0 commit comments

Comments
 (0)