Quickstart
Build and Run an AI Agent in 5 Minutes
Novium Cloud is an Agent Control Plane for deploying, managing, and scaling AI agents.
1. Install
pnpm add -g @novium/cli
2. Login
novium login
3. Create
novium agent create hello-agent
Edit agents/hello-agent/agent.ts:
export default async function agent(input: { name: string }) {
return { message: `Hello, ${input.name}!` };
}
4. Run
novium agent dev
curl -X POST http://localhost:3000 \
-H "Content-Type: application/json" \
-d '{"name": "Novium"}'
Response:
{ "message": "Hello, Novium!" }
5. Deploy
novium deploy
Your agent is live at https://<workspace>.novium.cloud/hello-agent.
Next: Read the Novium Creation Guide for memory, workflows, and SDK usage.