@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.
@@ -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.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": { "type": "string" },
45
+ "items": {
46
+ "type": "string"
47
+ },
46
48
  "default": []
47
49
  },
48
50
  "highRiskTools": {
49
51
  "type": "array",
50
- "items": { "type": "string" },
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": ["low", "medium", "high"],
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": { "type": "string", "enum": ["budget", "standard", "premium"], "default": "standard" },
77
- "initialTurnTier": { "type": "string", "enum": ["budget", "standard", "premium"], "default": "premium" },
78
- "validationTier": { "type": "string", "enum": ["budget", "standard", "premium"], "default": "standard" },
79
- "subagentTier": { "type": "string", "enum": ["budget", "standard", "premium"] },
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": { "type": "string" },
84
- "standard": { "type": "string" },
85
- "premium": { "type": "string" }
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.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.1",
55
+ "@oh-my-matrix/permission-policy": "^0.1.3",
56
56
  "openclaw": ">=2026.5.28 <2027"
57
57
  },
58
58
  "devDependencies": {