Documentation Index
Fetch the complete documentation index at: https://hexelstudio.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Sandboxes
# Create
hexel compute sandbox create --tier standard
# Execute code
hexel compute sandbox exec <vm-id> --code "print(1 + 1)"
# Run shell command
hexel compute sandbox exec <vm-id> --command "ls -la"
# List
hexel compute sandbox list
# Release
hexel compute sandbox release <vm-id>
# Delete
hexel compute sandbox delete <vm-id>
Agents
# Register
hexel compute agent register \
--name my-agent \
--image ghcr.io/org/agent:v1 \
--capabilities "chat,streaming"
# List
hexel compute agent list
# Delete
hexel compute agent delete <agent-id>
Instances
# Deploy
hexel compute instance deploy <agent-id>
# List
hexel compute instance list
# Stop
hexel compute instance stop <deployment-id>
# Delete
hexel compute instance delete <deployment-id>
Global Flags
| Flag | Description |
|---|
-k, --api-key | API key (or HEXEL_API_KEY) |
--client-id | OAuth client ID (or HEXEL_CLIENT_ID) |
--client-secret | OAuth client secret (or HEXEL_CLIENT_SECRET) |
-o, --output | Output format: table, json, yaml |
-h, --help | Help for any command |