Investment trading learning app
Go to file
Saravana Achu Mac c3651f5696 feat(backend): replace custom aiClient with @bytelyst/llm platform package
- Import PerplexityProvider, OpenAIProvider, GeminiProvider from @bytelyst/llm
- Use createFallbackChain() instead of manual axios fallback loop
- Remove axios and @types/axios — no longer needed
- Preserve AIClient class interface (generateAnalysis, getProviderHealth) —
  no changes required in apiServer.ts or AIAnalysisRule.ts
- Fallback order still driven by config.AI.FALLBACK_LIST

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 12:50:34 -07:00
backend feat(backend): replace custom aiClient with @bytelyst/llm platform package 2026-04-05 12:50:34 -07:00
docs docs(roadmap): mark root backend script legacy Supabase audit done 2026-04-04 20:47:43 -07:00
mobile feat: standardize request ids across operator flows 2026-04-04 18:07:43 -07:00
scripts test: add release smoke coverage and runbook 2026-04-04 17:07:48 -07:00
shared refactor: share feature flag contract across backend and web 2026-04-04 18:10:34 -07:00
web refactor: share feature flag contract across backend and web 2026-04-04 18:10:34 -07:00
.env.example refactor: remove live web supabase dependency 2026-04-04 18:03:49 -07:00
.gitignore feat: scaffold trading monorepo foundation 2026-04-04 11:18:21 -07:00
docker-compose.yml feat: scaffold trading monorepo foundation 2026-04-04 11:18:21 -07:00
package.json test: add release smoke coverage and runbook 2026-04-04 17:07:48 -07:00
pnpm-lock.yaml feat(backend): replace custom aiClient with @bytelyst/llm platform package 2026-04-05 12:50:34 -07:00
pnpm-workspace.yaml feat: scaffold trading monorepo foundation 2026-04-04 11:18:21 -07:00
README.md docs: add operations runbook and refresh roadmap status 2026-04-04 14:36:41 -07:00
tsconfig.base.json feat: scaffold trading monorepo foundation 2026-04-04 11:18:21 -07:00

ByteLyst Investment Trading

Canonical monorepo for the ByteLyst trading product.

Workspaces

  • backend/ — trading backend and execution/runtime APIs
  • web/ — trading dashboard
  • mobile/ — Expo mobile app
  • shared/ — canonical product identity and shared runtime helpers

Shared dependencies

This repo consumes local ByteLyst common-platform packages from:

  • ../learning_ai_common_plat/packages/*

Core principles

  • backend-authoritative trading state
  • platform-service for auth, kill switch, telemetry, and flags
  • no duplicated bootstrap logic across surfaces
  • domain-specific trading logic stays product-owned

Common commands

pnpm install
pnpm verify
pnpm lint
pnpm build

Operations

  • product and scope: docs/PRD.md
  • execution tracker: docs/ROADMAP.md
  • local dev, cutover, rollback, and release checks: docs/OPERATIONS.md