Transcripts CLI Skill
Use these commands to inspect transcript availability and content from the terminal. Common pattern:
bash
sol call transcripts <command> [args...]
scan
bash
sol call transcripts scan DAY
Show audio and screen coverage ranges.
- •
DAY: required day inYYYYMMDD.
Use this first to confirm what recording windows exist before running detailed reads.
Example:
bash
sol call transcripts scan 20260115
segments
bash
sol call transcripts segments DAY
List recording segments and their source types.
- •
DAY: required day inYYYYMMDD.
Behavior notes:
- •Segment keys use
HHMMSS_LENformat (for example091500_300). - •Each segment shows start/end time and available types (
audio,screen, or both).
Use this when you want a specific segment key for targeted reads.
Example:
bash
sol call transcripts segments 20260115
read
bash
sol call transcripts read DAY [--start HHMMSS --length MINUTES] [--segment KEY] [--full] [--raw] [--audio] [--screen] [--agents]
Read transcript content for a day, time range, or segment.
- •
DAY: required day inYYYYMMDD.
Read modes (mutually exclusive):
- •
--start HHMMSS --length MINUTES: range mode. Both flags are required together; end time is auto-computed. - •
--segment KEY: segment mode using key fromsegments. - •No time flags: whole-day mode.
Source flags:
- •
--full: audio + screen + agents. - •
--raw: audio + screen only (no agents). - •
--audio: audio only. - •
--screen: screen only. - •
--agents: agent outputs only. - •Default with no source flags: audio + agents (no screen).
Rules:
- •Do not combine
--segmentwith--start/--length. - •Do not combine
--fullor--rawwith individual source flags.
Source type meanings:
- •Audio: spoken-word transcripts from microphone/system audio.
- •Screen: frame-level screen activity transcription.
- •Agents: AI-generated summaries and insights.
Examples:
bash
sol call transcripts read 20260115 sol call transcripts read 20260115 --start 090000 --length 30 --raw sol call transcripts read 20260115 --segment 091500_300 --full sol call transcripts read 20260115 --audio
stats
bash
sol call transcripts stats MONTH
Show daily transcript coverage counts for a month.
- •
MONTH: required month inYYYYMM.
Use this to understand recording density and coverage patterns across a month.
Example:
bash
sol call transcripts stats 202601