-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.example.json
More file actions
105 lines (105 loc) · 2.39 KB
/
Copy pathsettings.example.json
File metadata and controls
105 lines (105 loc) · 2.39 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
{
"terminal": {
"fontSize": 13,
"cols": 120,
"rows": 40,
"cursorBlink": true
},
"interface": {
"defaultPanel": "code",
"panelWidth": 260
},
"paths": {
"devDir": "~/dev",
"vaultDir": "~/vault",
"catalogDir": "",
"claudeBinary": "~/.local/bin/claude"
},
"server": {
"port": 2400
},
"channels": {
"telegram": {
"enabled": false,
"label": "Telegram",
"defaultFor": [
"send"
]
}
},
"proxy": {
"enabled": true,
"allowedPortRange": [
1024,
9999
],
"blockedPorts": [
2400
]
},
"orchestration": {
"maxWorkers": 4,
"maxIterationsPerWorker": 8,
"worktreeDir": ".worktrees",
"depInstaller": "auto"
},
"scheduler": {
"tasks": [
{
"id": "vault-backup-daily",
"type": "shell-script",
"cron": "0 23 * * *",
"timezone": "Asia/Dubai",
"enabled": true,
"noOverlap": true,
"description": "Daily vault git snapshot \u2014 safety net under event-driven commits (ADR-019)",
"params": {
"command": [
"bash",
"scripts/vault-backup-daily.sh"
],
"cwd": "<REPO_ROOT>",
"timeoutMs": 60000
}
},
{
"id": "soul-hub-backup-daily",
"type": "shell-script",
"cron": "30 23 * * *",
"timezone": "Asia/Dubai",
"enabled": true,
"noOverlap": true,
"description": "Daily soul-hub git push \u2014 flushes unpushed main commits to origin (push-only mirror of vault-backup-daily safety-net)",
"params": {
"command": [
"bash",
"scripts/soul-hub-backup-daily.sh"
],
"cwd": "<REPO_ROOT>",
"timeoutMs": 60000
}
},
{
"id": "intent-mining-daily",
"type": "intent-mining",
"cron": "0 2 * * *",
"timezone": "Asia/Dubai",
"enabled": true,
"noOverlap": true,
"description": "Daily intent analyst (ADR-023 P1.5) \u2014 mines intent_log + chat_history, proposes routing patterns, nudges via Telegram.",
"params": {
"lookbackDays": 7,
"minNewRows": 10
}
}
]
},
"features": {
"naseej": false,
"workspaces": false,
"playbook": false,
"updateCheck": true,
"localRedeploy": false,
"realtimeVoice": false
}
}