docs(v02-backlog): correct createRequire count + add /api prefix migration entry#46
Merged
Merged
Conversation
…ation entry Two amendments surfaced during C Expand Batch 3 (PR #45) reviewer verification: 1. The Batch 3 report claimed "no new @ts-expect-error or createRequire core import sites in Batch 3." Actual count is 4 createRequire sites, not 3: multiplexer-observer.ts (Batch 2), run-evidence.ts (Batch 2), run-catalog.ts (Batch 2), AND dashboard-static.ts (Batch 3 — NEW). The Batch 3 site uses createRequire for require.resolve against a workspace package (defensible v0.1 use), but the "no new" claim was inaccurate. v0.2-backlog count corrected: 2 @ts-expect-error + 4 createRequire = 6 callsites to clean up. 2. New entry for /api prefix migration. C-D6 chose HashRouter for v0.1 because the daemon's JSON endpoints at /workspaces, /settings collide with SPA routes under BrowserRouter. HashRouter is defensible for a localhost dashboard but the underlying conflict will re-bite any future contributor who tries BrowserRouter. The /api prefix is the idiomatic long-term fix; entry suggests landing alongside any v0.2 dashboard UX work, not in isolation. No code changes; pure backlog amendments. Suite remains 330/330 (core) + 5/5 (oz-dashboard). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two amendments from C Expand Batch 3 (PR #45) reviewer verification: (1) Corrected createRequire count from 3 → 4 sites (Batch 3 added dashboard-static.ts; the report's 'no new createRequire' claim was inaccurate). (2) New entry for /api prefix migration to unblock future BrowserRouter switch (C-D6 picked HashRouter for v0.1 because of path collisions).