You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: customized/agents/scribe.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,14 @@ Additional context files (all in `/sandbox/workspace/`):
22
22
23
23
## Step 1: Read metadata and meeting notes
24
24
25
-
First, read the metadata file to get the cutoff date and notes URL:
25
+
First, extract the notes archive and read the metadata file. You MUST run these commands before reading notes — skipping them means no notes are available:
26
26
27
27
```
28
+
tar -xzf /sandbox/workspace/notes.tar.gz -C /sandbox/workspace --no-absolute-names
28
29
cat "$SCRIBE_META_FILE"
29
30
```
30
31
31
-
This returns JSON with `cutoff_date` (ISO timestamp — only extract topics from meetings on or after this date) and `notes_url` (URL for citation links in comments).
32
+
The metadata returns JSON with `cutoff_date` (ISO timestamp — only extract topics from meetings on or after this date) and `notes_url` (URL for citation links in comments).
32
33
33
34
Then read all `.txt` files in `$SCRIBE_NOTES_DIR`. If no files exist, write an empty result and stop.
0 commit comments