ai-sdlc 0.3.0-alpha.2 → 0.3.0-alpha.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/README.md +1 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,6 +45,7 @@ ai-sdlc run --auto --story implement-user-authentication
45
45
  | `ai-sdlc run` | Process next recommended action |
46
46
  | `ai-sdlc run --auto` | Process all pending actions |
47
47
  | `ai-sdlc run --auto --story <id>` | Full SDLC for one story |
48
+ | `ai-sdlc run --batch <ids>` | Full SDLC for multiple stories sequentially (comma-separated) |
48
49
  | `ai-sdlc run --story <id> --step <phase>` | Run specific phase (refine/research/plan/implement/review) |
49
50
  | `ai-sdlc run --continue` | Resume after interruption |
50
51
  | `ai-sdlc run --watch` | Daemon mode - watch for new stories |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sdlc",
3
- "version": "0.3.0-alpha.2",
3
+ "version": "0.3.0-alpha.3",
4
4
  "description": "Agent-first SDLC workflow manager using Claude Agent SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",