mmk-plaud-filelisted
Install: claude install-skill magic-meal-kits/mmk-skills
# MMK Plaud — File Commands
> **Prerequisite:** Read [`../mmk-shared/SKILL.md`](../mmk-shared/SKILL.md) for auth, global flags, and error handling.
> Parent: [`mmk-plaud`](../mmk-plaud/SKILL.md) — includes credential overrides and requirements.
Always use `-o json` when parsing results or composing with other commands.
---
## list — List recordings (compose transcripts/summaries)
```bash
mmk plaud file list --limit 10 -o json
mmk plaud file list --with transcripts,summaries --limit 25 -o json
mmk plaud file list --sort start_time --asc --trash active -o json
```
**Required:** none
**Optional:**
| Flag | Default | Description |
|------|---------|-------------|
| `--limit` | `20` | Max files to return (server caps at 99999) |
| `--skip` | `0` | Offset for pagination |
| `--sort` | `edit_time` | Sort field: `edit_time` or `start_time` |
| `--asc` | (descending) | Sort ascending |
| `--trash` | `active` | Filter: `active`, `trash`, or `all` |
| `--with` | | Compose attachments: comma list of `transcripts`, `summaries`, `shares`, `audio-urls` |
| `--concurrency` | `4` | Max concurrent attachment fetches per file (1–8); only with `--with` |
| `--since` | `0` | Only files with `start_time >= this epoch-ms` (only with `--with`) |
| `--strict` | | Fail-fast on any attachment error (only with `--with`) |
---
## get — Get file detail (compose transcript/summary)
```bash
mmk plaud file get <file_id> -o json
mmk plaud file get <file_id> --with transcripts,summaries -o json
```