From 8930aa5af7635fb40371d56973c7093d9d3c0fbe Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Thu, 12 Feb 2026 15:31:20 -0800 Subject: [PATCH] docs: update agent docs via /update-agent-docs - AGENTS.md: add plans/licenses/rate-limit/promos modules, add dashboard consumer table, update test count - CLAUDE.md: unchanged (already current) --- AGENTS.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index e91b8de1..053a8f41 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -110,17 +110,32 @@ learning_ai_common_plat/ | **Blob storage** | `services/platform-service/` | `src/modules/blob/`, `src/lib/blob.ts` — SAS tokens, CRUD | | **Audit log** | `services/platform-service/` | `src/modules/audit/` | | **Notifications** | `services/platform-service/` | `src/modules/notifications/` | +| **Rate limiting** | `services/platform-service/` | `src/modules/rate-limit/` | | **Subscriptions** | `services/billing-service/` | `src/modules/subscriptions/` | | **Stripe webhooks** | `services/billing-service/` | `src/modules/stripe/` | | **Usage tracking** | `services/billing-service/` | `src/modules/usage/` | +| **Plans** | `services/billing-service/` | `src/modules/plans/` | +| **Licenses** | `services/billing-service/` | `src/modules/licenses/` | | **Invitations** | `services/growth-service/` | `src/modules/invitations/` | | **Referrals** | `services/growth-service/` | `src/modules/referrals/` | +| **Promos** | `services/growth-service/` | `src/modules/promos/` | | **Tracker items** | `services/tracker-service/` | `src/modules/items/` | | **Public roadmap** | `services/tracker-service/` | `src/modules/public/` | | **Tracker comments** | `services/tracker-service/` | `src/modules/comments/` | | **Tracker votes** | `services/tracker-service/` | `src/modules/votes/` | | **Monitoring** | `services/monitoring/` | `health-check.ts`, `loki/`, `grafana/` | +### Dashboard Consumers (via `file:` refs) +The following dashboards in `../learning_voice_ai_agent/` consume `@bytelyst/*` packages: + +| Dashboard | Packages Used | +|-----------|---------------| +| `admin-dashboard-web` | api-client, auth, config, cosmos, errors | +| `user-dashboard-web` | api-client, auth, config, cosmos, errors | +| `tracker-dashboard-web` | api-client, errors | + +**Prerequisite:** Run `pnpm build` in this repo before running `npm install` in any dashboard. + ## 6. How to Run Things ```bash @@ -130,7 +145,7 @@ pnpm install # ── Build all packages + services ────────────────── pnpm build -# ── Run all tests (165+ across all workspaces) ───── +# ── Run all tests (20 test files across all workspaces) ─ pnpm test # ── Type-check everything ──────────────────────────