Drop "prototype/carryover" framing now that v1 is shipped
SPEC, DEV docs, and code comments still talked about the codebase as a rewrite-in-progress against an external prototype. With v1 shipped the framing reads oddly — it implies code is provisional when it's the production thing. Recast §18 as "the technical stack," strip "carryover from the prototype" comments across backend (api.py, chat.py, providers.py) and frontend (DiffView, PromptBar, SelectionTooltip, modelStyles), and rework SPEC §1 / §18 to introduce OHM up front rather than as a follow-on to a prototype reference. Also: - RUNBOOK: bump Python prereq to 3.11+ to match the production VM (was 3.13). - Remove IMPLEMENTATION-PROMPT.md — the original implementation brief is no longer load-bearing. - Add deploy/DEPLOY-NEW-SESSION-PROMPT.md as the durable deploy-handoff prompt for new sessions.
This commit is contained in:
+12
-15
@@ -276,23 +276,20 @@ graduation will eventually replace. The §4 cache now mirrors per-RFC
|
||||
repos via a new `refresh_rfc_repo` path; the webhook receiver
|
||||
dispatches on `repository.full_name` so per-RFC events refresh just
|
||||
that repo, and the reconciler sweeps every active entry. The §18
|
||||
carryovers landed as `backend/app/providers.py` (the multi-provider
|
||||
abstraction, unchanged from the prototype) and `backend/app/chat.py`
|
||||
(an adapter that runs the provider's streaming interface against
|
||||
`thread_messages` rows, parses `<change>` blocks, and materializes
|
||||
`changes` rows per §8.14). The §17 endpoints owned by Slice 2 — the
|
||||
`branches/<branch>/*` and `threads/<thread_id>/*` families — live in
|
||||
stack landed as `backend/app/providers.py` (the multi-provider
|
||||
abstraction) and `backend/app/chat.py` (an adapter that runs the
|
||||
provider's streaming interface against `thread_messages` rows, parses
|
||||
`<change>` blocks, and materializes `changes` rows per §8.14). The
|
||||
§17 endpoints owned by Slice 2 — the `branches/<branch>/*` and
|
||||
`threads/<thread_id>/*` families — live in
|
||||
`backend/app/api_branches.py`, mounted alongside Slice 1's routes via
|
||||
`api.make_router`. On the frontend, `RFCView.jsx` was rebuilt as the
|
||||
§8 three-column surface; `Editor.jsx`, `ChatPanel.jsx`,
|
||||
`api.make_router`. On the frontend, `RFCView.jsx` is the §8
|
||||
three-column surface; `Editor.jsx`, `ChatPanel.jsx`,
|
||||
`ChangePanel.jsx`, `PromptBar.jsx`, `SelectionTooltip.jsx`,
|
||||
`DiffView.jsx`, `ModelPicker.jsx`, and `modelStyles.js` were lifted
|
||||
from the prototype and adapted to the canonical `threads` /
|
||||
`thread_messages` / `changes` shape rather than the prototype's
|
||||
global session_id. The §18 carryovers explicitly preserved: SSE
|
||||
streaming with base64-encoded chunks, Tiptap + ProseMirror plugin for
|
||||
the paragraph-margin gutter accent, the prompt-bar selection-quote
|
||||
machinery, the model picker.
|
||||
`DiffView.jsx`, `ModelPicker.jsx`, and `modelStyles.js` make up the
|
||||
center column. The §18 stack: SSE streaming with base64-encoded
|
||||
chunks, Tiptap + ProseMirror plugin for the paragraph-margin gutter
|
||||
accent, the prompt-bar selection-quote machinery, the model picker.
|
||||
|
||||
The §17 endpoints exercised so far:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user