graph TD
A[Start] --> B[Receive Timestamped Transcription]
B --> C[Combine Input with Fixed Preprompt]
C --> D[Call LLM Skill #223]
D --> E[Process Transcription to Extract Steps]
E --> F[Format 6 Steps with Titles/Timestamps]
F --> G[Structure Output as JSON/Text]
G --> H[Return six-steps-summary]
H --> I[End]
subgraph Input
B
end
subgraph Processing
C
D
E
F
end
subgraph Output
G
H
end