jlightner
84d8dc4455
feat: Added shorts router with generate/list/download endpoints, fronte…
...
- "backend/routers/shorts.py"
- "backend/main.py"
- "frontend/src/api/shorts.ts"
- "frontend/src/pages/HighlightQueue.tsx"
- "frontend/src/pages/HighlightQueue.module.css"
GSD-Task: S03/T03
2026-04-04 09:52:01 +00:00
jlightner
cc60852ac9
feat: Built post CRUD and file upload/download API routers with auth, o…
...
- "backend/routers/posts.py"
- "backend/routers/files.py"
- "backend/minio_client.py"
- "backend/auth.py"
- "backend/main.py"
GSD-Task: S01/T02
2026-04-04 09:07:35 +00:00
jlightner
243a7a3eb6
feat: Follow system + tier config page (M022/S02)
...
- CreatorFollow model + pure SQL migration 022
- Follow router: POST/DELETE /follows/{creator_id}, GET /follows/me, GET /follows/{id}/status
- follower_count on creator detail endpoint
- Follow button on CreatorDetail (authenticated users only)
- CreatorTiers page with Free/Pro/Premium cards, Coming Soon modals
- Tiers link in creator sidebar nav
- Route /creator/tiers (protected)
2026-04-04 07:34:03 +00:00
jlightner
c05e4da594
feat: Add creator-scoped highlight review endpoints (list/detail/status…
...
- "backend/models.py"
- "alembic/versions/021_add_highlight_trim_columns.py"
- "backend/routers/creator_highlights.py"
- "backend/main.py"
GSD-Task: S01/T01
2026-04-04 06:58:28 +00:00
jlightner
ed9aa7a83a
feat: Added ChapterStatus enum, sort_order column, migration 020, chapt…
...
- "backend/models.py"
- "backend/schemas.py"
- "alembic/versions/020_add_chapter_status_and_sort_order.py"
- "backend/routers/creator_chapters.py"
- "backend/routers/videos.py"
- "backend/main.py"
GSD-Task: S06/T01
2026-04-04 06:03:49 +00:00
jlightner
6f12d5a240
feat: Wired stage_highlight_detection Celery task with bulk upsert, 4 a…
...
- "backend/pipeline/stages.py"
- "backend/routers/highlights.py"
- "backend/main.py"
GSD-Task: S04/T03
2026-04-04 05:36:10 +00:00
jlightner
a9589bfc93
test: Built ChatService with retrieve-prompt-stream pipeline, POST /api…
...
- "backend/chat_service.py"
- "backend/routers/chat.py"
- "backend/main.py"
- "backend/tests/test_chat.py"
GSD-Task: S03/T01
2026-04-04 05:19:44 +00:00
jlightner
17b43d9778
feat: Added LightRAG /query/data as primary search engine with file_sou…
...
- "backend/config.py"
- "backend/search_service.py"
GSD-Task: S01/T01
2026-04-04 04:44:24 +00:00
jlightner
0fc0df1d29
feat: Added GET /api/v1/creator/dashboard returning video_count, techni…
...
- "backend/routers/creator_dashboard.py"
- "backend/schemas.py"
- "backend/main.py"
- "alembic/versions/016_add_users_and_invite_codes.py"
GSD-Task: S02/T01
2026-04-04 00:09:19 +00:00
jlightner
db135f738e
feat: Added consent API router with 5 endpoints (list, get, upsert with…
...
- "backend/routers/consent.py"
- "backend/schemas.py"
- "backend/main.py"
GSD-Task: S03/T02
2026-04-03 22:11:36 +00:00
jlightner
77f44b0b48
test: Implemented auth API router with register/login/me/update-profile…
...
- "backend/routers/auth.py"
- "backend/main.py"
- "backend/auth.py"
- "backend/requirements.txt"
- "backend/tests/conftest.py"
- "backend/tests/test_auth.py"
GSD-Task: S02/T02
2026-04-03 21:54:11 +00:00
jlightner
9f0b0922b0
feat: add GET /api/v1/stats endpoint with technique and creator counts
2026-04-03 04:24:58 +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
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
c0df369018
feat: Created async search service with embedding+Qdrant+keyword fallba…
...
- "backend/search_service.py"
- "backend/schemas.py"
- "backend/routers/search.py"
- "backend/routers/techniques.py"
- "backend/routers/topics.py"
- "backend/routers/creators.py"
- "backend/main.py"
GSD-Task: S05/T01
2026-03-29 23:55:52 +00:00
jlightner
c2edba952c
test: Built 9 review queue API endpoints (queue, stats, approve, reject…
...
- "backend/routers/review.py"
- "backend/schemas.py"
- "backend/redis_client.py"
- "backend/main.py"
- "backend/tests/test_review.py"
GSD-Task: S04/T01
2026-03-29 23:13:43 +00:00
jlightner
910e945d9c
feat: Wired automatic run_pipeline.delay() dispatch after ingest commit…
...
- "backend/routers/pipeline.py"
- "backend/routers/ingest.py"
- "backend/main.py"
GSD-Task: S03/T04
2026-03-29 22:41:02 +00:00
jlightner
5bfeb50716
feat: Created POST /api/v1/ingest endpoint that accepts Whisper transcr…
...
- "backend/routers/ingest.py"
- "backend/schemas.py"
- "backend/requirements.txt"
- "backend/main.py"
GSD-Task: S02/T01
2026-03-29 22:09:46 +00:00
jlightner
07126138b5
chore: Built FastAPI app with DB-connected health check, Pydantic schem…
...
- "backend/main.py"
- "backend/config.py"
- "backend/schemas.py"
- "backend/routers/__init__.py"
- "backend/routers/health.py"
- "backend/routers/creators.py"
- "backend/routers/videos.py"
GSD-Task: S01/T03
2026-03-29 21:54:57 +00:00
jlightner
cd271c1a8d
feat: Created full Docker Compose project (xpltd_chrysopedia) with Post…
...
- "docker-compose.yml"
- ".env.example"
- "docker/Dockerfile.api"
- "docker/Dockerfile.web"
- "docker/nginx.conf"
- "backend/main.py"
- "backend/requirements.txt"
- "config/canonical_tags.yaml"
GSD-Task: S01/T01
2026-03-29 21:42:56 +00:00