Nova Super

Documentation

Getting Started

Nova Super is an AI-powered development platform. Chat to get help, or switch to Generate mode to create React/Tailwind components from text descriptions.

Chat Mode

Ask questions, get help with code, or discuss architecture. The AI remembers your conversation context.

Example: "How do I set up authentication with AWS Cognito?"

Generate Mode

Describe a UI component and get production-ready React code with Tailwind CSS.

Example: "A pricing page with 3 tiers: Free, Pro, Enterprise"

Architecture

Frontend: Next.js 14 + Tailwind CSS + shadcn/ui, deployed on Cloudflare Pages

Backend: AWS Lambda + API Gateway, calling Claude Sonnet 4.6 on Bedrock

Database: DynamoDB (conversations + shared brain)

Agent: AWS Bedrock AgentCore with 8 tool integrations (Apify, GitHub, Cloudflare, V0, Figma, Brave, Sentry, Linear)

AI Models: Claude Opus 4.6 (reasoning) + Claude Sonnet 4.6 (chat/generate) + Nova Act (browser automation)

API

POST /generate

Send a prompt with mode "chat" or "generate"

{
  "prompt": "your message here",
  "mode": "chat",        // or "generate"
  "sessionId": "optional"
}