Neurlo is a next-generation AI operating system designed to automate professional workflows. It aggregates workspace contexts to draft actions, send updates, and coordinate workflows inside a single visual interface.
This public repository showcases Neurlo's frontend architecture, state engines, and canvas UI models. To protect proprietary contextual parsing algorithms, agent routing engines, and API keys, the live backend system operates in a private repository. The React components, visual layout pipelines, and page routing layouts are shared here.
- 🔮 Predictive Context Panel
- Surfaces relevant files and messages based on active user context and triggers.
- ⚡ Drag-and-Drop Workflow Canvas
- Interactive visual nodes mapping user workflows to automated execution steps.
- 🛠️ Modern Design Architecture
- Constructed from accessible, styled Shadcn UI components.
- Ensures responsive layouts and complete keyboard accessibility.
| Layer | Component | Implementation Detail |
|---|---|---|
| Framework | Next.js 14 (App Router) | Handles high-performance server rendering and API routes. |
| Component Kit | Radix UI + Shadcn | Accessibile components providing a modern visual experience. |
| Design System | Tailwind CSS | Clean, utility-first layout styling. |
graph LR
Input[Workspace Triggers] -->|Parse Context| Engine[Predictive Context Engine]
Engine -->|Generate Nodes| Canvas[Visual Workflow Canvas]
Canvas -->|Draft Action| Output[Slack/Email Response Drafts]
- Install dependencies:
npm install
- Start the dev server:
npm run dev