Raw meeting transcripts are persisted in the local workspace
Source references: 3The Minutes fallback explicitly downloads transcripts into the relative `./transcripts` directory and states that they are written to disk. No retention period, cleanup step, or file-access restriction is specified.
Transcripts may contain business plans, personal information, or other sensitive speech. If retained in a shared workspace, backup, index, or location accessible to later tools, meeting content could be read beyond this summarization task.
The source supports this risk, but only when note_id is absent, minute_token exists, and the Minutes fallback is used. The command writes a transcript containing original speech into ./transcripts in the workspace. No retention period, cleanup, or file-access controls are stated, so a shared or persistent workspace could expose sensitive meeting content. A user can ask about file permissions and cleanup, or restrict the download location and retention period.
> ```bash> # --minute-tokens 是复数形式(+download 同);--output-dir 只接受相对路径> lark-cli minutes +detail --minute-tokens "<minute_token>" --transcript --output-dir ./transcripts --as user> ```>> 逐字稿会落盘,供 Step 4 基于原始发言独立提炼(不要照搬 AI 总结)。若返回 `No read permission`(`2091005`),先把无权限事实告知用户,用户明确同意后再用单数 flag 申请:`lark-cli minutes +apply-permission --minute-token "<minute_token>" --perm view --as user`;申请需 owner 在客户端批准后才可重试。详见 [基于 minute_token 查询妙记及关联产物](../lark-meeting/scenes/query-minutes-and-artifacts.md)。Show 2 other places
> **妙记备选路径(无 `note_id`、有 `minute_token` 时)**:智能纪要与妙记是两条独立产物链路,缺少智能纪要不代表这场会没有内容。>>> 逐字稿会落盘,供 Step 4 基于原始发言独立提炼(不要照搬 AI 总结)。若返回 `No read permission`(`2091005`),先把无权限事实告知用户,用户明确同意后再用单数 flag 申请:`lark-cli minutes +apply-permission --minute-token "<minute_token>" --perm view --as user`;申请需 owner 在客户端批准后才可重试。详见 [基于 minute_token 查询妙记及关联产物](../lark-meeting/scenes/query-minutes-and-artifacts.md)。