1.0 KiB
1.0 KiB
2026-03-04 Session Notes
Procedural Memory P1 Sprint Planning
Nicholai reviewed SPRINT-BRIEF.md for Procedural Memory P1 (making skills first-class graph nodes) and determined the optimal execution sequence for six deliverables based on dependencies.
Identified implementation order:
- Configuration — add
proceduralconfig to types + defaults (foundation) - Migration — create
skill_metatable (storage foundation) - Skill entity creation — install flow: parse, enrich, create entity + metadata
- Frontmatter enrichment — called during install, integrated with creation
- Skill uninstallation — cleanup counterpart
- Filesystem reconciler — startup backfill + watcher (integrates everything)
Key emphasis: check migration numbering in packages/core/src/migrations/index.ts before writing new migration code to avoid collisions (has been a recurring issue when translating specs to code).
Session ended with assistant beginning to inspect the migrations index prior to implementation.