jlightner
2a8b0b3a84
feat: Extracted inline typeahead from Home.tsx into shared SearchAutoco…
...
- "frontend/src/components/SearchAutocomplete.tsx"
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/Home.tsx"
- "frontend/src/pages/SearchResults.tsx"
- "frontend/src/App.css"
GSD-Task: S04/T02
2026-03-31 06:39:01 +00:00
jlightner
6de5317416
feat: Replaced plain list rendering of related techniques with a respon…
...
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/TechniquePage.tsx"
- "frontend/src/App.css"
GSD-Task: S02/T02
2026-03-31 06:15:25 +00:00
jlightner
5e52dd5e9c
feat: Added SubTopicPage with breadcrumbs and creator-grouped technique…
...
- "frontend/src/pages/SubTopicPage.tsx"
- "frontend/src/api/public-client.ts"
- "frontend/src/App.tsx"
- "frontend/src/pages/TopicsBrowse.tsx"
- "frontend/src/App.css"
- "frontend/src/pages/Home.tsx"
GSD-Task: S01/T02
2026-03-31 06:03:18 +00:00
jlightner
0b27e5752e
feat: Added sort=random|recent query param to list_techniques endpoint…
...
- "backend/routers/techniques.py"
- "frontend/src/api/public-client.ts"
GSD-Task: S03/T01
2026-03-31 05:46:31 +00:00
jlightner
95b11ae5bc
feat: Added key_moment_count correlated subquery to technique list API…
...
- "backend/schemas.py"
- "backend/routers/techniques.py"
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/Home.tsx"
- "frontend/src/App.css"
GSD-Task: S03/T01
2026-03-31 05:23:37 +00:00
jlightner
6d4390414a
feat: Key moment search results now link to parent technique page with…
...
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/SearchResults.tsx"
- "frontend/src/pages/TechniquePage.tsx"
GSD-Task: S01/T02
2026-03-31 05:04:05 +00:00
jlightner
52e7e3bbc2
feat: remove review workflow — unused gate that blocked nothing
...
773 key moments sat at 'pending' with 0 approved/edited/rejected.
review_status was never checked by any public-facing query — all content
was always visible regardless of review state.
Removed:
- backend/routers/review.py (10 endpoints)
- backend/tests/test_review.py
- frontend ReviewQueue, MomentDetail pages
- frontend client.ts (review-only API client)
- frontend ModeToggle, StatusBadge components
- Review link from AdminDropdown, Moments link from pipeline rows
- ReviewStatus, PageReviewStatus enums from models
- review_mode config flag
- review_status columns (migration 007)
- ~80 lines of mode-toggle CSS
Pipeline now always sets processing_status to 'published'.
Migration 007 drops columns, enums, and migrates 'reviewed' → 'published'.
2026-03-31 02:34:12 +00:00
jlightner
4b0914b12b
fix: restore complete project tree from ub01 canonical state
...
Auto-mode commit 7aa33cd accidentally deleted 78 files (14,814 lines) during M005
execution. Subsequent commits rebuilt some frontend files but backend/, alembic/,
tests/, whisper/, docker configs, and prompts were never restored in this repo.
This commit restores the full project tree by syncing from ub01's working directory,
which has all M001-M007 features running in production containers.
Restored: backend/ (config, models, routers, database, redis, search_service, worker),
alembic/ (6 migrations), docker/ (Dockerfiles, nginx, compose), prompts/ (4 stages),
tests/, whisper/, README.md, .env.example, chrysopedia-spec.md
2026-03-31 02:10:41 +00:00
jlightner
44c0df6e08
feat: Added DebugModeToggle component and StatusFilter pill bar to Admi…
...
- "frontend/src/pages/AdminPipeline.tsx"
- "frontend/src/api/public-client.ts"
- "frontend/src/App.css"
GSD-Task: S04/T01
2026-03-30 19:34:11 +00:00
jlightner
653c927845
feat: DebugPayloadViewer component with copy, export, collapsible sections
2026-03-30 19:01:17 +00:00
jlightner
ee24731e59
feat: Added Head/Tail segmented toggle to EventLog with order param wir…
...
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/AdminPipeline.tsx"
- "frontend/src/App.css"
GSD-Task: S02/T02
2026-03-30 11:15:21 +00:00
jlightner
26556ba03e
feat: Built AdminPipeline.tsx page at /admin/pipeline with video table,…
...
- "frontend/src/pages/AdminPipeline.tsx"
- "frontend/src/api/public-client.ts"
- "frontend/src/App.tsx"
- "frontend/src/App.css"
GSD-Task: S01/T03
2026-03-30 08:35:11 +00:00
jlightner
7aa33cd17f
fix: Fixed syntax errors in pipeline event instrumentation — _emit_even…
...
- "backend/pipeline/stages.py"
GSD-Task: S01/T01
2026-03-30 08:27:53 +00:00
jlightner
e08e8d021f
fix: Creators page 422 — limit=200 exceeded API max of 100, also fix error display for Pydantic validation arrays
2026-03-30 02:37:37 -05:00
jlightner
8fb3f199dc
feat: Added TypeScript version types, fetchTechniqueVersions function,…
...
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/TechniquePage.tsx"
GSD-Task: S04/T03
2026-03-30 07:27:40 +00:00
jlightner
39006ca5b6
feat: redesign technique page - meta stats, video filenames, monospace signal chains
2026-03-30 06:54:11 +00:00
jlightner
07e85e95d2
feat: Built CreatorsBrowse (randomized default sort, genre filter, name…
...
- "frontend/src/pages/CreatorsBrowse.tsx"
- "frontend/src/pages/CreatorDetail.tsx"
- "frontend/src/pages/TopicsBrowse.tsx"
- "frontend/src/App.tsx"
- "frontend/src/App.css"
- "frontend/src/api/public-client.ts"
GSD-Task: S05/T04
2026-03-30 00:13:11 +00:00
jlightner
3a7f10005b
feat: Built frontend search flow: typed public API client, landing page…
...
- "frontend/src/api/public-client.ts"
- "frontend/src/pages/Home.tsx"
- "frontend/src/pages/SearchResults.tsx"
- "frontend/src/pages/TechniquePage.tsx"
- "frontend/src/App.tsx"
- "frontend/src/App.css"
GSD-Task: S05/T03
2026-03-30 00:09:08 +00:00