substrate-ai 0.7.0 → 0.8.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substrate-ai",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Substrate — multi-agent orchestration daemon for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -88,7 +88,6 @@
88
88
  "eslint": "^9.17.0",
89
89
  "pino-pretty": "^13.0.0",
90
90
  "prettier": "^3.4.2",
91
- "sql.js": "^1.14.1",
92
91
  "tsdown": "^0.9.0",
93
92
  "tsx": "^4.19.2",
94
93
  "typescript": "^5.9.0",
@@ -38,6 +38,7 @@ Implement the story above completely. Follow tasks in exact order. Do not stop u
38
38
  - Write failing tests first
39
39
  - Make tests pass with minimal code
40
40
  - Refactor while keeping tests green
41
+ - **Use exact names from the story spec.** When the story specifies a field, variable, class, or method name, use that exact name in your implementation. Only deviate if the name would cause a compilation error (e.g., conflicts with a reserved word or inherited property), and add a code comment explaining why.
41
42
  - **If you import a new package that is not already in package.json, install it immediately** (`npm install <package>` or the appropriate workspace command). The build verification gate runs after dev-story — missing dependencies will fail the build and escalate the story.
42
43
 
43
44
  3. **After each task**: