Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dari.dev/llms.txt

Use this file to discover all available pages before exploring further.

1. Install

curl -fsSL https://raw.githubusercontent.com/mupt-ai/dari-cli/main/install.sh | bash

2. Log in

dari auth login

3. Create an agent

dari init my-agent
cd my-agent
dari init writes the starter project: dari.yml, prompts/system.md, an example repo_search tool, an example skill, a README.md, and .gitignore.

4. Deploy

dari deploy .
Copy the agent_id from the output.

5. Send a message

dari session send --agent <agent_id> 'hello'
This creates a session automatically and queues the first message. Copy the session.id from the response if you want to inspect events:
dari session events <session_id> --limit 20
Edit the generated files, then run dari deploy . again to publish a new version. Prefer raw HTTP or live SSE updates? See the API Reference.