Merge dev to main#289
Merged
zbigniewsobiecki merged 3 commits intomainfrom Feb 16, 2026
Merged
Conversation
Full-stack dashboard for exploring agent runs, logs, LLM calls, and debug analyses. Includes session-based auth, org-scoped data access, and production static file serving. Backend: - tRPC v11 API with auth middleware (session cookies, bcrypt) - Runs/projects/auth routers with filtering, pagination, org-scoping - Users + sessions DB migration and Drizzle schema - Login/logout Hono routes, session resolution - listRuns, getLlmCallByNumber, listLlmCallsMeta, listProjectsForOrg - Static file serving with SPA fallback for production Frontend (web/): - React 19 + Vite + Tailwind CSS v4 + shadcn/ui theme - TanStack Router with login, runs list, and run detail pages - tRPC client with end-to-end type safety via AppRouter import - Runs table with filters (project, status, agent type, date range) - Run detail tabs: overview, logs, LLM calls, debug analysis - Auto-refresh for in-progress runs Also includes: - Tee llmist agent logs to main logger with proper log levels - 75 new unit tests (1000 total) covering all new code - CLAUDE.md documentation updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The web utils test imports from web/src/lib/utils.ts which depends on clsx and tailwind-merge (installed only in web/node_modules). CI only runs npm install at root level, so these modules are unavailable. Mock them since we only test the format functions, not cn(). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
feat: agent runs dashboard with tRPC API and React frontend
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
db:migratework with proper journal and env loading (fix: make db:migrate work with proper journal and env loading #284)LOG_LEVELenv var respected by llmist agent loggerTest plan
/db:migrateruns cleanlyLOG_LEVELenv var is respected🤖 Generated with Claude Code