sdlc-workflow 1.2.0 → 1.2.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/bin/cli.js +9 -8
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -386,13 +386,13 @@ User Request → PO → Business BA → Design (if app/web) → Architect → Te
|
|
|
386
386
|
| Phase | Role | Key Output |
|
|
387
387
|
|-------|------|------------|
|
|
388
388
|
| 0 | Discovery | Raw request |
|
|
389
|
-
| 1 | PO | PRD, user stories |
|
|
390
|
-
| 2 | Business BA | FRS, process flows |
|
|
389
|
+
| 1 | PO | PRD, user stories, feasibility assessment |
|
|
390
|
+
| 2 | Business BA | FRS, NFR, process flows |
|
|
391
391
|
| 3 | Design (if app/web) | Design specs + wireframes; PO+BA review until approved |
|
|
392
|
-
| 4 | Architect | ADRs, system diagrams |
|
|
392
|
+
| 4 | Architect | ADRs, system diagrams, security by design |
|
|
393
393
|
| 5 | Technical BA | API specs, tech breakdown |
|
|
394
394
|
| 6 | QE (docs) | Test plan, test cases |
|
|
395
|
-
| 7 | Dev | Code, unit tests (≥90%) |
|
|
395
|
+
| 7 | Dev | Code, unit tests (≥90%), security shift-left |
|
|
396
396
|
| 8 | QE (testing + UAT) | QE Lead (15+ yrs automation) + Senior QE (10+ yrs), automation, UAT, sign-off |
|
|
397
397
|
| 9 | Security + Principle Engineer | Security + logic audit; fix loop until all issues resolved; sign-off → Deploy |
|
|
398
398
|
| 10 | Deploy | Docker Compose + K8s |
|
|
@@ -513,13 +513,13 @@ User Request → PO → Business BA → Design (if app/web) → Architect → Te
|
|
|
513
513
|
| Phase | Role | Key Output |
|
|
514
514
|
|-------|------|------------|
|
|
515
515
|
| 0 | Discovery | Raw request |
|
|
516
|
-
| 1 | PO | PRD, user stories |
|
|
517
|
-
| 2 | Business BA | FRS, process flows |
|
|
516
|
+
| 1 | PO | PRD, user stories, feasibility assessment |
|
|
517
|
+
| 2 | Business BA | FRS, NFR, process flows |
|
|
518
518
|
| 3 | Design (if app/web) | Design specs + wireframes; PO+BA review until approved |
|
|
519
|
-
| 4 | Architect | ADRs, system diagrams |
|
|
519
|
+
| 4 | Architect | ADRs, system diagrams, security by design |
|
|
520
520
|
| 5 | Technical BA | API specs, tech breakdown |
|
|
521
521
|
| 6 | QE (docs) | Test plan, test cases |
|
|
522
|
-
| 7 | Dev | Code, unit tests (≥90%) |
|
|
522
|
+
| 7 | Dev | Code, unit tests (≥90%), security shift-left |
|
|
523
523
|
| 8 | QE (testing + UAT) | QE Lead (15+ yrs automation) + Senior QE (10+ yrs), automation, UAT, sign-off |
|
|
524
524
|
| 9 | Security + Principle Engineer | Security + logic audit; fix loop until all issues resolved; sign-off → Deploy |
|
|
525
525
|
| 10 | Deploy | Docker Compose + K8s |
|
|
@@ -845,6 +845,7 @@ const PO_README = `# PO (Product Owner)
|
|
|
845
845
|
- [ ] **Prioritize**: Must / Should / Could have; order by value and risk
|
|
846
846
|
- [ ] **Identify dependencies**: External teams, systems, blockers
|
|
847
847
|
- [ ] **Call out risks**: Technical, schedule, compliance
|
|
848
|
+
- [ ] **Feasibility assessment**: Evaluate technical feasibility, resource availability, timeline viability, and budget constraints. Flag blockers early. Document go/no-go recommendation
|
|
848
849
|
- [ ] **Handoff to Business BA**: Deliverables in \`po/{epic-slug}/\`
|
|
849
850
|
|
|
850
851
|
Use epic-brief.template.md as starting point for each epic.
|