Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a9d0312
feat(server): add openapi-dump CLI command for v2 schema export
JonnyTran Jul 10, 2026
78c0189
feat(frontend): v2 OpenAPI snapshot + openapi-typescript typegen with…
JonnyTran Jul 10, 2026
ddf9e79
feat(v2-ui): schema/question domain entities + widget-selection mapping
JonnyTran Jul 10, 2026
7c4b0ec
docs
JonnyTran Jul 11, 2026
d62bd00
feat(v2-ui): v2 DI container, SchemaRepository, schemas storage and f…
JonnyTran Jul 12, 2026
c48b946
fix(v2-ui): tighten dtype editor matching and document span exclusion
JonnyTran Jul 12, 2026
4b7d7bb
test(v2-ui): cover getSchema and GetSchemaSettingsUseCase fan-out
JonnyTran Jul 12, 2026
973838a
feat(v2-ui): records domain, V2RecordRepository, search criteria and …
JonnyTran Jul 12, 2026
d874778
feat(v2-ui): /schemas list page with home nav sibling and schemas.* i18n
JonnyTran Jul 12, 2026
02b5931
feat(v2-ui): schema detail page with records table, FTS search and st…
JonnyTran Jul 12, 2026
3e819ad
fix(v2-ui): keep records pager reachable on empty page (roborev job 138)
JonnyTran Jul 12, 2026
ecc68ca
feat(v2-ui): read-only schema settings page with rebuild-index afford…
JonnyTran Jul 12, 2026
ba9ac21
fix(v2-ui): add load-error state to schema settings page (roborev job…
JonnyTran Jul 12, 2026
f896ebc
refactor(frontend): extract v1-free leaf inputs to components/base/in…
JonnyTran Jul 12, 2026
6a4e63a
feat(v2-ui): annotation/projection repositories, value re-wrapping an…
JonnyTran Jul 12, 2026
f1f48e9
test(v2-ui): cover ProjectionRepository encoding/mapping and discard …
JonnyTran Jul 12, 2026
be50a2e
feat(v2-ui): ReferenceReview assembly with name-id join, drafts, orph…
JonnyTran Jul 12, 2026
7917670
feat(v2-ui): submit/save-draft/discard review use-cases with 422 norm…
JonnyTran Jul 12, 2026
96e5509
test(v2-ui): cover multi-schema reference assembly (roborev job 145)
JonnyTran Jul 12, 2026
daa2f45
feat(v2-ui): lean V2TableEditor tabulator wrapper for table questions
JonnyTran Jul 12, 2026
58a231b
fix(v2-ui): stop V2TableEditor rebuilding on self-emit (roborev job 148)
JonnyTran Jul 12, 2026
6402582
feat(v2-ui): pure ProjectionReviewForm with per-type widgets, provena…
JonnyTran Jul 12, 2026
ca15a0b
feat(v2-ui): reference review page wrapping ProjectionReviewForm via …
JonnyTran Jul 12, 2026
f9de2ab
test(v2-ui): cover ReviewCellInput widget-event emit wiring (roborev …
JonnyTran Jul 12, 2026
109709f
test(v2-ui): e2e infra (CDP remote chromium, API seeding) + auth and …
JonnyTran Jul 12, 2026
3f19b48
test(v2-ui): e2e review loop, draft lifecycle and search round-trip s…
JonnyTran Jul 12, 2026
089e6d5
test(v2-ui): pin seeded workspace selection in auth-smoke e2e (robore…
JonnyTran Jul 12, 2026
2139d7a
fix(v2-ui): clean vue-tsc typecheck for v2 (0 errors)
JonnyTran Jul 12, 2026
3746901
test(v2-ui): isolate response-mutating e2e specs to per-spec records …
JonnyTran Jul 12, 2026
438a682
docs(sdk): design spec for v2 SDK — schema-centric client, agentic CL…
JonnyTran Jul 13, 2026
38c5363
test(v2-ui): give isolated e2e records non-superstring references (ro…
JonnyTran Jul 13, 2026
1d5915e
docs(sdk): v2 CLI verbs register at top level, replacing v1 schemas s…
JonnyTran Jul 13, 2026
962e181
docs(sdk): implementation plan for the v2 SDK vertical slice
JonnyTran Jul 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/extralit-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
run: |
npm install

- name: Check generated v2 API types are current 🔒
run: |
npm run gen:api:types
git diff --exit-code -- v2/infrastructure/api/generated

- name: Run lint 🧹
continue-on-error: true
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/extralit-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
- releases/**
paths:
- "extralit-server/**"
- "extralit-frontend/v2/infrastructure/api/**"

permissions:
id-token: write
Expand Down Expand Up @@ -96,6 +97,12 @@ jobs:
- name: Install dependencies
run: uv sync --dev --extra postgresql

- name: Check frontend v2 OpenAPI snapshot is current 🔒
run: |
uv run python -m extralit_server.cli openapi-dump --output /tmp/openapi-v2.json
diff -u ../extralit-frontend/v2/infrastructure/api/openapi.json /tmp/openapi-v2.json \
|| { echo "::error::v2 OpenAPI drift — run 'npm run gen:api' in extralit-frontend and commit"; exit 1; }

- name: Run tests 📈
id: run-tests
continue-on-error: true
Expand Down
4,805 changes: 4,805 additions & 0 deletions docs/superpowers/plans/2026-07-10-v2-frontend-vertical-slice.md

Large diffs are not rendered by default.

Loading
Loading