Add Rohas Workbench - Next.js Dashboard for Local Development#5
Merged
sophatvathana merged 3 commits intomainfrom Nov 29, 2025
Merged
Add Rohas Workbench - Next.js Dashboard for Local Development#5sophatvathana merged 3 commits intomainfrom
sophatvathana merged 3 commits intomainfrom
Conversation
- Set up Next.js 16 with React 19 and App Router - Configure Tailwind CSS and shadcn/ui - Add TypeScript, ESLint, and PostCSS configuration - Update root .gitignore for workbench build artifacts
- Add workbench layout with sidebar navigation - Implement overview, schemas, schema graph, workflows, tracing, CLI, and settings pages - Create reusable UI components (button, card, tabs, table, etc.) - Add workbench-specific components (sidebar, header, schema browser, trace explorer) - Set up Zustand store for cross-route state management - Add theme provider with dark/light mode support
- Add workbench configuration section to rohas.toml - Enable DailyCleanup cron job in example schema - Add structured logging support to State class with Logger - Update test handler to demonstrate logging capabilities - Complete workbench styling and root layout setup
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.
Overview
This PR introduces Rohas Workbench, a modern Next.js dashboard that provides a visual interface for managing and exploring Rohas projects. The workbench automatically detects and parses local schemas, handlers, and workflows without requiring a backend service.
Features
🎨 Modern UI
📊 Dashboard Pages
🔧 Developer Experience
config/rohas.tomlTechnical Details
Stack
Project Structure
Integration
rohas.tomlUsage
cd workbench pnpm install pnpm devVisit http://localhost:3000 to view the dashboard.
Run from rohas
cd generated_project rohas dev --workbenchVisit http://localhost:4001 to view the dashboard.
Changes