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>
This commit is contained in:
Keysat
2026-06-08 19:09:58 -05:00
parent c2b84a1f26
commit 0943aeb2df
4 changed files with 23 additions and 97 deletions
+3 -2
View File
@@ -27,8 +27,9 @@ import { v_0_1_0_63 } from './v0.1.0.63'
import { v_0_1_0_64 } from './v0.1.0.64'
import { v_0_1_0_65 } from './v0.1.0.65'
import { v_0_1_0_66 } from './v0.1.0.66'
import { v_0_1_0_67 } from './v0.1.0.67'
export const versionGraph = VersionGraph.of({
current: v_0_1_0_66,
other: [v_0_1_0_39, v_0_1_0_40, v_0_1_0_41, v_0_1_0_42, v_0_1_0_43, v_0_1_0_44, v_0_1_0_45, v_0_1_0_46, v_0_1_0_47, v_0_1_0_48, v_0_1_0_49, v_0_1_0_50, v_0_1_0_51, v_0_1_0_52, v_0_1_0_53, v_0_1_0_54, v_0_1_0_55, v_0_1_0_56, v_0_1_0_57, v_0_1_0_58, v_0_1_0_59, v_0_1_0_60, v_0_1_0_61, v_0_1_0_62, v_0_1_0_63, v_0_1_0_64, v_0_1_0_65],
current: v_0_1_0_67,
other: [v_0_1_0_39, v_0_1_0_40, v_0_1_0_41, v_0_1_0_42, v_0_1_0_43, v_0_1_0_44, v_0_1_0_45, v_0_1_0_46, v_0_1_0_47, v_0_1_0_48, v_0_1_0_49, v_0_1_0_50, v_0_1_0_51, v_0_1_0_52, v_0_1_0_53, v_0_1_0_54, v_0_1_0_55, v_0_1_0_56, v_0_1_0_57, v_0_1_0_58, v_0_1_0_59, v_0_1_0_60, v_0_1_0_61, v_0_1_0_62, v_0_1_0_63, v_0_1_0_64, v_0_1_0_65, v_0_1_0_66],
})
+17
View File
@@ -0,0 +1,17 @@
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 () => {} },
})