Read Transcript
Search and retrieve full context from previous Angainor iteration transcripts.
When to Use
Use this skill when:
- •
progress.txtmentions something but lacks detail - •You need to understand HOW something was implemented, not just WHAT
- •You're debugging an issue that may relate to a previous iteration's work
- •You want to see the full conversation from a specific iteration
The Job
- •Read the transcript index at
transcripts/index.json - •Search for relevant transcripts by story ID, date, branch, or keyword
- •Read the full transcript file(s) for detailed context
- •Extract and present the relevant information
Index Format
The index at transcripts/index.json has this structure:
json
{
"transcripts": [
{
"file": "2026-01-17-14-30-00-iteration-1.txt",
"timestamp": "2026-01-17-14-30-00",
"iteration": 1,
"branch": "angainor/feature-name",
"storyId": "US-001"
}
]
}
Search Methods
By Story ID
Find all iterations that worked on a specific story:
code
Search transcripts for story US-003
By Date Range
Find iterations from a specific time period:
code
Search transcripts from 2026-01-15 to 2026-01-17
By Branch
Find all iterations for a feature branch:
code
Search transcripts for branch angainor/auth-system
By Iteration Number
Get a specific iteration:
code
Read transcript from iteration 5
Step-by-Step Process
- •
Read the index:
codeRead transcripts/index.json
- •
Find matching entries:
- •Filter by the search criteria (storyId, timestamp, branch, iteration)
- •List matching transcripts with their metadata
- •
Read relevant transcripts:
codeRead transcripts/[filename].txt
- •
Extract key information:
- •What was implemented
- •Key decisions made
- •Errors encountered and how they were resolved
- •Files that were modified
Example Usage
User asks: "What approach did the previous iteration use for the database migration?"
Your process:
- •Read
transcripts/index.jsonto find recent iterations - •Identify iterations that might involve database work (check storyId patterns)
- •Read the relevant transcript file
- •Extract and summarize the migration approach
Output Format
When presenting transcript information:
markdown
## Transcript: [filename] **Iteration:** [N] | **Date:** [timestamp] | **Story:** [storyId] ### Summary [Brief summary of what happened in this iteration] ### Key Details - [Relevant detail 1] - [Relevant detail 2] ### Files Modified - [file1.ts] - [file2.ts]
Tips
- •Start with the index to narrow down which transcripts to read
- •Transcripts can be long - focus on the sections relevant to the query
- •The metadata at the end of each transcript includes iteration number and branch
- •Cross-reference with
progress.txtfor additional context - •Multiple iterations may have worked on the same story (if it failed and retried)
Checklist
Before responding:
- • Read
transcripts/index.jsonfirst - • Identified relevant transcripts based on search criteria
- • Read the full transcript file(s)
- • Extracted and presented the relevant information
- • Provided context about which iteration/story the information came from