-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.yml
More file actions
39 lines (32 loc) · 1.03 KB
/
config.example.yml
File metadata and controls
39 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# fizzy-pop multi-agent configuration
#
# Copy this file to config.yml and fill in your values.
# Run with: ruby bin/fizzy-pop --config config.yml
# Fizzy base URL (required)
url: https://app.fizzy.do
# OpenClaw webhook settings (required unless --dry-run)
webhook_url: http://localhost:18789
webhook_token: your-webhook-token
# Interval settings in seconds (optional)
interval:
polling: 10 # how often to check for notifications (default: 10)
webhook: 3 # delay between webhook deliveries (default: 5)
agent_poll: 0.5 # delay between each agent's poll (default: 0.5)
# Agent configurations
# Each agent needs a name and Fizzy personal access token
agents:
- name: optimus
token: your-optimus-fizzy-token
- name: wheeljack
token: your-wheeljack-fizzy-token
- name: prowl
token: your-prowl-fizzy-token
# The webhook payload will include the agent name:
# {
# "agent": "optimus",
# "message": "...",
# "mode": "now",
# "deliver": false
# }
#
# OpenClaw can use this to route to the correct agent session.