@substrate-ai/sdlc 0.20.1 → 0.20.2

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/README.md +36 -0
  2. package/package.json +5 -2
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # @substrate-ai/sdlc
2
+
3
+ SDLC-specific orchestration for the [Substrate](https://github.com/johnplanow/substrate) platform. This package contains the phase-aware handlers, graph orchestrator, DOT pipeline topology, verification pipeline, learning loop, and unified run manifest that drive Substrate's software development lifecycle runs.
4
+
5
+ Depends on [`@substrate-ai/core`](https://www.npmjs.com/package/@substrate-ai/core) for transport-agnostic infrastructure.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install @substrate-ai/sdlc
11
+ ```
12
+
13
+ Node 22 or later is required.
14
+
15
+ ## Modules
16
+
17
+ | Namespace | Representative exports |
18
+ |---|---|
19
+ | **handlers** | `createSdlcCreateStoryHandler`, `createSdlcPhaseHandler`, `createSdlcDevStoryHandler`, `createSdlcCodeReviewHandler`, `createSdlcEventBridge` |
20
+ | **orchestrator** | Graph-based orchestrator entry point and config mapping |
21
+ | **verification** | Ordered check chain (phantom review, trivial output, build verification) with tier filtering |
22
+ | **gating** | Pre-dispatch conflict detection and dispatch-gate logic |
23
+ | **learning** | Root cause taxonomy, failure classifier, finding lifecycle and injector |
24
+ | **run-model** | Atomic JSON-backed `RunManifest`, per-story state, recovery history, CLI flag persistence, supervisor lock |
25
+
26
+ ## Usage
27
+
28
+ ```typescript
29
+ import { createSdlcEventBridge } from '@substrate-ai/sdlc'
30
+
31
+ const bridge = createSdlcEventBridge({ /* deps */ })
32
+ ```
33
+
34
+ ## Versioning
35
+
36
+ Releases in lockstep with `substrate-ai`. See the [main repository](https://github.com/johnplanow/substrate) for pipeline documentation, event protocol, and CLI reference.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@substrate-ai/sdlc",
3
- "version": "0.20.1",
3
+ "version": "0.20.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,8 +20,11 @@
20
20
  "dist",
21
21
  "graphs"
22
22
  ],
23
+ "engines": {
24
+ "node": ">=22.0.0"
25
+ },
23
26
  "dependencies": {
24
- "@substrate-ai/core": "0.20.1",
27
+ "@substrate-ai/core": "0.20.2",
25
28
  "zod": "^4.3.6"
26
29
  },
27
30
  "devDependencies": {}