substrate-ai 0.1.17 → 0.1.19

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 CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  # Substrate
6
6
 
7
- Autonomous software development pipeline powered by multi-agent orchestration. Substrate takes a project idea from concept through analysis, planning, architecture, implementation, and code review — coordinating CLI-based AI agents (Claude Code, Codex, Gemini CLI) to do the work.
7
+ Substrate is an autonomous software development pipeline. Describe your project in plain language and Substrate handles the rest — coordinating multiple AI coding agents (Claude Code, Codex, Gemini CLI) working in parallel across isolated branches to take your idea from concept through implementation and code review.
8
8
 
9
- Substrate follows a modular monolith pattern running as a single Node.js process. The orchestrator never calls LLMs directly all intelligent work is delegated to CLI agents running as child processes in isolated git worktrees. The autonomous pipeline compiles BMAD methodology workflows into token-efficient agent dispatches.
9
+ Unlike API-based orchestrators, Substrate routes work through the CLI tools you already have installed, maximizing your existing AI subscriptions before falling back to pay-per-token billing. Runs are persistent and resumable no lost work, no re-execution waste, full cost visibility across every provider.
10
10
 
11
11
  ## Prerequisites
12
12
 
package/dist/cli/index.js CHANGED
@@ -390,7 +390,7 @@ const logger$30 = createLogger("init");
390
390
  * When true, prefix suggested commands with `npx `.
391
391
  */
392
392
  function isNpxInvocation() {
393
- return process.env["npm_execpath"] !== void 0 && (process.env["npm_execpath"].includes("npx") || process.env["npm_lifecycle_event"] === void 0);
393
+ return process.env["npm_command"] === "exec";
394
394
  }
395
395
  const INIT_EXIT_SUCCESS = 0;
396
396
  const INIT_EXIT_ERROR = 1;
@@ -15811,7 +15811,10 @@ function checkForUpdatesInBackground(currentVersion) {
15811
15811
  const { createVersionManager } = await import("../version-manager-impl-C0G2CEHB.js");
15812
15812
  const vm = createVersionManager();
15813
15813
  const result = await vm.checkForUpdates();
15814
- if (result.updateAvailable) process.stderr.write(`\nUpdate available: ${result.currentVersion} → ${result.latestVersion}. Run \`substrate upgrade\` to update.\n`);
15814
+ if (result.updateAvailable) {
15815
+ const pfx = process.env["npm_command"] === "exec" ? "npx " : "";
15816
+ process.stderr.write(`\nUpdate available: ${result.currentVersion} → ${result.latestVersion}. Run \`${pfx}substrate upgrade\` to update.\n`);
15817
+ }
15815
15818
  }).catch(() => {});
15816
15819
  }
15817
15820
  /** Main entry point */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrate-ai",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Substrate — multi-agent orchestration daemon for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",