Nestor Documentation

Everything you need to build, deploy, and manage AI agents with trust and accountability.

What is Nestor?

Nestor is an open-source AI agent platform designed for developers who need autonomous agents they can actually trust. It provides a complete stack from CLI to web dashboard, with security built into every layer.

Key Capabilities

Architecture

Nestor is built as a monorepo with distinct packages, each with a clear responsibility:

PackageRole
@nestor/cliCommand-line interface with 12+ commands
@nestor/agentAgent runtime, LLM adapters, tool execution
@nestor/serverExpress + WebSocket server for Studio
@nestor/orchestratorDAG workflow engine with cron scheduling
@nestor/mcpModel Context Protocol tools and resources
@nestor/dbSQLite database with 14 tables
@nestor/skill-testerSkill testing framework with mock LLM
nestor-coreRust security module compiled to N-API

CLI Quick Reference

# Installation
npx nestor-sh install

# Agent management
nestor agent create --name coder --adapter claude
nestor agent list
nestor agent config coder

# Interactive shell
nestor shell
nestor shell --agent coder --model claude-sonnet-4-6

# Web Studio
nestor start

# Workflows
nestor workflow run code-review.yaml
nestor workflow list

# Testing
nestor test
nestor test --file tests/my-skill.test.yaml
nestor test --verbose

Next Steps