forked from amirilovic/ccpa-telegram
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhal.config.yaml
More file actions
113 lines (109 loc) · 2.68 KB
/
hal.config.yaml
File metadata and controls
113 lines (109 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
providers:
cursor: null
claude: null
codex: null
opencode: null
antigravity: null
copilot:
- name: gpt-5-mini
default: true
- name: gpt-5.2
- name: gpt-5.1-codex-mini
- name: gpt-5.3-codex
globals:
telegram:
message:
# Optional inbound text quiet window for Telegram message stitching.
# The task-087 baseline is 1000ms; tune per project if needed.
debounceMs: 1000
access:
allowedUserIds:
- ${USER_MARCO_IPHONE_ID}
- ${USER_MARCO_ANDROID_ID}
engine:
name: opencode
model: opencode/gpt-5-nano
# enforceCwd: false # optional; default true. Disable only for intentional cross-directory workflows.
transcription:
model: base.en
projects:
copilot:
active: false
cwd: ./copilot
telegram:
botToken: ${HAL_COPILOR_CODE_TELEGRAM_TOKEN}
engine:
name: copilot
# session: "user"
commands:
git:
enabled: true
showInMenu: true
showInHelp: true
# whitelist:
# - status
# - add
# - commit
# - push
# - pull
npm:
enabled: true
showInMenu: true
showInHelp: true
whitelist:
- hello
- doesNotExist
opencode:
active: false
cwd: ./opencode
engine:
name: opencode
telegram:
botToken: ${HAL_OPENCODE_TELEGRAM_TOKEN}
claude-code:
active: false
cwd: ./claude-code
engine:
name: claude
# model: stepfun/step-3.5-flash:free
# envFile: .env # optional; path to env file sourced before running engine CLI (relative to cwd, or absolute)
telegram:
botToken: ${HAL_CLAUDE_CODE_TELEGRAM_TOKEN}
claude-code-or:
active: true
cwd: ./claude-code-or
engine:
name: claude
envFile: .env # optional: path to env file sourced before running engine CLI (relative to cwd, or absolute)
model: openrouter/free # optional: you can specify the model here or in the settings.json (settings.json takes precedence)
telegram:
botToken: ${HAL_CLAUDE_CODE_OR_TELEGRAM_TOKEN}
codex:
active: false
cwd: ./codex
engine:
name: codex
# session: "user"
telegram:
botToken: ${HAL_CODEX_TELEGRAM_TOKEN}
# antigravity:
# active: false
# cwd: ./antigravity
# engine:
# name: antigravity
# telegram:
# botToken: ${HAL_ANTIGRAVITY_TELEGRAM_TOKEN}
# cursor:
# active: false
# cwd: ./cursor
# engine:
# name: cursor
# telegram:
# botToken: ${HAL_CURSOR_TELEGRAM_TOKEN}
# blog:
# active: false
# cwd: ./blog
# engine:
# name: claude
# telegram:
# botToken: ${HAL_BLOG_TELEGRAM_TOKEN}