substrate-ai 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/dist/cli/index.js +12 -7
  2. package/package.json +1 -1
package/dist/cli/index.js CHANGED
@@ -740,13 +740,18 @@ async function runInitAction(options) {
740
740
  }, "json", true) + "\n");
741
741
  else {
742
742
  process.stdout.write(`\n Substrate initialized successfully!\n\n`);
743
- process.stdout.write(` Created:\n`);
744
- process.stdout.write(` ${configPath}\n`);
745
- process.stdout.write(` ${routingPolicyPath}\n`);
746
- process.stdout.write(` ${dbPath}\n`);
747
- process.stdout.write(`\n ${successMsg}\n`);
748
- const prefix = process.env["npm_command"] === "exec" ? "npx " : "";
749
- process.stdout.write(`\n Next steps:\n 1. Run \`${prefix}substrate adapters check\` to verify your setup\n 2. Run \`${prefix}substrate config show\` to review your configuration\n 3. Run \`${prefix}substrate run --from analysis --concept "your idea"\` to start the pipeline\n`);
743
+ const healthRows = buildAdapterHealthRows(discoveryReport.results);
744
+ if (healthRows.length > 0) {
745
+ process.stdout.write(` Agents:\n`);
746
+ const table = formatAdapterHealthTable(healthRows);
747
+ for (const line of table.split("\n")) process.stdout.write(` ${line}\n`);
748
+ process.stdout.write("\n");
749
+ }
750
+ process.stdout.write(` Scaffolded:\n`);
751
+ process.stdout.write(` CLAUDE.md pipeline instructions for Claude Code\n`);
752
+ process.stdout.write(` .claude/commands/ /substrate-run, /substrate-supervisor, /substrate-metrics\n`);
753
+ process.stdout.write(` .substrate/ config, database, routing policy\n`);
754
+ process.stdout.write("\n Next steps:\n 1. Start a Claude Code session in this project\n 2. Tell Claude: \"Run the substrate pipeline\"\n 3. Or use the /substrate-run slash command for a guided run\n");
750
755
  }
751
756
  return INIT_EXIT_SUCCESS;
752
757
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrate-ai",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Substrate — multi-agent orchestration daemon for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",