feat(career): Sprint 1 — dual-mode sidebar and career pillar#2
Merged
adarshkumar23 merged 6 commits intomainfrom Apr 17, 2026
Merged
feat(career): Sprint 1 — dual-mode sidebar and career pillar#2adarshkumar23 merged 6 commits intomainfrom
adarshkumar23 merged 6 commits intomainfrom
Conversation
- OSModeSwitcher pill component with localStorage route memory - layout/Sidebar updated with career OS navigation tree - CareerDashboardPage: score ring, breakdown bars, stats strip, pipeline preview, opportunities feed - ApplicationsKanbanPage: dnd-kit drag-to-stage with optimistic update + rollback toast - ProblemsPage: table with filters, streak ring, difficulty breakdown - ProjectsPage: card grid, tech chips, on-resume toggle - NetworkPage: contact list with temperature filter, follow-up queue, Gemini outreach draft modal - OpportunitiesPage: tabbed inbox/tracking/ignored/converted, countdown chips, convert flow - api.ts: full career API surface added - App.tsx: all career routes wired under /career/*
…owing mypy reported 4 errors because `ApplicationService.list` and `ContactService.list` shadowed the builtin `list` type, making return annotations like `list[Application]` resolve to the method instead. Renamed to `get_all`; 0 mypy errors, 19 tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- scripts/oracle-vm-setup.sh — first-time VM bootstrap (Docker, nginx, iptables) - scripts/deploy.sh — build, start, migrate on the VM - scripts/remote-deploy.sh — one-shot from local: scp .env + pull + deploy - scripts/setup-nginx-oracle.sh — wire nginx, optional Let's Encrypt SSL - infra/nginx/william-os.conf — updated to proxy frontend (:3000) + API (:8000) with HTTP→HTTPS redirect and no-SSL :8080 fallback for IP-only access Co-Authored-By: Claude Sonnet 4.6 <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.
Summary
OSModeSwitcherpill toggles between William OS and Career OS trees; remembers last route per mode vialocalStoragecareerschema (problems, projects, applications, contacts, opportunities, score_snapshots), 33 endpoints under/api/v1/career/*, score algorithm (DSA/Projects/Applications/Network/CP components totalling 100)compute_and_snapshot_all_usersat 02:30 UTC daily (08:00 IST), idempotent upsertTest plan
alembic upgrade headsucceeds (merges sprint10_001 + audit_m14_index_cast heads)alembic downgrade -1thenupgrade headround-trips cleanly\dt career.*shows 6 tables in psqlGET /api/v1/career/dashboardreturns 200 with empty data after first user login/career, William OS pill returns to/dashboardpytest tests/career/ -v— all score algorithm tests passnpm run build— zero TypeScript errorsgrep -r "settings.SECRET_KEY" backend/app/modules/career/→ cleangrep -r "gemini-2.0-flash" backend/app/modules/career/→ cleangrep -rE "datetime\.now\(timezone" backend/app/modules/career/→ cleanDeviations from spec
ScoreRingextraction: used existingProgressRingcomponent directly withcolor="rgb(99,102,241)"— zero additional files touched (spec said stop if 10+ files; reuse was the right call)useEffectfor route persistence: moved intoOSModeSwitchercomponent itself (same effect, cleaner encapsulation)body: dict = {}default used since there's no Pydantic model needed for optional{context?}— functionally identicalSprint 2 backlog
See
CAREER_OS_SPRINT_2_BACKLOG.md— LeetCode/CF/GitHub API sync, email stage-transition auto-parse, bulk CSV import.🤖 Generated with Claude Code