Quickstart
Get your first agent running in 5 minutes.
1. Create a Project
Initialize a new Nexus OS project directory:
bash
naos init my-project
cd my-projectThis creates a nexus.config.yaml and a data/ directory for the embedded database.
2. Create an Agent
Create your first agent from a built-in template:
bash
naos create hello-agent --template echoAvailable templates: echo, http, cron, pipeline.
3. Run the Agent
Start the agent:
bash
naos run hello-agentYou should see output confirming the agent is running:
[nexus] agent hello-agent started (pid: 1)
[nexus] status: running4. Check Status
View all running agents:
bash
naos statusOutput:
AGENT STATUS UPTIME MEMORY
hello-agent running 2m 15s 12MB5. View the Dashboard
Launch the built-in web dashboard:
bash
naos dashboard --openThis starts a local server at http://localhost:4200 and opens it in your browser. The dashboard shows all agents, supervisors, costs, and more.
Next Steps
- Configuration — Customize your project settings
- Creating Agents — Build custom agents
- Supervisors — Add fault tolerance