-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.local.yaml.example
More file actions
56 lines (48 loc) · 1.9 KB
/
Copy pathsettings.local.yaml.example
File metadata and controls
56 lines (48 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Messaging module settings
# Copy to settings.local.yaml and configure
identity:
name: yourname # Your username (required)
# Your Claude agent will connect as: yourname-claude
messaging:
default_space: 1-team # Space for message inboxes (e.g., 1-datafund)
relay:
secret: "your-team-shared-secret" # Same secret for all team members
# Choose your relay URL based on deployment:
# url: "ws://localhost:8080/ws" # Local testing
# url: "ws://192.168.1.100:8080/ws" # LAN server (no SSL)
# url: "ws://relay.internal.company.com:8080/ws" # Internal server (no SSL)
url: "wss://datacore-messaging-relay.datafund.ai/ws" # Public relay (with SSL)
# Trust overrides: assign specific actors to trust tiers
# trust_overrides:
# gregor@team.example.com: team
# crt@team.example.com: team
# partner@external.com: trusted
# Optional: override trust tier defaults (see lib/config.py for full schema)
# trust_tiers:
# team:
# daily_token_limit: 200000
# trusted:
# auto_accept: true
# Optional: override compute budget defaults
# compute:
# daily_budget_tokens: 500000
# per_sender_daily_max: 100000
# per_task_max_tokens: 50000
# per_task_timeout_minutes: 30
# cooldown_between_tasks: 60
# max_queue_depth: 20
# rate_limits:
# tasks_per_hour: 5
# Routing:
# @claude → automatically routes to @<sender>-claude (your own Claude)
# @gregor-claude → goes to Gregor's Claude (if you're in their trust_overrides)
#
# User naming convention:
# @yourname - Your human identity (GUI window)
# @yourname-claude - Your personal Claude agent
#
# Example:
# @tex - Tex's GUI window
# @tex-claude - Tex's Claude Code session
# @gregor - Gregor's GUI window
# @gregor-claude - Gregor's Claude Code session