agentic-sdlc 1.0.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.
Files changed (98) hide show
  1. package/.agent/ide-integration/README.md +298 -0
  2. package/.agent/ide-integration/aider-commands.md +40 -0
  3. package/.agent/ide-integration/cline-config.json +108 -0
  4. package/.agent/ide-integration/cursor-rules.md +63 -0
  5. package/.agent/ide-integration/github-copilot-instructions.md +75 -0
  6. package/.agent/ide-integration/vscode-commands.json +190 -0
  7. package/.agent/ide-integration/windsurf-cascade.md +125 -0
  8. package/.agent/knowledge-base/README.md +202 -0
  9. package/.agent/knowledge-base/architecture/.gitkeep +1 -0
  10. package/.agent/knowledge-base/bugs/.gitkeep +1 -0
  11. package/.agent/knowledge-base/features/.gitkeep +1 -0
  12. package/.agent/knowledge-base/index.md +202 -0
  13. package/.agent/knowledge-base/performance/.gitkeep +1 -0
  14. package/.agent/knowledge-base/platform-specific/.gitkeep +1 -0
  15. package/.agent/knowledge-base/security/.gitkeep +1 -0
  16. package/.agent/legacy/roles/designer.md +311 -0
  17. package/.agent/legacy/roles/dev.md +177 -0
  18. package/.agent/legacy/roles/devops.md +146 -0
  19. package/.agent/legacy/roles/orchestrator.md +339 -0
  20. package/.agent/legacy/roles/pm.md +120 -0
  21. package/.agent/legacy/roles/po.md +89 -0
  22. package/.agent/legacy/roles/qa.md +108 -0
  23. package/.agent/legacy/roles/reporter.md +70 -0
  24. package/.agent/legacy/roles/sa.md +118 -0
  25. package/.agent/legacy/roles/seca.md +112 -0
  26. package/.agent/legacy/roles/stakeholder.md +111 -0
  27. package/.agent/legacy/roles/tester.md +129 -0
  28. package/.agent/rules/artifacts.md +58 -0
  29. package/.agent/rules/git-workflow.md +65 -0
  30. package/.agent/rules/global.md +154 -0
  31. package/.agent/rules/global.md.bak +154 -0
  32. package/.agent/rules/knowledge-base.md +45 -0
  33. package/.agent/templates/Design-Verification-Report-Template.md +67 -0
  34. package/.agent/templates/DevOps-Plan-Template.md +90 -0
  35. package/.agent/templates/Development-Log-Template.md +51 -0
  36. package/.agent/templates/Final-Approval-Report-Template.md +82 -0
  37. package/.agent/templates/Final-Project-Report-Template.md +280 -0
  38. package/.agent/templates/Knowledge-Entry-Template.md +164 -0
  39. package/.agent/templates/Master-Documentation-Template.md +269 -0
  40. package/.agent/templates/Phase-Report-Template.md +70 -0
  41. package/.agent/templates/Product-Backlog-Template.md +84 -0
  42. package/.agent/templates/Project-Plan-Template.md +79 -0
  43. package/.agent/templates/Security-Review-Report-Template.md +80 -0
  44. package/.agent/templates/System-Design-Spec-Template.md +170 -0
  45. package/.agent/templates/Test-Report-Template.md +97 -0
  46. package/.agent/templates/UIUX-Design-Spec-Template.md +280 -0
  47. package/.agent/templates/definition-of-done.md +151 -0
  48. package/.agent/templates/incident-response.md +111 -0
  49. package/.agent/usage.md +653 -0
  50. package/.agent/workflows/auto.md +35 -0
  51. package/.agent/workflows/brain.md +56 -0
  52. package/.agent/workflows/dev.md +30 -0
  53. package/.agent/workflows/devops.md +28 -0
  54. package/.agent/workflows/kb-search.md +22 -0
  55. package/.agent/workflows/pm.md +42 -0
  56. package/.agent/workflows/po.md +21 -0
  57. package/.agent/workflows/qa.md +31 -0
  58. package/.agent/workflows/reporter.md +21 -0
  59. package/.agent/workflows/sa.md +51 -0
  60. package/.agent/workflows/seca.md +21 -0
  61. package/.agent/workflows/stakeholder.md +26 -0
  62. package/.agent/workflows/tester.md +21 -0
  63. package/.agent/workflows/uiux.md +38 -0
  64. package/.cursorrules +49 -0
  65. package/.env.template +10 -0
  66. package/.github/ISSUE_TEMPLATE/bug_report.yml +47 -0
  67. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  68. package/.github/ISSUE_TEMPLATE/feature_request.yml +33 -0
  69. package/.github/ISSUE_TEMPLATE/security_alert.yml +28 -0
  70. package/.github/ISSUE_TEMPLATE/task_implementation.yml +37 -0
  71. package/.github/copilot-instructions.md +60 -0
  72. package/CHANGELOG.md +13 -0
  73. package/README.md +136 -0
  74. package/bin/cli.js +104 -0
  75. package/bin/commands/create.js +96 -0
  76. package/bin/commands/help.js +69 -0
  77. package/bin/commands/ide.js +116 -0
  78. package/bin/commands/init-kb.js +74 -0
  79. package/bin/commands/install.js +68 -0
  80. package/bin/commands/list.js +35 -0
  81. package/bin/graph_brain.py +86 -0
  82. package/bin/sync_github.py +75 -0
  83. package/bin/utils/args-parser.js +33 -0
  84. package/bin/utils/colors.js +21 -0
  85. package/bin/verify_neo4j.py +25 -0
  86. package/docs/OUTLINE.md +23 -0
  87. package/docs/architecture/brain.md +36 -0
  88. package/docs/architecture/neo4j-learning-queries.md +49 -0
  89. package/docs/guides/CLI-EXAMPLES.md +649 -0
  90. package/docs/guides/INTEGRATION-GUIDE.md +709 -0
  91. package/docs/guides/MCP-GUIDE.md +53 -0
  92. package/docs/guides/QUICK-START.md +104 -0
  93. package/docs/reports/comparison-leann-neo4j.md +49 -0
  94. package/docs/setup/github-management.md +37 -0
  95. package/docs/sprints/sprint-github-issues.md +36 -0
  96. package/docs/sprints/sprint-leann-integration.md +41 -0
  97. package/docs/sprints/sprint-neo4j-brain.md +38 -0
  98. package/package.json +16 -0
