@automatalabs/workflows 0.50.0 → 0.50.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.
@@ -34082,7 +34082,7 @@ var WorkflowScriptResources = class {
34082
34082
  // ../mcp-server/src/server.ts
34083
34083
  var SERVER_NAME = "agentprism-workflow";
34084
34084
  var require2 = createRequire(import.meta.url);
34085
- var SERVER_VERSION = true ? "0.30.0" : require2("../package.json").version;
34085
+ var SERVER_VERSION = true ? "0.30.1" : require2("../package.json").version;
34086
34086
  var SERVER_INSTRUCTIONS = [
34087
34087
  "This server exposes two model-facing tools for orchestrating multi-agent work. Both spawn subagents over the same ACP backends \u2014 the registry built-ins Claude, Codex, OpenCode, and pi, plus any registered custom agents \u2014 and key their durable state by an absolute projectDir (required on the shared daemon; defaults to the server's own project in single-project mode). Backend credentials come from each agent's own login (claude, codex, opencode, pi), so there is nothing auth-shaped to configure here.",
34088
34088
  '\u2022 workflow \u2014 DETERMINISTIC BATCH orchestration. Supply a JavaScript workflow script (inline or by absolute scriptPath) that fans out agent() subagents and optional checkpoint() gates; it runs to completion in the foreground, or background:true returns a durable runId for bounded action:"await"/"inspect"/"stop" calls, with journaling, replay, and resumeFromRunId. Reach for it when the orchestration is known up front and you want it repeatable and resumable. The user-invocable author-workflow prompt helps write scripts.',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automatalabs/workflows",
3
- "version": "0.50.0",
3
+ "version": "0.50.1",
4
4
  "license": "Apache-2.0",
5
5
  "engines": {
6
6
  "node": ">=22"
@@ -31,10 +31,10 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "typebox": "1.3.2",
34
- "@automatalabs/repl-engine": "0.3.3",
34
+ "@automatalabs/repl-engine": "0.3.4",
35
35
  "@automatalabs/shared-types": "0.31.0",
36
- "@automatalabs/acp-agents": "0.38.0",
37
- "@automatalabs/workflow-engine": "0.36.1"
36
+ "@automatalabs/workflow-engine": "0.36.1",
37
+ "@automatalabs/acp-agents": "0.38.1"
38
38
  },
39
39
  "devDependencies": {
40
40
  "esbuild": "^0.28.1"