Inspiration

In the modern startup ecosystem and enterprise world, speed and alignment are everything. However, teams often spend weeks—sometimes months—just trying to align engineering, marketing, finance, and strategy around a single, cohesive idea. We were inspired by the concept of Multi-Agent Systems (MAS). We asked ourselves: What if you could compress weeks of cross-functional business planning into seconds?

We didn't just want an AI assistant; we wanted an instant AI Executive Council. That vision gave birth to Vector AI Command Center.

What it does

Vector AI Command Center is a sophisticated multi-agent orchestration platform. Users interface with "Prism," our Lead Architect AI, in a workspace called The Board Room.

When a user submits an idea (e.g., "Make a plan for a decentralized food delivery app"), Prism parses the intent and dynamically delegates specific tasks to four specialized executive agents:

  • Atlas (CEO): Formulates business strategy and competitive analysis.
  • Nexus (CTO): Designs the technical architecture and tech stack.
  • Vanguard (CMO): Constructs the Go-To-Market (GTM) and SEO strategies.
  • Ledger (CFO): Builds financial projections and runway models.

Within seconds, the platform synthesizes their outputs into comprehensive, professionally formatted markdown documents. The platform also provides an interactive system architecture map, live simulated telemetry, and project management workspaces.

How we built it

We built Vector to be a production-grade, horizontally scalable application with an obsessive focus on UI/UX.

Frontend: We utilized Next.js 16 (App Router) and Tailwind CSS. To create the premium "Onyx & Slate" aesthetic, we heavily utilized glassmorphism, animated gradient borders, and deep, dark background layers. We integrated Framer Motion for buttery-smooth entrance animations, dynamic progress bars, and staggered list rendering.

AI & Orchestration Engine: The brain of the platform is powered by Google's Gemini 2.5 Flash model via the @google/generative-ai SDK. We chose Gemini 2.5 Flash specifically for its massive context window and ultra-low latency.

We built a custom serverless Next.js API route that acts as the orchestration engine. By injecting a strict system prompt, we force the LLM into a structured JSON generation mode. The model returns a single payload containing conversational responses, task assignments, and the four distinct markdown documents, which the frontend parses and renders in real-time.

Challenges we ran into

  1. Context Management & Formatting: Getting a single LLM call to reliably output four distinct, highly detailed markdown documents (with tables and code blocks) without breaking the JSON schema was incredibly difficult. We had to heavily refine our system prompt engineering to enforce strict JSON structures.
  2. UI State Choreography: Synchronizing the AI's response with the frontend UI animations—making sure the agents' status badges switched to "Analyzing" at the right time, and rendering the simulated telemetry logs sequentially—required complex React useEffect and setTimeout choreography.
  3. React Memoization Bugs: We ran into a subtle bug where chat messages wouldn't render because we were mutating the array state directly instead of creating new object references, causing React.memo to skip re-rendering. It took deep debugging to properly handle immutable state updates for the live chat feed.

What we learned

  • Prompt Engineering is Software Engineering: We learned that treating prompts as rigid code contracts is essential when expecting structured data from LLMs.
  • The Power of Gemini: We were blown away by the speed of Gemini 2.5 Flash. Generating thousands of tokens of structured markdown in under 10 seconds made the "instant council" concept actually viable.
  • Cost vs. Latency: In multi-agent systems, balancing the token cost against the latency of parallel processing is a mathematical challenge. For instance, optimizing the system latency $L$ based on parallel API calls can be expressed as: $$ L_{total} = \max(L_{CEO}, L_{CTO}, L_{CMO}, L_{CFO}) + L_{Orchestrator} $$ By forcing a single massive JSON generation rather than 4 parallel API calls, we traded a slightly longer initial TTFB (Time to First Byte) for absolute context coherence.

What's next for Vector AI Command Center

  • True Multi-Agent Parallelism: Moving the orchestration logic to an asynchronous Python FastAPI backend with Celery workers, allowing actual independent agents to converse and debate with each other before finalizing the documents.
  • Database Persistence: Hooking the application up to MongoDB Atlas to persist massive project contexts across sessions.
  • Export to PDF/Notion: Allowing users to instantly export the generated blueprints directly into their existing enterprise tools.

Built With

Here is the exact technology stack we used to bring Vector AI Command Center to life:

  • Frontend Framework: next.js (React 18, App Router)
  • Styling: tailwind.css (Custom "Onyx & Slate" theme)
  • Animations: framer-motion (UI micro-interactions and transitions)
  • Icons: lucide-react
  • Markdown Rendering: react-markdown & remark-gfm
  • AI / LLM API: google-gemini (Gemini 2.5 Flash model)
  • AI SDK: @google/generative-ai
  • Deployment: vercel
  • Version Control: git & github

Built With

Share this project:

Updates