forked from Martian-Engineering/lossless-claw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
76 lines (76 loc) · 1.84 KB
/
openclaw.plugin.json
File metadata and controls
76 lines (76 loc) · 1.84 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
{
"id": "lossless-claw",
"uiHints": {
"contextThreshold": {
"label": "Context Threshold",
"help": "Fraction of context window that triggers compaction (0.0–1.0)"
},
"incrementalMaxDepth": {
"label": "Incremental Max Depth",
"help": "How deep incremental compaction goes (0 = leaf only, -1 = unlimited)"
},
"freshTailCount": {
"label": "Fresh Tail Count",
"help": "Number of recent messages protected from compaction"
},
"dbPath": {
"label": "Database Path",
"help": "Path to LCM SQLite database (default: ~/.openclaw/lcm.db)"
},
"summaryModel": {
"label": "Summary Model",
"help": "Model override for LCM summarization (e.g., 'gpt-5.4' or 'openai-resp/gpt-5.4')"
},
"summaryProvider": {
"label": "Summary Provider",
"help": "Provider override for LCM summarization (e.g., 'openai-resp')"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"contextThreshold": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"incrementalMaxDepth": {
"type": "integer",
"minimum": -1
},
"freshTailCount": {
"type": "integer",
"minimum": 1
},
"leafMinFanout": {
"type": "integer",
"minimum": 2
},
"condensedMinFanout": {
"type": "integer",
"minimum": 2
},
"condensedMinFanoutHard": {
"type": "integer",
"minimum": 2
},
"dbPath": {
"type": "string"
},
"largeFileThresholdTokens": {
"type": "integer",
"minimum": 1000
},
"summaryModel": {
"type": "string"
},
"summaryProvider": {
"type": "string"
}
}
}
}