@oh-my-matrix/autopilot 3.0.0 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +164 -13
- package/dist/index.js.map +1 -1
- package/dist/src/effort-injection.d.ts.map +1 -1
- package/dist/src/effort-injection.js +4 -0
- package/dist/src/effort-injection.js.map +1 -1
- package/dist/src/logger.d.ts +8 -0
- package/dist/src/logger.d.ts.map +1 -1
- package/dist/src/logger.js.map +1 -1
- package/dist/src/state-persister.d.ts +117 -0
- package/dist/src/state-persister.d.ts.map +1 -0
- package/dist/src/state-persister.js +454 -0
- package/dist/src/state-persister.js.map +1 -0
- package/openclaw.plugin.json +56 -11
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "autopilot",
|
|
3
3
|
"name": "Autopilot Continuous Mode",
|
|
4
4
|
"description": "OpenClaw-native continuous execution for long-running tasks",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.3",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"activation": {
|
|
8
8
|
"onStartup": true
|
|
@@ -42,12 +42,16 @@
|
|
|
42
42
|
},
|
|
43
43
|
"excludedAgents": {
|
|
44
44
|
"type": "array",
|
|
45
|
-
"items": {
|
|
45
|
+
"items": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
46
48
|
"default": []
|
|
47
49
|
},
|
|
48
50
|
"highRiskTools": {
|
|
49
51
|
"type": "array",
|
|
50
|
-
"items": {
|
|
52
|
+
"items": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
51
55
|
"default": []
|
|
52
56
|
},
|
|
53
57
|
"tokenBudget": {
|
|
@@ -60,7 +64,11 @@
|
|
|
60
64
|
},
|
|
61
65
|
"thinkingIntensity": {
|
|
62
66
|
"type": "string",
|
|
63
|
-
"enum": [
|
|
67
|
+
"enum": [
|
|
68
|
+
"low",
|
|
69
|
+
"medium",
|
|
70
|
+
"high"
|
|
71
|
+
],
|
|
64
72
|
"default": "high",
|
|
65
73
|
"description": "Thinking intensity for autopilot turns. 'high' = extended thinking (default), 'medium' = moderate, 'low' = standard effort."
|
|
66
74
|
},
|
|
@@ -73,16 +81,53 @@
|
|
|
73
81
|
"type": "object",
|
|
74
82
|
"description": "Model tier routing per execution phase. Maps tiers to concrete model IDs via modelIds; tiers without a modelId inherit the declared model.",
|
|
75
83
|
"properties": {
|
|
76
|
-
"defaultTier": {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
84
|
+
"defaultTier": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"enum": [
|
|
87
|
+
"budget",
|
|
88
|
+
"standard",
|
|
89
|
+
"premium"
|
|
90
|
+
],
|
|
91
|
+
"default": "standard"
|
|
92
|
+
},
|
|
93
|
+
"initialTurnTier": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"enum": [
|
|
96
|
+
"budget",
|
|
97
|
+
"standard",
|
|
98
|
+
"premium"
|
|
99
|
+
],
|
|
100
|
+
"default": "premium"
|
|
101
|
+
},
|
|
102
|
+
"validationTier": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"enum": [
|
|
105
|
+
"budget",
|
|
106
|
+
"standard",
|
|
107
|
+
"premium"
|
|
108
|
+
],
|
|
109
|
+
"default": "standard"
|
|
110
|
+
},
|
|
111
|
+
"subagentTier": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"enum": [
|
|
114
|
+
"budget",
|
|
115
|
+
"standard",
|
|
116
|
+
"premium"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
80
119
|
"modelIds": {
|
|
81
120
|
"type": "object",
|
|
82
121
|
"properties": {
|
|
83
|
-
"budget": {
|
|
84
|
-
|
|
85
|
-
|
|
122
|
+
"budget": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"standard": {
|
|
126
|
+
"type": "string"
|
|
127
|
+
},
|
|
128
|
+
"premium": {
|
|
129
|
+
"type": "string"
|
|
130
|
+
}
|
|
86
131
|
},
|
|
87
132
|
"additionalProperties": false
|
|
88
133
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-matrix/autopilot",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "Autopilot: OpenClaw-native continuous execution for long-running tasks",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"prepublishOnly": "pnpm run build"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@oh-my-matrix/permission-policy": "^0.1.
|
|
55
|
+
"@oh-my-matrix/permission-policy": "^0.1.3",
|
|
56
56
|
"openclaw": ">=2026.5.28 <2027"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|