Documentation Index
Fetch the complete documentation index at: https://docs.orpheus.run/llms.txt
Use this file to discover all available pages before exploring further.

Prerequisites
- Orpheus installed (Installation Guide)
- Daemon running (
orpheus statusshows healthy)
Step 1: Create Agent Directory
Step 2: Create agent.yaml
Every agent needs a configuration file:name: Unique identifier for your agentruntime:python3ornodejs20entrypoint: Function that handles requestsmin_workers: Keep this many workers always ready
Step 3: Create Your Handler
agent.pyStep 4: Deploy
- Agent packaged and sent to daemon
- Workspace created at
~/.orpheus/workspaces/my-agent/ - Worker pool started with
min_workers - Agent ready to receive requests
Step 5: Verify
Step 6: Run Your Agent
Updating Your Agent
After changing code, redeploy:Removing an Agent
Next Steps
Add Sessions
Make your agent stateful
Use Workspace
Persist files across requests

