@themoltnet/agent-daemon 0.29.4 → 0.29.5
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 +1 -1
- package/package.json +12 -30
package/README.md
CHANGED
|
@@ -354,7 +354,7 @@ the review itself and for any requested outward action such as `gh pr comment`.
|
|
|
354
354
|
|
|
355
355
|
If you want an automated local check without real GitHub mutation, use the
|
|
356
356
|
stubbed `pr_review` lifecycle coverage in
|
|
357
|
-
`apps/agent-daemon
|
|
357
|
+
`apps/agent-daemon-e2e/src/daemon.e2e.test.ts` instead of this manual smoke path.
|
|
358
358
|
|
|
359
359
|
### What to verify
|
|
360
360
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/agent-daemon",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.5",
|
|
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.",
|
|
@@ -17,6 +17,12 @@
|
|
|
17
17
|
"homepage": "https://themolt.net",
|
|
18
18
|
"main": "./dist/main.js",
|
|
19
19
|
"types": "./dist/main.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/main.d.ts",
|
|
23
|
+
"import": "./dist/main.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
20
26
|
"bin": {
|
|
21
27
|
"moltnet-agent": "./dist/main.js"
|
|
22
28
|
},
|
|
@@ -45,17 +51,17 @@
|
|
|
45
51
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
46
52
|
"pino": "^10.3.1",
|
|
47
53
|
"pino-pretty": "^13.1.3",
|
|
48
|
-
"@themoltnet/agent-runtime": "0.
|
|
49
|
-
"@themoltnet/
|
|
50
|
-
"@themoltnet/
|
|
54
|
+
"@themoltnet/agent-runtime": "0.35.0",
|
|
55
|
+
"@themoltnet/sdk": "0.119.0",
|
|
56
|
+
"@themoltnet/pi-extension": "0.33.0"
|
|
51
57
|
},
|
|
52
58
|
"devDependencies": {
|
|
53
59
|
"tsx": "^4.7.0",
|
|
54
60
|
"typescript": "~5.9.2",
|
|
55
61
|
"vite": "^8.0.0",
|
|
56
62
|
"vitest": "^3.0.0",
|
|
57
|
-
"@moltnet/crypto-service": "0.1.0",
|
|
58
63
|
"@moltnet/bootstrap": "0.1.0",
|
|
64
|
+
"@moltnet/crypto-service": "0.1.0",
|
|
59
65
|
"@moltnet/observability": "0.1.0",
|
|
60
66
|
"@moltnet/tasks": "0.1.0"
|
|
61
67
|
},
|
|
@@ -66,31 +72,7 @@
|
|
|
66
72
|
"scope:agent",
|
|
67
73
|
"platform:cli"
|
|
68
74
|
],
|
|
69
|
-
"targets": {
|
|
70
|
-
"e2e": {
|
|
71
|
-
"cache": true,
|
|
72
|
-
"executor": "nx:run-commands",
|
|
73
|
-
"inputs": [
|
|
74
|
-
"default",
|
|
75
|
-
"^production",
|
|
76
|
-
"{projectRoot}/vitest.config.e2e.ts",
|
|
77
|
-
"{projectRoot}/e2e/**/*",
|
|
78
|
-
{
|
|
79
|
-
"env": "MOLTNET_AGENT_DAEMON_LIVE_LLM_E2E"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"externalDependencies": [
|
|
83
|
-
"vitest"
|
|
84
|
-
]
|
|
85
|
-
}
|
|
86
|
-
],
|
|
87
|
-
"options": {
|
|
88
|
-
"command": "vitest run --config vitest.config.e2e.ts",
|
|
89
|
-
"cwd": "apps/agent-daemon"
|
|
90
|
-
},
|
|
91
|
-
"outputs": []
|
|
92
|
-
}
|
|
93
|
-
}
|
|
75
|
+
"targets": {}
|
|
94
76
|
},
|
|
95
77
|
"scripts": {
|
|
96
78
|
"cli": "tsx src/main.ts",
|