Files
ten31-database/start9/0.4/startos/versions/v0.1.0.67.ts
T
Keysat 0943aeb2df architect: remove LP Objections page — generic/unverifiable output (v0.1.0:67)
The summarize-historical-email grounding produced generic, boilerplate objections
with no quotes and no source traceability (the minimize step abstracts away the
actual email text; the newest-N corpus carries little real objection signal, so the
model pattern-completes). Pulled the page (ObjectionsPage component + nav + dispatch).
The redaction boundary is kept (reusable for proactive outreach); the dormant
/api/architect/ground route is left in place but has no UI trigger. Pivoting to
proactive outreach / messaging.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-08 19:09:58 -05:00

18 lines
791 B
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
// Remove the LP Objections page. The summarize-historical-email grounding it ran
// produced generic, unverifiable output with no quotes or source traceability, so it
// is pulled from the UI. The redaction boundary it used is kept (reusable for the
// proactive-outreach work); the backend /api/architect/ground route is left dormant
// (no UI trigger). No schema change.
export const v_0_1_0_67 = VersionInfo.of({
version: '0.1.0:67',
releaseNotes: {
en_US: [
'Removed the LP Objections page — its historical email summary produced generic,',
'unverifiable output. We are pivoting to proactive outreach and messaging instead.',
].join(' '),
},
migrations: { up: async () => {}, down: async () => {} },
})