- Initialize git repo - Create kb/ directory: terms/, beats/, days/, production/, decisions/ - Create inbox/archived/ for processed files - Update templates: beat (enhanced narrative state + production), character (aliases + arc tracking), worldbuilding (tier + aliases), day (chapter + cumulative state) - Add new templates: eureka (replaces inbox), decision - Update outline template with retcon/TBD tracking - Add AGENTS.md with AI operation rules - Add .gitignore Co-authored-by: Cursor <cursoragent@cursor.com>
796 B
796 B
type, version, status, created, updated, tags
| type | version | status | created | updated | tags | |
|---|---|---|---|---|---|---|
| outline | 0.1 | draft |
|
Outline
AI auto-generated read-only view. Do not edit manually.
Flow
Day -> Beat list. Beat order maintained in Day files.
Day 00
TABLE beat_type AS "Type", emotional_tone AS "Tone", format AS "Format", dev_status AS "Status"
FROM "kb/beats"
WHERE day = "D00"
SORT order_in_day ASC
Copy Day block as needed.
Dev Status
TABLE length(rows) AS "Count"
FROM "kb/beats"
GROUP BY dev_status AS "Status"
Open Retcons
LIST
FROM "kb/beats"
WHERE contains(file.content, "[#Retcon")
Open TBDs
LIST
FROM "kb/beats"
WHERE contains(file.content, "[#TBD")