| name | change-persistence |
| description | Add or modify Synergy durable state, JSON storage keys, SQLite tables, indexes, session/message fields, cache-versus-canonical ownership, migrations, recovery, import/export, or retention behavior. Use for packages/synergy/src/storage, domain migration files, Library database changes, persisted schemas, and compatibility cleanup. |
Change Persistence
Classify the State
- Decide whether the data is canonical durable state, a derived index/snapshot, cache, auth secret, runtime lock, temporary artifact, or project-local configuration.
- Read Storage and paths and the owning architecture document.
- Trace every writer, reader, index, event, export/import path, recovery path, deletion path, and startup migration before changing the shape.
Implement the Current Model
File-backed JSON
- Build logical keys through
StoragePath; use Storage for locks, atomic writes, reads, scans, and removal.
- Keep independently updated or streamed records independently addressable. Do not rewrite a whole session or collection for one leaf update.
- Update derived indexes and events in the same owner transaction/lifecycle as the canonical write.
- Preserve the atomic-write transient-retry contract:
Storage write+rename retries EPERM/EACCES/EBUSY (classified by isRetryableIOError) so Windows sharing violations do not fail persistence, permanent errors fail fast, and temp files are removed (with the same transient retry) on the failure path. Do not bypass Storage with a bare rename; extend test/storage/storage-retry.test.ts when changing write-path failure behavior.
SQLite and other domain stores
- Keep fresh-install schema creation in the owning database initialization.
- Put upgrades, backfills, and rewrites in versioned domain migrations registered through the central migration runner.
- Preserve transaction, WAL, vector-extension fail-soft, and backup assumptions of the owning store.
Migrate Existing Data
- Add a migration whenever an existing persisted shape can reach the new code.
- Make the migration deterministic and idempotent. Record dependencies and ordering explicitly.
- Migrate to one canonical current path, then remove obsolete runtime adapters where the migrated state makes them unnecessary.
- Keep compatibility readers only at a named boundary when migration cannot make old data impossible; do not spread legacy checks through business logic.
- Preserve secrets and owner-only permissions. Never log raw credentials or include them in diagnostics fixtures.
- Build old-state fixtures from schemas emitted by shipped writers. Do not use a synthetic superset of multiple historical variants as the only upgrade fixture.
Verify
Test:
- fresh state
- representative old state
- repeated migration execution
- partial/malformed input and recovery
- index/read consistency
- deletion/archival/import/export behavior
- startup runner execution and dependency ordering
- a clone or fixture of the latest released state for startup-blocking migrations
Use real temporary SYNERGY_HOME, Scope, storage, or SQLite fixtures instead of broad mocks. Run the narrow domain test, migration tests, recovery/integration tests, typecheck, and bun run quality:quick.
Update Storage and paths for durable layout changes and the owning architecture document for new invariants. Keep historical narratives in docs/migrations/, not current-state docs.
Handoff
Report canonical owner, key/table/schema changes, derived indexes, migration ID/order/idempotence, compatibility removed or retained, recovery/export impact, and tests.