@themoltnet/agent-daemon 0.29.6 → 0.29.7
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/dist/main.js +4 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ host-exec command is safe to run without a dialog.
|
|
|
102
102
|
### Remote runtime profiles
|
|
103
103
|
|
|
104
104
|
The canonical user-facing guide lives in the public docs:
|
|
105
|
-
[
|
|
105
|
+
[Running Agents § Runtime Profiles](https://docs.themolt.net/operate/running-agents#runtime-profiles).
|
|
106
106
|
|
|
107
107
|
## Correlation anchors
|
|
108
108
|
|
package/dist/main.js
CHANGED
|
@@ -4826,7 +4826,7 @@ _Object_({
|
|
|
4826
4826
|
* (server-side schema check). Self-assessment is a truthful self-rating,
|
|
4827
4827
|
* NOT enforcement — `verification.passed=false` does not block /complete
|
|
4828
4828
|
* and does not affect `acceptedAttemptN`. See
|
|
4829
|
-
* `docs/
|
|
4829
|
+
* `docs/use/tasks-and-runtime.md` for the full producer/judge flow.
|
|
4830
4830
|
*
|
|
4831
4831
|
* **Binding evaluation** (judgment tasks: `assess_brief`, `judge_pack`).
|
|
4832
4832
|
* A separate task whose IS the application of `successCriteria` to
|
|
@@ -10600,6 +10600,7 @@ async function resolveRuntimeProfile(options) {
|
|
|
10600
10600
|
allowedWorkspaceModes: profile.allowedWorkspaceModes,
|
|
10601
10601
|
requiredEnv: profile.requiredEnv,
|
|
10602
10602
|
requiredTools: profile.requiredTools,
|
|
10603
|
+
context: profile.context ?? [],
|
|
10603
10604
|
sandboxConfig: profile.sandbox,
|
|
10604
10605
|
mountPath: resolve(options.cwd),
|
|
10605
10606
|
source: `runtime-profile:${profile.id}`
|
|
@@ -11301,6 +11302,7 @@ async function runPolling(opts) {
|
|
|
11301
11302
|
maxOutputTokens: profile.maxOutputTokens,
|
|
11302
11303
|
sandboxConfig: sandbox.config,
|
|
11303
11304
|
forwardEnv: profile.requiredEnv,
|
|
11305
|
+
runtimeProfileContext: profile.context,
|
|
11304
11306
|
makeExecutionPlan: (task) => executionPlans.getOrCreate(task),
|
|
11305
11307
|
makeOnTurnEvent: makeTurnEventHandlerFactory(taskLogger),
|
|
11306
11308
|
maxTurns: common.maxTurns,
|
|
@@ -11556,6 +11558,7 @@ async function runOnce(argv) {
|
|
|
11556
11558
|
maxOutputTokens: profile.maxOutputTokens,
|
|
11557
11559
|
sandboxConfig: sandbox.config,
|
|
11558
11560
|
forwardEnv: profile.requiredEnv,
|
|
11561
|
+
runtimeProfileContext: profile.context,
|
|
11559
11562
|
makeExecutionPlan: (claimedTask) => executionPlans.getOrCreate(claimedTask),
|
|
11560
11563
|
onTurnEvent: makeTurnEventHandler(rootLogger, { taskId }),
|
|
11561
11564
|
maxTurns: opts.maxTurns,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/agent-daemon",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.7",
|
|
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.",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
52
52
|
"pino": "^10.3.1",
|
|
53
53
|
"pino-pretty": "^13.1.3",
|
|
54
|
-
"@themoltnet/
|
|
55
|
-
"@themoltnet/pi-extension": "0.33.
|
|
56
|
-
"@themoltnet/
|
|
54
|
+
"@themoltnet/sdk": "0.119.0",
|
|
55
|
+
"@themoltnet/pi-extension": "0.33.1",
|
|
56
|
+
"@themoltnet/agent-runtime": "0.35.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"tsx": "^4.7.0",
|