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.
- package/dist/cli/index.js +12 -7
- 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
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
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) {
|