- 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>
64 lines
796 B
Markdown
64 lines
796 B
Markdown
---
|
|
type: outline
|
|
version: "0.1"
|
|
status: draft
|
|
created: ""
|
|
updated: ""
|
|
tags: [outline]
|
|
---
|
|
|
|
# Outline
|
|
|
|
> AI auto-generated read-only view. Do not edit manually.
|
|
|
|
---
|
|
|
|
## Flow
|
|
|
|
> Day -> Beat list. Beat order maintained in Day files.
|
|
|
|
### Day 00
|
|
|
|
```dataview
|
|
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
|
|
```
|
|
|
|
![[D00#本日结束时玩家已知]]
|
|
|
|
---
|
|
|
|
*Copy Day block as needed.*
|
|
|
|
---
|
|
|
|
## Dev Status
|
|
|
|
```dataview
|
|
TABLE length(rows) AS "Count"
|
|
FROM "kb/beats"
|
|
GROUP BY dev_status AS "Status"
|
|
```
|
|
|
|
---
|
|
|
|
## Open Retcons
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "kb/beats"
|
|
WHERE contains(file.content, "[#Retcon")
|
|
```
|
|
|
|
---
|
|
|
|
## Open TBDs
|
|
|
|
```dataview
|
|
LIST
|
|
FROM "kb/beats"
|
|
WHERE contains(file.content, "[#TBD")
|
|
```
|