@@ -0,0 +1,111 @@
1
+ # Incident Response Template
2
+ **Version:** 1.0 | **Last Updated:** 2025-12-23
3
+
4
+ ---
5
+
6
+ ## 🚨 Incident Details
7
+
8
+ | Field | Value |
9
+ |-------|-------|
10
+ | **Incident ID** | INC-[YYYY-MM-DD]-[###] |
11
+ | **Severity** | `Critical` / `High` / `Medium` / `Low` |
12
+ | **Status** | `Detected` / `Triaging` / `Fixing` / `Deploying` / `Resolved` / `Postmortem` |
13
+ | **Detected By** | @[role] |
14
+ | **Detected At** | [datetime] |
15
+ | **Resolved At** | [datetime] |
16
+ | **Duration** | [total downtime] |
17
+
18
+ ---
19
+
20
+ ## Incident Summary
21
+ [Brief description of what happened]
22
+
23
+ ## Impact
24
+ - **Affected Users:** [all / specific group / percentage]
25
+ - **Affected Features:** [list features]
26
+ - **Data Loss:** Yes / No
27
+ - **Security Breach:** Yes / No
28
+
29
+ ---
30
+
31
+ ## Response Timeline
32
+
33
+ | Time | Action | Owner | Status |
34
+ |------|--------|-------|--------|
35
+ | [time] | Incident detected | @TESTER / @DEVOPS | ✅ |
36
+ | [time] | Triage started | @PM + @DEVOPS | ✅ |
37
+ | [time] | Root cause identified | @DEV[#] | ✅ |
38
+ | [time] | Hotfix implemented | @DEV[#] | ✅ |
39
+ | [time] | Quick test passed | @TESTER | ✅ |
40
+ | [time] | Hotfix deployed | @DEVOPS | ✅ |
41
+ | [time] | Incident resolved | @PM | ✅ |
42
+
43
+ ---
44
+
45
+ ## Root Cause Analysis
46
+
47
+ ### What Happened
48
+ [Detailed technical explanation]
49
+
50
+ ### Why It Happened
51
+ [Root cause - code bug / config error / infrastructure / external dependency]
52
+
53
+ ### Contributing Factors
54
+ - [ ] Missing tests
55
+ - [ ] Inadequate monitoring
56
+ - [ ] Configuration drift
57
+ - [ ] External service failure
58
+ - [ ] Human error
59
+ - [ ] Other: [specify]
60
+
61
+ ---
62
+
63
+ ## Hotfix Details
64
+
65
+ | Item | Details |
66
+ |------|---------|
67
+ | **Hotfix Branch** | `hotfix/INC-[id]` |
68
+ | **Files Changed** | [list files] |
69
+ | **Testing** | Smoke test only / Full regression |
70
+ | **Rollback Plan** | [describe rollback steps] |
71
+
72
+ ### Hotfix Code Summary
73
+ ```
74
+ [Brief description or diff summary of the fix]
75
+ ```
76
+
77
+ ---
78
+
79
+ ## Action Items (Preventive Measures)
80
+
81
+ | # | Action | Owner | Priority | Due Date | Status |
82
+ |---|--------|-------|----------|----------|--------|
83
+ | 1 | [action] | @[role] | High | [date] | ⬜ |
84
+ | 2 | [action] | @[role] | Medium | [date] | ⬜ |
85
+ | 3 | [action] | @[role] | Low | [date] | ⬜ |
86
+
87
+ ---
88
+
89
+ ## Lessons Learned
90
+ 1. [lesson 1]
91
+ 2. [lesson 2]
92
+ 3. [lesson 3]
93
+
94
+ ---
95
+
96
+ ## Sign-Off
97
+
98
+ | Role | Name | Date | Signature |
99
+ |------|------|------|-----------|
100
+ | PM | | | ☐ Approved |
101
+ | DevOps | | | ☐ Approved |
102
+ | REPORTER | | | ☐ Documented |
103
+
104
+ ---
105
+
106
+ ### Next Step:
107
+ - @REPORTER - Include in Phase-Report
108
+ - @PM - Schedule postmortem review if needed
109
+ - @DEVOPS - Add monitoring for this scenario
110
+
111
+ #hotfix #fixbug-critical #incident #reporting