Skip to content

Commit 0223290

Browse files
jkyberneeesclaude
andauthored
chore(docker): add memory config sections to compose configs (#14)
Adds explicit memory blocks to docker/config.godmode.json and docker/config.restricted.json so the bundled compose setups enable the memory subsystem out of the box with sensible caps and thresholds. Also broadens the coverage-artifact gitignore (coverage.out -> *.out) to catch stray cov.out files left by ad-hoc test runs. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent cb83cf7 commit 0223290

3 files changed

Lines changed: 29 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ bin/
22
/odek
33
*.test
44
coverage.out
5+
*.out
56
odek-bin
67
.plans/
78
.hermes/

docker/config.godmode.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@
1212
"auto_transcribe": true,
1313
"models_dir": "/usr/local/share/whisper/models"
1414
},
15+
"memory": {
16+
"enabled": true,
17+
"facts_limit_user": 1500,
18+
"facts_limit_env": 2500,
19+
"buffer_lines": 20,
20+
"buffer_enabled": true,
21+
"merge_on_write": true,
22+
"extract_on_end": true,
23+
"llm_search": true,
24+
"llm_extract": true,
25+
"llm_consolidate": true,
26+
"merge_threshold": 0.7,
27+
"add_threshold": 0.3
28+
},
1529
"dangerous": {
1630
"action": "allow",
1731
"non_interactive": "allow"

docker/config.restricted.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@
1212
"auto_transcribe": true,
1313
"models_dir": "/usr/local/share/whisper/models"
1414
},
15+
"memory": {
16+
"enabled": true,
17+
"facts_limit_user": 1500,
18+
"facts_limit_env": 2500,
19+
"buffer_lines": 20,
20+
"buffer_enabled": true,
21+
"merge_on_write": true,
22+
"extract_on_end": true,
23+
"llm_search": true,
24+
"llm_extract": true,
25+
"llm_consolidate": true,
26+
"merge_threshold": 0.7,
27+
"add_threshold": 0.3
28+
},
1529
"dangerous": {
1630
"non_interactive": "deny",
1731
"classes": {

0 commit comments

Comments
 (0)