Commit Graph

23 Commits

Author SHA1 Message Date
Alexa Amundson
7b90b27913 feat: memory CRUD API route (GET/POST/DELETE) 2026-02-22 19:23:47 -06:00
Alexa Amundson
9ab0c8cbad feat: agents API route proxying gateway 2026-02-22 19:23:46 -06:00
Alexa Amundson
c1ce02c13c feat: /api/chat - Next.js API route with per-agent system prompts 2026-02-22 19:21:26 -06:00
Alexa Amundson
d8669cfa4d feat: multi-agent chat UI with agent switcher and streaming ready 2026-02-22 19:20:49 -06:00
Alexa Amundson
ea0ffa8049 feat: /api/settings route - read/write user settings via gateway memory 2026-02-22 19:19:32 -06:00
Alexa Amundson
b58641c767 feat: /api/fleet - live Pi node status API route 2026-02-22 19:12:51 -06:00
Alexa Amundson
13de759386 feat: Pi fleet map with live node status and agent capacity 2026-02-22 19:04:23 -06:00
Alexa Amundson
1740878a1c feat: Task marketplace board 2026-02-22 19:03:28 -06:00
Alexa Amundson
b5484f28d8 feat: Memory chain explorer page with PS-SHA∞ visualizer 2026-02-22 19:03:15 -06:00
Alexa Amundson
b7a309c617 feat: agent detail page 2026-02-22 18:52:28 -06:00
Alexa Amundson
59155c8d96 feat: settings page — gateway URL, provider, default agent 2026-02-22 18:52:19 -06:00
Alexa Amundson
c52d975f25 feat: tasks API route 2026-02-22 18:21:56 -06:00
Alexa Amundson
431cf4b51f feat: chat API route proxying to gateway with offline fallback 2026-02-22 18:21:49 -06:00
Alexa Amundson
02149a90cc feat: fleet overview dashboard with live stats 2026-02-22 18:21:26 -06:00
Alexa Amundson
d379bca871 feat: add chat page with agent personas 2026-02-22 18:12:28 -06:00
Alexa Amundson
0960f74062 feat: add app sidebar nav layout 2026-02-22 18:07:39 -06:00
Alexa Amundson
dcef21df62 feat: add memory chain viewer page 2026-02-22 18:07:33 -06:00
Alexa Amundson
90b30bf381 feat: add tasks marketplace page 2026-02-22 18:06:41 -06:00
Alexa Amundson
5dd8e4ce39 Add Agents and Pricing sections to landing page
- Added 8 AI agent cards (CECE, Lucidia, Mercury, etc.) with live status
- Added 3-tier pricing section (Starter free, Pro $99, Enterprise custom)
- Removed dynamic conversation route for static export compatibility
- Deployed to Cloudflare Pages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-17 23:05:39 -06:00
Alexa Louise
a4bfd5269b feat: Major UI enhancement with BlackRoad brand system
- Add stunning landing page with hero, features, and CTA sections
- Update login/signup pages with dark theme and brand gradients
- Enhance Sidebar with improved navigation and brand colors
- Update AppHeader with search bar, notifications, and user menu
- Add reusable UI components (Button, Card, Input, Badge)
- Add API health and status endpoints
- Apply official BlackRoad brand colors (#FF1D6C hot pink, #F5A623 amber, #2979FF electric blue, #9C27B0 violet)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-11 14:37:43 -06:00
Alexa Louise
ed63ef8f1c 🎨 Brand compliance: Official BlackRoad design system integrated
Applied official BlackRoad Brand Design System:
- Hot Pink (#FF1D6C) as primary color
- Golden Ratio spacing system (φ = 1.618): 8px → 144px
- SF Pro Display typography
- Line height: 1.618 (Golden Ratio)
- Official gradient: 135deg @ 38.2% & 61.8%
- Animation easing curves (ease, ease-out, ease-spring)
- Black (#000000) background, White (#FFFFFF) text
- Full color palette: Amber, Orange, Magenta, Electric Blue, Violet

Enhanced README.md:
- 5 quantum domains documented (blackroad.io, blackroadai.com, blackroadquantum.com, lucidia.earth, earth.blackroad.io)
- Comprehensive features, tech stack, deployment guide
- Brand compliance section with verification
- Performance targets and security details
- Contributing guidelines for production repo

 Brand compliance verified - NO forbidden old colors
 Production-ready for 5 live domains

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-07 16:35:18 -06:00
Alexa Louise
2ab0d60400 Initial Phase 1 Alpha build for app.blackroad.io
This commit establishes the foundation for the BlackRoad OS web application,
the primary SaaS product for human-AI collaboration.

1. Authentication System
   - Login and signup pages with email/password
   - Zustand state management for auth
   - Workspace-based user model
   - Protected route handling

2. App Shell
   - Sidebar navigation (Conversations, Agents, Governance, Account)
   - App header with workspace and user info
   - Layout with authentication guards
   - Responsive design with Tailwind CSS

3. Conversation Interface
   - Chat UI with message bubbles
   - User and assistant message rendering
   - Real-time timestamp display
   - Loading states and animations
   - Placeholder for WebSocket integration

4. Core Dependencies
   - Next.js 16 with App Router
   - Zustand for state management
   - TanStack Query (ready for API calls)
   - Lucide React icons
   - Tailwind CSS 4 with custom utilities

5. Workspace Management
   - Multi-tenant workspace structure
   - Workspace store with Zustand
   - Plan-based workspace model (Free, Pro, Enterprise)

Structure:
app/
  ├── (auth)/          # Authentication routes
  │   ├── login/
  │   └── signup/
  ├── (app)/           # Protected app routes
  │   ├── conversations/[id]/
  │   ├── workspace/
  │   └── layout.tsx
  └── page.tsx         # Redirects to login

components/
  ├── Sidebar.tsx      # Main navigation
  └── AppHeader.tsx    # Workspace header

stores/
  ├── auth-store.ts    # Authentication state
  └── workspace-store.ts

lib/
  └── cn.ts            # Tailwind merge utility

Next Steps:
- Integrate WebSocket streaming for real-time AI responses
- Connect to BlackRoad OS backend API
- Add agent management interface
- Build governance center UI
- Deploy to app.blackroad.io

Phase 1 Alpha Target: Jan 25, 2026

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-22 18:49:56 -06:00
Alexa Louise
52fa2a8b72 Initial commit from Create Next App 2025-12-22 18:46:25 -06:00