More usage. Lower cost.
Link any shared workstation in under a minute. Paste your API key, run the commands, and keep the agent on at startup so sessions rotate automatically.
No seat jugglingAPI key authRotation policy built in
Pricing
The Claw Bay
$5/mo
Usage target
5×
5×50×
Usage difference
Codex$100/mo
The Claw Bay$5/mo
Setup
Paste your API key, run the install command, then register startup so the agent is always available after reboot.
Install • Link • Run
Terminal (bash/zsh)
# 1) Install
curl -fsSL https://theclawbay.com/install.sh | bash
# 2) Link
theclawbay link --api-key <apiKey>
# 3) Run now
theclawbay agent
Run at startup
systemd (recommended)
# Run once in a terminal
mkdir -p ~/.config/systemd/user
cat > ~/.config/systemd/user/theclawbay.service <<'EOF'
[Unit]
Description=The Claw Bay Agent
After=network-online.target
[Service]
ExecStart=/usr/bin/env theclawbay agent
Restart=always
RestartSec=3
[Install]
WantedBy=default.target
EOF
systemctl --user daemon-reload
systemctl --user enable --now theclawbay.service