@kernova/cli
v1.1.2
Published
Kernova CLI - Developer tools for the Intelligent Systems Runtime
Downloads
1,856
Readme
@kernova/cli
Developer tools for the Kernova AI Agent Platform.
Create projects, develop with hot-reload, build for production, and deploy to Kernova Cloud.
Installation
npm install -g @kernova/cliOr use via npx (no install needed):
npx @kernova/cli create my-appCommands
kernova create <name> — Scaffold a full-stack project
kernova create my-app
kernova create my-app --template multi-agent
kernova create my-app --no-frontendGenerates a complete project with agents, tools, React frontend, and configuration.
kernova dev — Start development server
kernova devStarts both the frontend (Next.js on port 3000) and agent backend (port 4555) behind a single URL. Includes hot-reload for agents.
✓ Ready at http://localhost:3000
App: http://localhost:3000
Chat: http://localhost:3000/chat
Agents: http://localhost:3000/api/agents/*
Health: http://localhost:3000/v1/healthkernova build — Build for production
kernova buildCompiles agents (TypeScript), builds frontend (Next.js), validates config.
kernova start — Run production server
kernova startRuns the built project in production mode.
kernova deploy — Deploy to Kernova Cloud
kernova deployDeploys your app to Kernova Cloud. One command, both frontend and agents.
kernova login — Authenticate with Kernova Cloud
kernova login --key kn_live_xxxxxkernova logout — Remove credentials
kernova logoutkernova init <name> — Create a legacy project (agents-only)
kernova init my-agentkernova serve — Start agent runtime with Gateway API
kernova servekernova studio — Open the admin dashboard
kernova studiokernova agent — Manage agent definitions
kernova agent create my-agent
kernova agent list
kernova agent inspect my-agentkernova status — Show runtime status
kernova statusDevelopment Flow
# Create and start
npx create-kernova-app my-app
cd my-app
kernova dev
# Develop: edit agents/ and app/ → hot reload
# Build and deploy
kernova build
kernova login --key kn_live_xxx
kernova deploy
# → https://my-app.kernova.appRequirements
- Node.js 20+
- At least one AI model provider API key (e.g.,
OPENAI_API_KEY)
Documentation
Full docs at kernova.dev
