@almadar/std 16.28.0 → 16.28.1
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/behaviors/registry/agent/organisms/std-agent-assistant.orb +1317 -1117
- package/behaviors/registry/agent/organisms/std-agent-pipeline.orb +2268 -2084
- package/canonical-operators.json +13 -1
- package/dist/behaviors/registry/agent/organisms/std-agent-assistant.orb +1317 -1117
- package/dist/behaviors/registry/agent/organisms/std-agent-pipeline.orb +2268 -2084
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +12 -0
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +12 -0
- package/dist/modules/index.js.map +1 -1
- package/dist/registry/agent/organisms/std-agent-assistant.orb +1317 -1117
- package/dist/registry/agent/organisms/std-agent-pipeline.orb +2268 -2084
- package/dist/registry.js +12 -0
- package/dist/registry.js.map +1 -1
- package/package.json +1 -1
package/dist/registry.js
CHANGED
|
@@ -480,6 +480,18 @@ var CORE_OPERATORS = {
|
|
|
480
480
|
example: '["notify", "in_app", "Task created successfully"]',
|
|
481
481
|
effect: { kind: "notify" }
|
|
482
482
|
},
|
|
483
|
+
log: {
|
|
484
|
+
module: "core",
|
|
485
|
+
category: "effect",
|
|
486
|
+
minArity: 1,
|
|
487
|
+
maxArity: 1,
|
|
488
|
+
description: "Emit a structured info log line (compiled + runtime)",
|
|
489
|
+
hasSideEffects: true,
|
|
490
|
+
returnType: "void",
|
|
491
|
+
params: [{ name: "message", type: STRING, description: "Log message" }],
|
|
492
|
+
example: '["log", "Context below compact threshold"]',
|
|
493
|
+
effect: { kind: "log" }
|
|
494
|
+
},
|
|
483
495
|
spawn: {
|
|
484
496
|
module: "core",
|
|
485
497
|
category: "effect",
|