Display Mode
Direction Mode
Theme Color
Theme Cover
Create Agent
Defaults prefilled — adjust as needed
Letters, digits, dashes; max 63.
You can change these later by directly asking the agent to update its instructions.
You can modify this later by asking the agent to update its setup.sh.
Secrets (key/value)
Sleep after idle (default 300).
Sleep after busy too long (default 900).
Tags must be alphanumeric only; no spaces or symbols.
Cancel
About
  • Adjust name and timeout; other fields are optional.
  • Instructions and setup are not prefilled; see samples below.
  • Secrets are saved to the agent volume and injected at runtime.
Sample Instructions
# Agent Instructions

- Greet the user and explain your purpose.
- You can run shell commands and edit files via tools when asked.
- Ask clarifying questions before taking destructive actions.
- Keep responses concise unless the user requests more detail.
Sample Setup Script
#!/usr/bin/env bash
# Optional setup script
# Install packages or prepare files needed by your agent
set -euo pipefail

# examples:
# apt-get update && apt-get install -y jq ripgrep
# echo "Hello from setup" > /agent/content/hello.txt