substrate-ai 0.19.22 → 0.19.23

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/cli/index.js CHANGED
@@ -7493,8 +7493,8 @@ async function runCancelAction(options) {
7493
7493
  await initSchema(adapter);
7494
7494
  const runningRuns = await getRunningPipelineRuns(adapter);
7495
7495
  for (const run of runningRuns) {
7496
- await updatePipelineRun(adapter, run.id, { status: "cancelled" });
7497
- if (outputFormat === "human") process.stdout.write(`Marked pipeline run ${run.id} as cancelled.\n`);
7496
+ await updatePipelineRun(adapter, run.id, { status: "stopped" });
7497
+ if (outputFormat === "human") process.stdout.write(`Marked pipeline run ${run.id} as stopped.\n`);
7498
7498
  }
7499
7499
  } finally {
7500
7500
  await adapter.close();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrate-ai",
3
- "version": "0.19.22",
3
+ "version": "0.19.23",
4
4
  "description": "Substrate — multi-agent orchestration daemon for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",