@themoltnet/agent-daemon 0.27.1 → 0.27.2
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/dist/main.js +112 -1
- package/package.json +5 -5
package/dist/main.js
CHANGED
|
@@ -4936,6 +4936,97 @@ var VerificationRecord = _Object_({
|
|
|
4936
4936
|
$id: "VerificationRecord",
|
|
4937
4937
|
additionalProperties: false
|
|
4938
4938
|
});
|
|
4939
|
+
_Object_({
|
|
4940
|
+
artifacts: _Array_(_Object_({
|
|
4941
|
+
id: String$1({ format: "uuid" }),
|
|
4942
|
+
teamId: String$1({ format: "uuid" }),
|
|
4943
|
+
taskId: String$1({ format: "uuid" }),
|
|
4944
|
+
attemptN: Integer({ minimum: 1 }),
|
|
4945
|
+
kind: String$1({
|
|
4946
|
+
minLength: 1,
|
|
4947
|
+
maxLength: 100
|
|
4948
|
+
}),
|
|
4949
|
+
title: String$1({
|
|
4950
|
+
minLength: 1,
|
|
4951
|
+
maxLength: 255
|
|
4952
|
+
}),
|
|
4953
|
+
contentType: String$1({
|
|
4954
|
+
minLength: 1,
|
|
4955
|
+
maxLength: 200
|
|
4956
|
+
}),
|
|
4957
|
+
contentEncoding: Union([String$1({
|
|
4958
|
+
minLength: 1,
|
|
4959
|
+
maxLength: 100
|
|
4960
|
+
}), Null()]),
|
|
4961
|
+
sizeBytes: Integer({ minimum: 0 }),
|
|
4962
|
+
cid: String$1({
|
|
4963
|
+
minLength: 1,
|
|
4964
|
+
maxLength: 100
|
|
4965
|
+
}),
|
|
4966
|
+
createdByAgentId: String$1({ format: "uuid" }),
|
|
4967
|
+
expiresAt: Union([String$1({ format: "date-time" }), Null()]),
|
|
4968
|
+
createdAt: String$1({ format: "date-time" })
|
|
4969
|
+
}, { $id: "TaskArtifact" })),
|
|
4970
|
+
nextCursor: Union([String$1({ minLength: 1 }), Null()])
|
|
4971
|
+
}, { $id: "TaskArtifactList" });
|
|
4972
|
+
_Object_({
|
|
4973
|
+
limit: Optional(Integer({
|
|
4974
|
+
minimum: 1,
|
|
4975
|
+
maximum: 100
|
|
4976
|
+
})),
|
|
4977
|
+
cursor: Optional(String$1({ minLength: 1 }))
|
|
4978
|
+
}, {
|
|
4979
|
+
$id: "ListTaskArtifactsQuery",
|
|
4980
|
+
additionalProperties: false
|
|
4981
|
+
});
|
|
4982
|
+
_Object_({
|
|
4983
|
+
kind: String$1({
|
|
4984
|
+
minLength: 1,
|
|
4985
|
+
maxLength: 100
|
|
4986
|
+
}),
|
|
4987
|
+
title: String$1({
|
|
4988
|
+
minLength: 1,
|
|
4989
|
+
maxLength: 255
|
|
4990
|
+
}),
|
|
4991
|
+
contentType: Optional(String$1({
|
|
4992
|
+
minLength: 1,
|
|
4993
|
+
maxLength: 200
|
|
4994
|
+
})),
|
|
4995
|
+
contentEncoding: Optional(String$1({
|
|
4996
|
+
minLength: 1,
|
|
4997
|
+
maxLength: 100
|
|
4998
|
+
}))
|
|
4999
|
+
}, {
|
|
5000
|
+
$id: "UploadTaskArtifactQuery",
|
|
5001
|
+
additionalProperties: false
|
|
5002
|
+
});
|
|
5003
|
+
String$1({
|
|
5004
|
+
$id: "TaskArtifactContent",
|
|
5005
|
+
description: "Task artifact content stream.",
|
|
5006
|
+
format: "binary"
|
|
5007
|
+
});
|
|
5008
|
+
_Object_({ taskId: String$1({ format: "uuid" }) }, {
|
|
5009
|
+
$id: "TaskArtifactTaskParams",
|
|
5010
|
+
additionalProperties: false
|
|
5011
|
+
});
|
|
5012
|
+
_Object_({
|
|
5013
|
+
taskId: String$1({ format: "uuid" }),
|
|
5014
|
+
attemptN: Integer({ minimum: 1 })
|
|
5015
|
+
}, {
|
|
5016
|
+
$id: "TaskArtifactAttemptParams",
|
|
5017
|
+
additionalProperties: false
|
|
5018
|
+
});
|
|
5019
|
+
_Object_({
|
|
5020
|
+
taskId: String$1({ format: "uuid" }),
|
|
5021
|
+
attemptN: Integer({ minimum: 1 }),
|
|
5022
|
+
cid: String$1({
|
|
5023
|
+
minLength: 1,
|
|
5024
|
+
maxLength: 100
|
|
5025
|
+
})
|
|
5026
|
+
}, {
|
|
5027
|
+
$id: "TaskArtifactContentParams",
|
|
5028
|
+
additionalProperties: false
|
|
5029
|
+
});
|
|
4939
5030
|
//#endregion
|
|
4940
5031
|
//#region ../../node_modules/.pnpm/multiformats@13.4.2/node_modules/multiformats/dist/src/bytes.js
|
|
4941
5032
|
function coerce(o) {
|
|
@@ -5655,6 +5746,10 @@ var FreeformArtifact = _Object_({
|
|
|
5655
5746
|
description: Optional(String$1({ minLength: 1 })),
|
|
5656
5747
|
url: Optional(String$1({ minLength: 1 })),
|
|
5657
5748
|
path: Optional(String$1({ minLength: 1 })),
|
|
5749
|
+
cid: Optional(String$1({ minLength: 1 })),
|
|
5750
|
+
contentType: Optional(String$1({ minLength: 1 })),
|
|
5751
|
+
contentEncoding: Optional(String$1({ minLength: 1 })),
|
|
5752
|
+
sizeBytes: Optional(Integer({ minimum: 0 })),
|
|
5658
5753
|
body: Optional(String$1({ maxLength: 65536 }))
|
|
5659
5754
|
}, {
|
|
5660
5755
|
$id: "FreeformArtifact",
|
|
@@ -9084,7 +9179,23 @@ var TaskRef = _Object_({
|
|
|
9084
9179
|
url: Optional(String$1()),
|
|
9085
9180
|
commit_sha: Optional(String$1()),
|
|
9086
9181
|
snapshot_cid: Optional(Cid)
|
|
9087
|
-
}))
|
|
9182
|
+
})),
|
|
9183
|
+
artifact: Optional(_Object_({
|
|
9184
|
+
cid: Cid,
|
|
9185
|
+
attemptN: Integer({ minimum: 1 }),
|
|
9186
|
+
kind: Optional(String$1({
|
|
9187
|
+
minLength: 1,
|
|
9188
|
+
maxLength: 100
|
|
9189
|
+
})),
|
|
9190
|
+
title: Optional(String$1({
|
|
9191
|
+
minLength: 1,
|
|
9192
|
+
maxLength: 255
|
|
9193
|
+
})),
|
|
9194
|
+
contentType: Optional(String$1({
|
|
9195
|
+
minLength: 1,
|
|
9196
|
+
maxLength: 200
|
|
9197
|
+
}))
|
|
9198
|
+
}, { additionalProperties: false }))
|
|
9088
9199
|
}, {
|
|
9089
9200
|
$id: "TaskRef",
|
|
9090
9201
|
additionalProperties: false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/agent-daemon",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.2",
|
|
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,17 +45,17 @@
|
|
|
45
45
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
46
46
|
"pino": "^10.3.1",
|
|
47
47
|
"pino-pretty": "^13.1.3",
|
|
48
|
-
"@themoltnet/sdk": "0.
|
|
49
|
-
"@themoltnet/
|
|
50
|
-
"@themoltnet/
|
|
48
|
+
"@themoltnet/sdk": "0.115.0",
|
|
49
|
+
"@themoltnet/pi-extension": "0.29.0",
|
|
50
|
+
"@themoltnet/agent-runtime": "0.32.0"
|
|
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/observability": "0.1.0",
|
|
58
57
|
"@moltnet/crypto-service": "0.1.0",
|
|
58
|
+
"@moltnet/observability": "0.1.0",
|
|
59
59
|
"@moltnet/tasks": "0.1.0",
|
|
60
60
|
"@moltnet/bootstrap": "0.1.0"
|
|
61
61
|
},
|