c7ce44d963
Workstream A–C substrate for the Ten31 agentic system: - A1: docs/crm-overview.md; CLAUDE.md conventions + guardrail #9 - A2: additive/reversible core migration (canonical_entities, entity_links, interaction_log, relationship_edges, soft-delete) + ledgered runner - B1/B3: chunking + deterministic entity resolution (backend/ingest) - B2: dense (bge-m3) + BM25 sparse ingest to Qdrant crm_chunks - C: CRM MCP server (reads, retrieval modes, logged writes) — no outbound tools - docs: redaction/re-hydration, Gmail enablement runbook - synthetic test data; .env.example; housekeeping (.gitignore, untrack crm.db, drop legacy files + start9/0.3.5) Verified end-to-end on synthetic data + live Sparks (hybrid > dense on entity queries). Real backfill runs on Ten31 infra; index holds synthetic data only. Branch snapshot also captures pre-existing working-tree changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
// First StartOS 0.4 release of Ten31 Database.
|
|
//
|
|
// Upgrade context:
|
|
// * The 0.3.5 wrapper shipped at 0.1.0.38 (legacy, aarch64 only).
|
|
// * This 0.4 wrapper is built for x86_64 and is intended for a
|
|
// parallel install on a new StartOS 0.4 host.
|
|
// * Data continuity is NOT handled by a StartOS-level in-place
|
|
// upgrade (that path does not exist across StartOS majors).
|
|
// Instead the container image is pre-seeded with a snapshot of
|
|
// /data (crm.db, backups/, optional .crm-secret). On first boot
|
|
// docker_entrypoint.sh copies that snapshot into the mounted
|
|
// `main` volume if it is empty.
|
|
//
|
|
// Because both "up" and "down" paths are inside the same wrapper
|
|
// lineage (and the first 0.4 release has no earlier 0.4 version
|
|
// to migrate from), the migration functions are intentionally
|
|
// no-ops. Future 0.4.x releases can chain off this node in the
|
|
// version graph.
|
|
export const v_0_1_0_39 = VersionInfo.of({
|
|
version: '0.1.0:39',
|
|
releaseNotes: {
|
|
en_US: [
|
|
'First StartOS 0.4 package for Ten31 Database.',
|
|
'Built for x86_64; sideload-only during beta.',
|
|
'Container image ships with a baked-in /data snapshot so the',
|
|
'service boots with the existing investor and fundraising data,',
|
|
'saved views, backups, users, and app settings already in place.',
|
|
'No StartOS-level migration is performed from the 0.3.5 package;',
|
|
'this package is installed fresh on a 0.4 host.',
|
|
].join(' '),
|
|
},
|
|
migrations: {
|
|
up: async () => {},
|
|
down: async () => {},
|
|
},
|
|
})
|