c8ctl-plugin-nano 1.61.1 → 1.62.0
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 -4
- package/agent-instance.mjs +1193 -224
- package/agentic.mjs +4 -2
- package/c8ctl-plugin.js +424 -74
- package/package.json +8 -8
- package/supervisor.dist.js +4 -4
package/agentic.mjs
CHANGED
|
@@ -97,8 +97,10 @@ export * as sessionAcp from '@nanobpm/agentic/session/acp';
|
|
|
97
97
|
// `httpC8RestReader` to enumerate deployed process definitions and read each
|
|
98
98
|
// one's BPMN XML straight from the engine the worker already talks to — the
|
|
99
99
|
// zero-config enrolment source. The header-filter that narrows those leaves to
|
|
100
|
-
// *agent* job types lives in the plugin (`scanAgentTaskLeaves`),
|
|
101
|
-
// package's type/element/process
|
|
100
|
+
// *agent* job types lives in the plugin (`scanAgentTaskLeaves`), narrowing the
|
|
101
|
+
// package's type/element/process scanner to leaves carrying the single-convention
|
|
102
|
+
// external-agent marker (`<zeebe:agentDefinition agentType="external">`, issue
|
|
103
|
+
// #235) and dropping any opted out via `io.nanobpm.agentTask.autoSubscribe="false"`.
|
|
102
104
|
// ---------------------------------------------------------------------------
|
|
103
105
|
export * as demand from '@nanobpm/agentic/demand';
|
|
104
106
|
|