Create Agent
Defaults prefilled — adjust as needed
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