-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclwnd.schema.json
More file actions
65 lines (65 loc) · 2.7 KB
/
clwnd.schema.json
File metadata and controls
65 lines (65 loc) · 2.7 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "clwnd config",
"type": "object",
"additionalProperties": false,
"properties": {
"$schema": { "type": "string" },
"maxProcs": {
"type": "integer",
"minimum": 1,
"description": "Maximum concurrent Claude CLI processes in the nest pool."
},
"idleTimeout": {
"type": "integer",
"minimum": 0,
"description": "Milliseconds an idle roost stays alive before eviction."
},
"smallModel": {
"type": "string",
"description": "Provider/model id used for small tasks (title generation, etc). Empty = auto-discover a free model at plugin startup."
},
"permissionDusk": {
"type": "integer",
"minimum": 0,
"description": "Milliseconds a pending permission ask waits before auto-denying."
},
"droned": {
"type": "boolean",
"description": "Opt-in drone observer. When off, the hum is a raw passthrough."
},
"droneModel": {
"type": "object",
"additionalProperties": false,
"required": ["providerID", "modelID"],
"properties": {
"providerID": { "type": "string" },
"modelID": { "type": "string" }
},
"description": "Model the drone uses for its sentinel turns."
},
"experimental": {
"type": "object",
"additionalProperties": false,
"properties": {
"subpath": {
"type": "boolean",
"description": "Linguistic sub-symbol addressing in read / do_code (foo.when.body, foo.try.otherwise, foo.loop.body, foo.return, etc). Off by default."
}
},
"description": "Experimental feature toggles. Off by default."
},
"ccFlags": {
"type": "object",
"description": "Claude CLI environment overrides. Each key/value is spread into the nest spawn env AFTER clwnd's defaults, so user entries override clwnd's. Use to re-enable CLAUDE_CODE_DISABLE_* flags clwnd turns off, or set arbitrary CC-facing env vars.",
"additionalProperties": {
"type": ["string", "number", "boolean"]
}
},
"compaction": {
"type": "string",
"enum": ["off", "curate"],
"description": "Compaction behavior for manually-triggered compaction (the 'compact' button in OC TUI). Auto-compaction is permanently off for clwnd models because their limit.context is set to 0 in opencode.json by install — OC's overflow check skips, no 'compacting…' hiccup, Claude CLI's native microcompaction handles overflow. 'off' (default) — manual compact stub-returns, no JSONL prune. 'curate' — manual compact triggers clwnd's surgical JSONL prune (strips thinking blocks, trims old tool_results). Other providers' compaction is untouched."
}
}
}