- Initialize .sdlc/ with config, guidance, and state machine - Register M0-M8 as released milestones (full engine track history) - Seed M9 (Community Sync & Revocation) and M10 (Governance & Agent Rights) with features - Seed product milestones P0-P4 and PG1 gate with features from existing planning docs - Add Team section to AGENTS.md (tidal-engineer, tidal-visionary, tidal-researcher, tidal-storyteller) - Add knowledge-librarian agent for .sdlc/knowledge/ curation - Gitignore .sdlc/telemetry.redb (volatile binary state) - Add .ai/ scaffold (project knowledge index)
36 lines
761 B
Markdown
36 lines
761 B
Markdown
# .ai Index
|
|
|
|
Project knowledge base. Entries are organized by category.
|
|
|
|
## Categories
|
|
|
|
- **patterns/** — How we do things (coding patterns, architectural conventions)
|
|
- **decisions/** — Why we chose X over Y (ADRs, trade-off notes)
|
|
- **gotchas/** — Non-obvious pitfalls and workarounds
|
|
- **architecture/** — How the system works (data flow, component relationships)
|
|
- **conventions/** — Naming, style, standards
|
|
|
|
## Usage
|
|
|
|
Entries are harvested automatically after each SDLC artifact is approved.
|
|
Each entry follows the format:
|
|
|
|
```
|
|
---
|
|
category: patterns
|
|
title: How we handle X
|
|
learned: YYYY-MM-DD
|
|
source: spec|design|review|human
|
|
confidence: high|medium|low
|
|
---
|
|
|
|
## Summary
|
|
...
|
|
|
|
## Key Facts
|
|
- ...
|
|
|
|
## File Pointer
|
|
`path/to/file.go:line-range`
|
|
```
|