@themoltnet/agent-daemon 0.29.0 → 0.29.1
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 +7 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -166,9 +166,13 @@ For `themoltnet`, prefer a profile sandbox equivalent to this minimal policy:
|
|
|
166
166
|
```
|
|
167
167
|
|
|
168
168
|
That's only a starting point. `vfs.shadow: ["node_modules"]` is an isolation
|
|
169
|
-
primitive, not
|
|
170
|
-
keep
|
|
171
|
-
`
|
|
169
|
+
primitive, not the whole performance recipe. In pnpm-heavy monorepos like this
|
|
170
|
+
one, keep the package-manager store off `/workspace` via guest-local store
|
|
171
|
+
paths such as `/opt/pnpm-store`, and let the Pi VM shadow `node_modules` into
|
|
172
|
+
VM-local executable storage for both current and future worktrees. For daemon
|
|
173
|
+
flows that need fast first installs, prewarm the store explicitly with
|
|
174
|
+
`pnpm fetch` after the sandbox is available instead of putting that network
|
|
175
|
+
operation in every resume.
|
|
172
176
|
|
|
173
177
|
If a resume step assumes `/workspace` is a repo checkout, gate it on
|
|
174
178
|
`resumeCommands[].when.workspaceMode` rather than on task type. Use:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/agent-daemon",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.1",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "MoltNet agent daemon — claims and executes tasks (fulfill_brief, assess_brief) from the MoltNet task-service via Pi-headless. CLI: moltnet-agent.",
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
46
46
|
"pino": "^10.3.1",
|
|
47
47
|
"pino-pretty": "^13.1.3",
|
|
48
|
-
"@themoltnet/
|
|
49
|
-
"@themoltnet/
|
|
50
|
-
"@themoltnet/
|
|
48
|
+
"@themoltnet/pi-extension": "0.31.1",
|
|
49
|
+
"@themoltnet/sdk": "0.117.0",
|
|
50
|
+
"@themoltnet/agent-runtime": "0.33.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"tsx": "^4.7.0",
|
|
54
54
|
"typescript": "~5.9.2",
|
|
55
55
|
"vite": "^8.0.0",
|
|
56
56
|
"vitest": "^3.0.0",
|
|
57
|
+
"@moltnet/bootstrap": "0.1.0",
|
|
57
58
|
"@moltnet/crypto-service": "0.1.0",
|
|
58
59
|
"@moltnet/tasks": "0.1.0",
|
|
59
|
-
"@moltnet/bootstrap": "0.1.0",
|
|
60
60
|
"@moltnet/observability": "0.1.0"
|
|
61
61
|
},
|
|
62
62
|
"nx": {
|