c8ctl-plugin-nano 1.61.1 → 1.61.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/agent-instance.mjs +1149 -224
- package/c8ctl-plugin.js +3 -1
- package/package.json +8 -8
package/c8ctl-plugin.js
CHANGED
|
@@ -9082,8 +9082,10 @@ async function workAgent(req, flags) {
|
|
|
9082
9082
|
const active = await agentInstanceProducer.activate();
|
|
9083
9083
|
if (active) {
|
|
9084
9084
|
logger.info(`[${jobType}] AgentInstance producer active for external agent job (${aiCorr}).`);
|
|
9085
|
+
} else if (agentInstanceProducer.retryPending) {
|
|
9086
|
+
logger.info(`[${jobType}] AgentInstance producer not yet active for external agent job (${aiCorr}) — the initial createAgentInstance did not mint a key in time (transient rejection, no-key response, or bounded-out create), but the create stays armed to retry on the ACP hot path, so a run that recovers can still record a durable transcript (job completion unaffected).`);
|
|
9085
9087
|
} else {
|
|
9086
|
-
logger.info(`[${jobType}] AgentInstance producer unavailable for external agent job (${aiCorr}) — activation not attempted
|
|
9088
|
+
logger.info(`[${jobType}] AgentInstance producer unavailable for external agent job (${aiCorr}) — activation not attempted: the host SDK lacks createAgentInstance/updateAgentInstance or the ACP classifier is unavailable; continuing without a durable transcript (job completion unaffected).`);
|
|
9087
9089
|
}
|
|
9088
9090
|
} catch (err) {
|
|
9089
9091
|
logger.warn(`[${jobType}] AgentInstance producer activate() threw (${aiCorr}) — ${oneLineLog(err?.message || err)}; continuing without a durable transcript (job completion unaffected).`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "c8ctl-plugin-nano",
|
|
3
|
-
"version": "1.61.
|
|
3
|
+
"version": "1.61.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "c8ctl plugin to start, inspect, and stop a local Nano BPM (nanobpmn) cluster",
|
|
6
6
|
"main": "c8ctl-plugin.js",
|
|
@@ -74,12 +74,12 @@
|
|
|
74
74
|
},
|
|
75
75
|
"optionalDependencies": {
|
|
76
76
|
"node-pty": "^1.0.0",
|
|
77
|
-
"@nanobpm/c8ctl-plugin-nano-darwin-arm64": "1.61.
|
|
78
|
-
"@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.61.
|
|
79
|
-
"@nanobpm/c8ctl-plugin-nano-linux-x64": "1.61.
|
|
80
|
-
"@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.61.
|
|
81
|
-
"@nanobpm/c8ctl-plugin-nano-linux-armv7": "1.61.
|
|
82
|
-
"@nanobpm/c8ctl-plugin-nano-linux-armv6": "1.61.
|
|
83
|
-
"@nanobpm/c8ctl-plugin-nano-win32-x64": "1.61.
|
|
77
|
+
"@nanobpm/c8ctl-plugin-nano-darwin-arm64": "1.61.2",
|
|
78
|
+
"@nanobpm/c8ctl-plugin-nano-darwin-x64": "1.61.2",
|
|
79
|
+
"@nanobpm/c8ctl-plugin-nano-linux-x64": "1.61.2",
|
|
80
|
+
"@nanobpm/c8ctl-plugin-nano-linux-arm64": "1.61.2",
|
|
81
|
+
"@nanobpm/c8ctl-plugin-nano-linux-armv7": "1.61.2",
|
|
82
|
+
"@nanobpm/c8ctl-plugin-nano-linux-armv6": "1.61.2",
|
|
83
|
+
"@nanobpm/c8ctl-plugin-nano-win32-x64": "1.61.2"
|
|
84
84
|
}
|
|
85
85
|
}
|