substrate-ai 0.12.0 → 0.13.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.
package/dist/schema.sql CHANGED
@@ -274,6 +274,11 @@ CREATE TABLE IF NOT EXISTS story_dependencies (
274
274
  PRIMARY KEY (story_key, depends_on)
275
275
  );
276
276
 
277
+ -- Migration: add created_at to story_dependencies (added in v0.12.0)
278
+ SET @_sd_created_at_exists = (SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'story_dependencies' AND COLUMN_NAME = 'created_at');
279
+ SET @_sql = IF(@_sd_created_at_exists = 0, 'ALTER TABLE story_dependencies ADD COLUMN created_at DATETIME DEFAULT NULL', 'SELECT 1');
280
+ PREPARE _add_col FROM @_sql; EXECUTE _add_col; DEALLOCATE PREPARE _add_col;
281
+
277
282
  -- ---------------------------------------------------------------------------
278
283
  -- ready_stories view (Epic 31-1)
279
284
  -- ---------------------------------------------------------------------------
@@ -1,5 +1,5 @@
1
- import "./dist-eNB_v7Iy.js";
1
+ import "./dist-CLvAwmT7.js";
2
2
  import "./version-manager-impl-BmOWu8ml.js";
3
- import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-DvEXi3Fq.js";
3
+ import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-DT0I_-1E.js";
4
4
 
5
5
  export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
@@ -1,4 +1,4 @@
1
- import { createVersionManager } from "./dist-eNB_v7Iy.js";
1
+ import { createVersionManager } from "./dist-CLvAwmT7.js";
2
2
  import { execSync, spawn } from "child_process";
3
3
  import * as readline from "readline";
4
4
 
@@ -123,4 +123,4 @@ function registerUpgradeCommand(program) {
123
123
 
124
124
  //#endregion
125
125
  export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
126
- //# sourceMappingURL=upgrade-DvEXi3Fq.js.map
126
+ //# sourceMappingURL=upgrade-DT0I_-1E.js.map
@@ -1,4 +1,4 @@
1
- import { VersionManagerImpl, createVersionManager } from "./dist-eNB_v7Iy.js";
1
+ import { VersionManagerImpl, createVersionManager } from "./dist-CLvAwmT7.js";
2
2
  import "./version-manager-impl-BmOWu8ml.js";
3
3
 
4
4
  export { createVersionManager };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrate-ai",
3
- "version": "0.12.0",
3
+ "version": "0.13.1",
4
4
  "description": "Substrate — multi-agent orchestration daemon for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1,4 +0,0 @@
1
- import { AdapterRegistry } from "./dist-eNB_v7Iy.js";
2
- import "./adapter-registry-DXLMTmfD.js";
3
-
4
- export { AdapterRegistry };
@@ -1,9 +0,0 @@
1
- import "./health-CiDi90gC.js";
2
- import "./logger-KeHncl-f.js";
3
- import "./helpers-DTp3VJ2-.js";
4
- import "./dist-eNB_v7Iy.js";
5
- import { registerRunCommand, runRunAction } from "./run-CrIc5FY5.js";
6
- import "./routing-CcBOCuC9.js";
7
- import "./decisions-C0pz9Clx.js";
8
-
9
- export { runRunAction };