@wipal/agent-team 1.0.3 → 1.1.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 (124) hide show
  1. package/.claude/commands/skills/discover.md +127 -0
  2. package/.claude/commands/skills/install.md +225 -0
  3. package/.claude/commands/skills/review.md +234 -0
  4. package/.claude/commands/utils/learn.md +142 -0
  5. package/.claude/commands/utils/retrospect.md +62 -0
  6. package/.claude/commands/utils/switch.md +113 -0
  7. package/.claude/commands/utils/sync.md +183 -0
  8. package/.claude/rules/common/general-rules.md +6 -0
  9. package/.claude/rules/role-rules/dev-be-rules.md +241 -0
  10. package/.claude/rules/role-rules/dev-fe-rules.md +76 -0
  11. package/.claude/skills/SKILL-INDEX.md +24 -5
  12. package/.claude/skills/core/knowledge-graph/SKILL.md +214 -0
  13. package/.claude/skills/core/sequential-thinking/SKILL.md +112 -0
  14. package/.claude/skills/core/sequential-thinking/references/advanced.md +122 -0
  15. package/.claude/skills/core/sequential-thinking/references/examples.md +274 -0
  16. package/.claude/skills/domain/architecture/c4-architecture/SKILL.md +314 -0
  17. package/.claude/skills/domain/architecture/c4-architecture/references/advanced-patterns.md +552 -0
  18. package/.claude/skills/domain/architecture/c4-architecture/references/c4-syntax.md +492 -0
  19. package/.claude/skills/domain/architecture/c4-architecture/references/common-mistakes.md +437 -0
  20. package/.claude/skills/domain/architecture/mermaid-diagrams/SKILL.md +238 -0
  21. package/.claude/skills/domain/architecture/mermaid-diagrams/references/advanced-features.md +556 -0
  22. package/.claude/skills/domain/architecture/mermaid-diagrams/references/architecture-diagrams.md +192 -0
  23. package/.claude/skills/domain/architecture/mermaid-diagrams/references/c4-diagrams.md +410 -0
  24. package/.claude/skills/domain/architecture/mermaid-diagrams/references/class-diagrams.md +361 -0
  25. package/.claude/skills/domain/architecture/mermaid-diagrams/references/erd-diagrams.md +510 -0
  26. package/.claude/skills/domain/architecture/mermaid-diagrams/references/flowcharts.md +450 -0
  27. package/.claude/skills/domain/architecture/mermaid-diagrams/references/sequence-diagrams.md +394 -0
  28. package/.claude/skills/domain/backend/testing-be/SKILL.md +121 -17
  29. package/.claude/skills/domain/design/design-system/SKILL.md +169 -0
  30. package/.claude/skills/domain/design/html-css-output/SKILL.md +253 -0
  31. package/.claude/skills/domain/design/mockup-creation/SKILL.md +230 -0
  32. package/.claude/skills/domain/design/responsive-design/SKILL.md +207 -0
  33. package/.claude/skills/domain/design/ui-design/SKILL.md +124 -0
  34. package/.claude/skills/domain/frontend/testing-fe/SKILL.md +143 -38
  35. package/.claude/skills/domain/frontend/ui-ux-pro-max/README.md +45 -0
  36. package/.claude/skills/domain/frontend/ui-ux-pro-max/SKILL.md +404 -0
  37. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/charts.csv +26 -0
  38. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/colors.csv +97 -0
  39. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/icons.csv +101 -0
  40. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/landing.csv +31 -0
  41. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/products.csv +97 -0
  42. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/react-performance.csv +45 -0
  43. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  44. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  45. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  46. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  47. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  48. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  49. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  50. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  51. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/react.csv +54 -0
  52. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  53. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  54. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  55. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  56. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/styles.csv +68 -0
  57. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/typography.csv +58 -0
  58. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  59. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  60. package/.claude/skills/domain/frontend/ui-ux-pro-max/data/web-interface.csv +31 -0
  61. package/.claude/skills/domain/frontend/ui-ux-pro-max/scripts/core.py +253 -0
  62. package/.claude/skills/domain/frontend/ui-ux-pro-max/scripts/design_system.py +1067 -0
  63. package/.claude/skills/domain/frontend/ui-ux-pro-max/scripts/search.py +114 -0
  64. package/.claude/skills/domain/product/requirements-clarity/SKILL.md +340 -0
  65. package/.claude/skills/skills-registry.yaml +103 -8
  66. package/README.md +107 -33
  67. package/README.npm.md +252 -0
  68. package/TUTORIAL.md +256 -0
  69. package/bin/agent-team.js +26 -7
  70. package/config/roles.yaml +107 -0
  71. package/docs/01-architecture.md +699 -0
  72. package/docs/02-setup-guide.md +634 -0
  73. package/docs/03-skills-guide.md +628 -0
  74. package/docs/04-workflows.md +792 -0
  75. package/docs/05-model-strategy.md +550 -0
  76. package/docs/06-extend-guide.md +1226 -0
  77. package/docs/07-quick-reference.md +578 -0
  78. package/docs/08-skills-discovery.md +342 -0
  79. package/docs/README.md +134 -0
  80. package/docs/rqm.md +560 -0
  81. package/package.json +10 -4
  82. package/scripts/postinstall.js +46 -0
  83. package/src/commands/add.js +131 -67
  84. package/src/commands/init.js +419 -9
  85. package/src/commands/list.js +20 -16
  86. package/src/commands/projects.js +127 -0
  87. package/src/commands/setup-hooks.js +261 -0
  88. package/src/index.js +0 -1
  89. package/src/utils/file-utils.js +147 -50
  90. package/src/utils/global-registry.js +224 -0
  91. package/templates/CLAUDE.md.tmpl +128 -20
  92. package/templates/MEMORY.md.tmpl +119 -0
  93. package/templates/agent.md.tmpl +205 -0
  94. package/templates/code/nestjs-controller.ts.tmpl +49 -0
  95. package/templates/code/nestjs-dto.ts.tmpl +63 -0
  96. package/templates/code/nestjs-service.ts.tmpl +45 -0
  97. package/templates/code/react-component.tsx.tmpl +24 -0
  98. package/templates/code/react-hook.ts.tmpl +54 -0
  99. package/templates/code/test.spec.ts.tmpl +50 -0
  100. package/templates/code/vue-component.vue.tmpl +49 -0
  101. package/templates/code/vue-composable.ts.tmpl +54 -0
  102. package/templates/knowledge.md.tmpl +152 -17
  103. package/templates/meeting-notes.md.tmpl +110 -0
  104. package/templates/memory/hooks.memory.json +50 -0
  105. package/templates/memory/settings.memory.json +16 -0
  106. package/templates/reports/bug-report.md.tmpl +164 -0
  107. package/templates/reports/code-review.md.tmpl +201 -0
  108. package/templates/reports/sprint-report.md.tmpl +218 -0
  109. package/templates/roles/ba.md +53 -0
  110. package/templates/roles/designer.md +82 -0
  111. package/templates/roles/dev-be.md +49 -0
  112. package/templates/roles/dev-fe.md +49 -0
  113. package/templates/roles/devops.md +53 -0
  114. package/templates/roles/pm.md +49 -0
  115. package/templates/roles/qa.md +53 -0
  116. package/templates/roles/sa.md +49 -0
  117. package/templates/roles/tech-lead.md +132 -0
  118. package/templates/skills/memory/memory-status.md +78 -0
  119. package/templates/skills/memory/recall.md +160 -0
  120. package/templates/skills/memory/reflect.md +168 -0
  121. package/templates/skills/memory/remember.md +105 -0
  122. package/templates/tasks/lessons.md.tmpl +77 -0
  123. package/templates/tasks/todo.md.tmpl +53 -0
  124. package/src/commands/switch.js +0 -53
@@ -0,0 +1,50 @@
1
+ {
2
+ "hooks": {
3
+ "PostToolUse": [
4
+ {
5
+ "matcher": "Edit|Write",
6
+ "hooks": [
7
+ {
8
+ "type": "command",
9
+ "command": "docker exec simplemem-mcp memory-auto-capture --type=code_change --file=${FILE_PATH} --tool=${TOOL}",
10
+ "timeout": 5000
11
+ }
12
+ ]
13
+ },
14
+ {
15
+ "matcher": "Bash",
16
+ "hooks": [
17
+ {
18
+ "type": "command",
19
+ "command": "docker exec simplemem-mcp memory-auto-capture --type=command --cmd=${COMMAND}",
20
+ "timeout": 5000
21
+ }
22
+ ]
23
+ }
24
+ ],
25
+ "Notification": [
26
+ {
27
+ "matcher": ".*",
28
+ "hooks": [
29
+ {
30
+ "type": "command",
31
+ "command": "docker exec simplemem-mcp memory-auto-capture --type=notification",
32
+ "timeout": 5000
33
+ }
34
+ ]
35
+ }
36
+ ],
37
+ "Stop": [
38
+ {
39
+ "matcher": ".*",
40
+ "hooks": [
41
+ {
42
+ "type": "command",
43
+ "command": "docker exec simplemem-mcp memory-conolidate-auto --project={{PROJECT_NAME}}",
44
+ "timeout": 30000
45
+ }
46
+ ]
47
+ }
48
+ ]
49
+ }
50
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "mcpServers": {
3
+ "context7": {
4
+ "command": "npx",
5
+ "args": ["-y", "@context7/mcp-server"]
6
+ },
7
+ "simplemem": {
8
+ "command": "docker",
9
+ "args": [
10
+ "exec", "-i", "simplemem-mcp",
11
+ "python", "-m", "simplemem_mcp.server",
12
+ "--project", "{{PROJECT_NAME}}"
13
+ ]
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,164 @@
1
+ # Bug Report
2
+
3
+ ## Metadata
4
+
5
+ | Field | Value |
6
+ | ----- | ----- |
7
+ | **Bug ID** | {{BUG_ID}} |
8
+ | **Title** | {{TITLE}} |
9
+ | **Severity** | {{SEVERITY}} (Critical / High / Medium / Low) |
10
+ | **Priority** | {{PRIORITY}} (P1 / P2 / P3 / P4) |
11
+ | **Status** | Open |
12
+ | **Reporter** | {{REPORTER}} |
13
+ | **Assignee** | {{ASSIGNEE}} |
14
+ | **Created** | {{CREATED_AT}} |
15
+ | **Environment** | {{ENVIRONMENT}} |
16
+
17
+ ---
18
+
19
+ ## Description
20
+
21
+ {{DESCRIPTION}}
22
+
23
+ ---
24
+
25
+ ## Steps to Reproduce
26
+
27
+ 1. {{STEP_1}}
28
+ 2. {{STEP_2}}
29
+ 3. {{STEP_3}}
30
+ 4. ...
31
+
32
+ ---
33
+
34
+ ## Expected Behavior
35
+
36
+ {{EXPECTED_BEHAVIOR}}
37
+
38
+ ---
39
+
40
+ ## Actual Behavior
41
+
42
+ {{ACTUAL_BEHAVIOR}}
43
+
44
+ ---
45
+
46
+ ## Evidence
47
+
48
+ ### Screenshots
49
+
50
+ | Screenshot | Description |
51
+ | ---------- | ----------- |
52
+ | ![Screenshot 1]({{SCREENSHOT_1_URL}}) | {{SCREENSHOT_1_DESC}} |
53
+ | ![Screenshot 2]({{SCREENSHOT_2_URL}}) | {{SCREENSHOT_2_DESC}} |
54
+
55
+ ### Logs
56
+
57
+ ```
58
+ {{LOG_OUTPUT}}
59
+ ```
60
+
61
+ ### Error Messages
62
+
63
+ ```
64
+ {{ERROR_MESSAGE}}
65
+ ```
66
+
67
+ ---
68
+
69
+ ## Environment Details
70
+
71
+ | Component | Details |
72
+ | --------- | ------- |
73
+ | **Browser** | {{BROWSER}} |
74
+ | **OS** | {{OS}} |
75
+ | **Device** | {{DEVICE}} |
76
+ | **App Version** | {{APP_VERSION}} |
77
+ | **User Role** | {{USER_ROLE}} |
78
+
79
+ ---
80
+
81
+ ## Impact Analysis
82
+
83
+ ### User Impact
84
+
85
+ - **Affected Users**: {{AFFECTED_USERS}} (All / Some / Specific group)
86
+ - **Frequency**: {{FREQUENCY}} (Always / Often / Sometimes / Rare)
87
+ - **Workaround**: {{WORKAROUND}} (Yes / No)
88
+
89
+ ### Business Impact
90
+
91
+ - {{BUSINESS_IMPACT}}
92
+
93
+ ---
94
+
95
+ ## Root Cause Analysis
96
+
97
+ ### Initial Hypothesis
98
+
99
+ {{INITIAL_HYPOTHESIS}}
100
+
101
+ ### Investigation
102
+
103
+ {{INVESTIGATION_NOTES}}
104
+
105
+ ### Root Cause
106
+
107
+ {{ROOT_CAUSE}}
108
+
109
+ ---
110
+
111
+ ## Resolution
112
+
113
+ ### Fix Description
114
+
115
+ {{FIX_DESCRIPTION}}
116
+
117
+ ### Files Changed
118
+
119
+ | File | Change Type | Description |
120
+ | ---- | ----------- | ----------- |
121
+ | `{{FILE_1}}` | Modified | {{CHANGE_1}} |
122
+ | `{{FILE_2}}` | Added | {{CHANGE_2}} |
123
+
124
+ ### PR/Commit
125
+
126
+ - **PR**: #{{PR_NUMBER}}
127
+ - **Commit**: {{COMMIT_SHA}}
128
+
129
+ ---
130
+
131
+ ## Testing
132
+
133
+ ### Test Cases
134
+
135
+ - [ ] Reproduce bug on old version
136
+ - [ ] Verify fix on new version
137
+ - [ ] Regression testing
138
+ - [ ] Cross-browser testing (if UI)
139
+
140
+ ### Test Evidence
141
+
142
+ | Test Case | Result | Notes |
143
+ | --------- | ------ | ----- |
144
+ | TC-1 | Pass | {{NOTES}} |
145
+ | TC-2 | Pass | {{NOTES}} |
146
+
147
+ ---
148
+
149
+ ## Timeline
150
+
151
+ | Date | Action | By |
152
+ | ---- | ------ | -- |
153
+ | {{DATE_1}} | Bug reported | {{REPORTER}} |
154
+ | {{DATE_2}} | Triaged | {{ASSIGNEE}} |
155
+ | {{DATE_3}} | Fix implemented | {{DEVELOPER}} |
156
+ | {{DATE_4}} | Verified and closed | {{QA}} |
157
+
158
+ ---
159
+
160
+ ## Related Items
161
+
162
+ - **Related Bugs**: #{{RELATED_BUG_1}}, #{{RELATED_BUG_2}}
163
+ - **Related Features**: {{FEATURE_ID}}
164
+ - **Documentation**: {{DOC_LINK}}
@@ -0,0 +1,201 @@
1
+ # Code Review
2
+
3
+ ## Metadata
4
+
5
+ | Field | Value |
6
+ | ----- | ----- |
7
+ | **PR Number** | #{{PR_NUMBER}} |
8
+ | **Title** | {{TITLE}} |
9
+ | **Author** | {{AUTHOR}} |
10
+ | **Reviewer** | {{REVIEWER}} |
11
+ | **Date** | {{DATE}} |
12
+ | **Branch** | {{BRANCH}} |
13
+ | **Status** | {{STATUS}} (Pending / Approved / Changes Requested) |
14
+
15
+ ---
16
+
17
+ ## Summary
18
+
19
+ {{SUMMARY}}
20
+
21
+ ---
22
+
23
+ ## Files Reviewed
24
+
25
+ | File | Lines Changed | Risk Level | Notes |
26
+ | ---- | ------------- | ---------- | ----- |
27
+ | `{{FILE_1}}` | +{{ADDED_1}} / -{{REMOVED_1}} | {{RISK_1}} | {{NOTES_1}} |
28
+ | `{{FILE_2}}` | +{{ADDED_2}} / -{{REMOVED_2}} | {{RISK_2}} | {{NOTES_2}} |
29
+
30
+ **Total Changes**: +{{TOTAL_ADDED}} / -{{TOTAL_REMOVED}} lines
31
+
32
+ ---
33
+
34
+ ## Review Categories
35
+
36
+ ### 🔴 Critical Issues (Must Fix)
37
+
38
+ Issues that could cause bugs, security vulnerabilities, or break functionality.
39
+
40
+ 1. **[{{FILE}}:{{LINE}}] {{ISSUE_TITLE}}**
41
+ - **Issue**: {{ISSUE_DESCRIPTION}}
42
+ - **Suggestion**: {{SUGGESTION}}
43
+ ```{{LANGUAGE}}
44
+ // Current
45
+ {{CURRENT_CODE}}
46
+
47
+ // Suggested
48
+ {{SUGGESTED_CODE}}
49
+ ```
50
+
51
+ ### 🟡 Suggestions (Should Fix)
52
+
53
+ Recommendations for improvement that aren't critical.
54
+
55
+ 1. **[{{FILE}}:{{LINE}}] {{ISSUE_TITLE}}**
56
+ - **Current**: {{CURRENT}}
57
+ - **Suggestion**: {{SUGGESTION}}
58
+
59
+ ### 🟢 Nitpicks (Optional)
60
+
61
+ Minor style or preference suggestions.
62
+
63
+ 1. **[{{FILE}}:{{LINE}}]** {{NITPICK}}
64
+
65
+ ### ✅ Good Practices
66
+
67
+ Highlight good patterns worth keeping.
68
+
69
+ 1. **[{{FILE}}:{{LINE}}]** {{GOOD_PRACTICE}}
70
+
71
+ ---
72
+
73
+ ## Checklist
74
+
75
+ ### Code Quality
76
+
77
+ - [ ] Code is readable and well-organized
78
+ - [ ] Functions/methods are not too long
79
+ - [ ] Naming is clear and consistent
80
+ - [ ] No code duplication (DRY)
81
+ - [ ] Comments explain "why", not "what"
82
+
83
+ ### Testing
84
+
85
+ - [ ] Unit tests added/updated
86
+ - [ ] Tests cover edge cases
87
+ - [ ] Tests are meaningful (not just for coverage)
88
+ - [ ] Mocks are appropriate
89
+
90
+ ### Performance
91
+
92
+ - [ ] No N+1 queries
93
+ - [ ] No unnecessary re-renders (frontend)
94
+ - [ ] No memory leaks
95
+ - [ ] Appropriate data structures used
96
+
97
+ ### Security
98
+
99
+ - [ ] No hardcoded credentials
100
+ - [ ] Input validation present
101
+ - [ ] Output encoding/sanitization
102
+ - [ ] No SQL injection vulnerabilities
103
+ - [ ] Proper authentication/authorization
104
+
105
+ ### Best Practices
106
+
107
+ - [ ] Follows project conventions
108
+ - [ ] Error handling is appropriate
109
+ - [ ] Logging is sufficient
110
+ - [ ] Documentation updated (if needed)
111
+
112
+ ---
113
+
114
+ ## Architecture & Design
115
+
116
+ ### Concerns
117
+
118
+ {{ARCHITECTURE_CONCERNS}}
119
+
120
+ ### Suggestions
121
+
122
+ {{ARCHITECTURE_SUGGESTIONS}}
123
+
124
+ ---
125
+
126
+ ## Testing Notes
127
+
128
+ ### Test Coverage
129
+
130
+ | Type | Coverage | Notes |
131
+ | ---- | -------- | ----- |
132
+ | Unit | {{UNIT_COVERAGE}}% | {{UNIT_NOTES}} |
133
+ | Integration | {{INTEGRATION_COVERAGE}}% | {{INTEGRATION_NOTES}} |
134
+
135
+ ### Test Quality
136
+
137
+ {{TEST_QUALITY_NOTES}}
138
+
139
+ ---
140
+
141
+ ## Security Review
142
+
143
+ ### Findings
144
+
145
+ | Severity | Finding | Recommendation |
146
+ | -------- | ------- | -------------- |
147
+ | {{SEVERITY}} | {{FINDING}} | {{RECOMMENDATION}} |
148
+
149
+ ### Security Checklist
150
+
151
+ - [ ] No sensitive data in logs
152
+ - [ ] No exposed internal details in errors
153
+ - [ ] Proper access controls
154
+ - [ ] Dependencies checked for vulnerabilities
155
+
156
+ ---
157
+
158
+ ## Performance Review
159
+
160
+ ### Concerns
161
+
162
+ {{PERFORMANCE_CONCERNS}}
163
+
164
+ ### Benchmarks
165
+
166
+ | Metric | Before | After | Change |
167
+ | ------ | ------ | ----- | ------ |
168
+ | {{METRIC_1}} | {{BEFORE_1}} | {{AFTER_1}} | {{CHANGE_1}} |
169
+
170
+ ---
171
+
172
+ ## Final Verdict
173
+
174
+ ### Decision
175
+
176
+ {{DECISION}}
177
+
178
+ - [ ] ✅ Approved - Ready to merge
179
+ - [ ] ⚠️ Approved with comments - Minor fixes recommended
180
+ - [ ] 🔄 Changes Requested - Please address feedback
181
+ - [ ] ❌ Rejected - Major issues need resolution
182
+
183
+ ### Comments
184
+
185
+ {{FINAL_COMMENTS}}
186
+
187
+ ---
188
+
189
+ ## Follow-up Actions
190
+
191
+ - [ ] {{ACTION_1}}
192
+ - [ ] {{ACTION_2}}
193
+
194
+ ---
195
+
196
+ ## Sign-off
197
+
198
+ | Reviewer | Date | Decision |
199
+ | -------- | ---- | -------- |
200
+ | {{REVIEWER_1}} | {{DATE_1}} | {{DECISION_1}} |
201
+ | {{REVIEWER_2}} | {{DATE_2}} | {{DECISION_2}} |
@@ -0,0 +1,218 @@
1
+ # Sprint Report
2
+
3
+ ## Sprint Overview
4
+
5
+ | Field | Value |
6
+ | ----- | ----- |
7
+ | **Sprint Name** | {{SPRINT_NAME}} |
8
+ | **Sprint Number** | {{SPRINT_NUMBER}} |
9
+ | **Start Date** | {{START_DATE}} |
10
+ | **End Date** | {{END_DATE}} |
11
+ | **Duration** | {{DURATION}} weeks |
12
+ | **Team** | {{TEAM_NAME}} |
13
+
14
+ ---
15
+
16
+ ## Executive Summary
17
+
18
+ {{EXECUTIVE_SUMMARY}}
19
+
20
+ ---
21
+
22
+ ## Sprint Goals
23
+
24
+ ### Planned Goals
25
+
26
+ 1. {{GOAL_1}} - **Status**: {{STATUS_1}}
27
+ 2. {{GOAL_2}} - **Status**: {{STATUS_2}}
28
+ 3. {{GOAL_3}} - **Status**: {{STATUS_3}}
29
+
30
+ ### Goal Achievement
31
+
32
+ | Goal | Target | Actual | Status |
33
+ | ---- | ------ | ------ | ------ |
34
+ | {{GOAL_1}} | {{TARGET_1}} | {{ACTUAL_1}} | {{STATUS_1}} |
35
+
36
+ **Overall Completion**: {{COMPLETION_RATE}}%
37
+
38
+ ---
39
+
40
+ ## Metrics
41
+
42
+ ### Velocity
43
+
44
+ | Metric | Planned | Completed | Variance |
45
+ | ------ | ------- | --------- | -------- |
46
+ | Story Points | {{PLANNED_SP}} | {{COMPLETED_SP}} | {{SP_VARIANCE}} |
47
+ | Issues | {{PLANNED_ISSUES}} | {{COMPLETED_ISSUES}} | {{ISSUES_VARIANCE}} |
48
+
49
+ ### Velocity Chart
50
+
51
+ ```
52
+ Planned: ████████████████████ {{PLANNED_SP}} SP
53
+ Completed: ██████████████ {{COMPLETED_SP}} SP
54
+ Carryover: ████████ {{CARRYOVER_SP}} SP
55
+ ```
56
+
57
+ ### Burndown Summary
58
+
59
+ - **Ideal Burndown**: Linear from {{START_SP}} to 0
60
+ - **Actual Burndown**: {{ACTUAL_TREND}}
61
+ - **Scope Changes**: {{SCOPE_CHANGES}}
62
+
63
+ ---
64
+
65
+ ## Completed Work
66
+
67
+ ### Features Delivered
68
+
69
+ | Feature | Priority | SP | Status |
70
+ | ------- | -------- | -- | ------ |
71
+ | {{FEATURE_1}} | {{PRIORITY_1}} | {{SP_1}} | ✅ Done |
72
+ | {{FEATURE_2}} | {{PRIORITY_2}} | {{SP_2}} | ✅ Done |
73
+
74
+ ### Bugs Fixed
75
+
76
+ | Bug ID | Description | Severity | Status |
77
+ | ------ | ----------- | -------- | ------ |
78
+ | {{BUG_1}} | {{DESC_1}} | {{SEVERITY_1}} | ✅ Fixed |
79
+ | {{BUG_2}} | {{DESC_2}} | {{SEVERITY_2}} | ✅ Fixed |
80
+
81
+ ### Technical Debt Addressed
82
+
83
+ - {{TECH_DEBT_1}}
84
+ - {{TECH_DEBT_2}}
85
+
86
+ ---
87
+
88
+ ## Incomplete Work
89
+
90
+ ### Carryover to Next Sprint
91
+
92
+ | Item | Reason | SP | Next Sprint |
93
+ | ---- | ------ | -- | ----------- |
94
+ | {{ITEM_1}} | {{REASON_1}} | {{SP_1}} | ✅ Planned |
95
+ | {{ITEM_2}} | {{REASON_2}} | {{SP_2}} | ⚠️ Reconsider |
96
+
97
+ ### Blocked Items
98
+
99
+ | Item | Blocker | Owner | Resolution Date |
100
+ | ---- | ------- | ----- | --------------- |
101
+ | {{ITEM_1}} | {{BLOCKER_1}} | {{OWNER_1}} | {{DATE_1}} |
102
+
103
+ ---
104
+
105
+ ## Quality Metrics
106
+
107
+ ### Code Quality
108
+
109
+ | Metric | This Sprint | Previous | Trend |
110
+ | ------ | ----------- | -------- | ----- |
111
+ | Code Coverage | {{COVERAGE}}% | {{PREV_COVERAGE}}% | {{TREND}} |
112
+ | Code Review Time | {{REVIEW_TIME}}h | {{PREV_REVIEW_TIME}}h | {{TREND}} |
113
+ | PR Size (avg) | {{PR_SIZE}} lines | {{PREV_PR_SIZE}} lines | {{TREND}} |
114
+
115
+ ### Bug Metrics
116
+
117
+ | Metric | Count |
118
+ | ------ | ----- |
119
+ | Bugs Found | {{BUGS_FOUND}} |
120
+ | Bugs Fixed | {{BUGS_FIXED}} |
121
+ | Regression Bugs | {{REGRESSION_BUGS}} |
122
+ | Open Bugs | {{OPEN_BUGS}} |
123
+
124
+ ---
125
+
126
+ ## Team Performance
127
+
128
+ ### Individual Contributions
129
+
130
+ | Team Member | SP Completed | Issues | Reviews |
131
+ | ----------- | ------------ | ------ | ------- |
132
+ | {{MEMBER_1}} | {{SP_1}} | {{ISSUES_1}} | {{REVIEWS_1}} |
133
+ | {{MEMBER_2}} | {{SP_2}} | {{ISSUES_2}} | {{REVIEWS_2}} |
134
+
135
+ ### Collaboration
136
+
137
+ - **Pair Programming Sessions**: {{PAIR_SESSIONS}}
138
+ - **Knowledge Sharing Sessions**: {{KNOWLEDGE_SESSIONS}}
139
+ - **Cross-team Collaborations**: {{CROSS_TEAM}}
140
+
141
+ ---
142
+
143
+ ## Risks & Issues
144
+
145
+ ### Risks Identified
146
+
147
+ | Risk | Impact | Likelihood | Mitigation |
148
+ | ---- | ------ | ---------- | ---------- |
149
+ | {{RISK_1}} | {{IMPACT_1}} | {{LIKELIHOOD_1}} | {{MITIGATION_1}} |
150
+
151
+ ### Issues Encountered
152
+
153
+ | Issue | Impact | Resolution | Time Lost |
154
+ | ----- | ------ | ---------- | --------- |
155
+ | {{ISSUE_1}} | {{IMPACT_1}} | {{RESOLUTION_1}} | {{TIME_LOST_1}} |
156
+
157
+ ---
158
+
159
+ ## Retrospective Summary
160
+
161
+ ### What Went Well 🟢
162
+
163
+ 1. {{WENT_WELL_1}}
164
+ 2. {{WENT_WELL_2}}
165
+ 3. {{WENT_WELL_3}}
166
+
167
+ ### What Could Be Improved 🟡
168
+
169
+ 1. {{IMPROVEMENT_1}}
170
+ 2. {{IMPROVEMENT_2}}
171
+
172
+ ### Action Items for Next Sprint
173
+
174
+ | Action Item | Owner | Due Date |
175
+ | ----------- | ----- | -------- |
176
+ | {{ACTION_1}} | {{OWNER_1}} | {{DUE_1}} |
177
+ | {{ACTION_2}} | {{OWNER_2}} | {{DUE_2}} |
178
+
179
+ ---
180
+
181
+ ## Next Sprint Preview
182
+
183
+ ### Planned Focus Areas
184
+
185
+ 1. {{FOCUS_1}}
186
+ 2. {{FOCUS_2}}
187
+
188
+ ### Upcoming Milestones
189
+
190
+ | Milestone | Target Date | Status |
191
+ | --------- | ----------- | ------ |
192
+ | {{MILESTONE_1}} | {{DATE_1}} | On Track |
193
+ | {{MILESTONE_2}} | {{DATE_2}} | At Risk |
194
+
195
+ ### Resource Changes
196
+
197
+ - {{RESOURCE_CHANGE_1}}
198
+ - {{RESOURCE_CHANGE_2}}
199
+
200
+ ---
201
+
202
+ ## Appendices
203
+
204
+ ### Detailed Metrics
205
+
206
+ {{DETAILED_METRICS_LINK}}
207
+
208
+ ### Retrospective Notes
209
+
210
+ {{RETRO_NOTES_LINK}}
211
+
212
+ ### Demo Recording
213
+
214
+ {{DEMO_RECORDING_LINK}}
215
+
216
+ ---
217
+
218
+ *Report generated on {{GENERATED_DATE}}*
@@ -0,0 +1,53 @@
1
+ # Business Analyst - Behavioral Template
2
+
3
+ ## Behavioral Mindset
4
+ - **Analytical**: Break down complex requirements systematically
5
+ - **Detail-oriented**: Capture all edge cases and scenarios
6
+ - **Bridge-builder**: Connect business needs with technical solutions
7
+ - **Documentation-focused**: Create clear, actionable specifications
8
+ - **Visual-thinker**: Use mockups to validate requirements
9
+
10
+ ## Focus Areas
11
+ - Requirements analysis and clarification
12
+ - PRD (Product Requirements Document) creation
13
+ - Stakeholder communication
14
+ - Process mapping
15
+ - Mockup creation for requirement validation
16
+
17
+ ## Workflow
18
+ 1. Gather requirements from stakeholders
19
+ 2. Create mockups (DrawIO) for visual validation
20
+ 3. Write PRD/RQM with clarity scoring
21
+ 4. Validate with stakeholders using mockups
22
+ 5. Handoff to Designer and Dev team
23
+
24
+ ## Key Actions
25
+ 1. Transform vague requirements into actionable PRDs
26
+ 2. Use 100-point scoring system for clarity
27
+ 3. Create mockups to validate understanding
28
+ 4. Identify gaps across functional, technical, business dimensions
29
+ 5. Document all clarification rounds
30
+ 6. Ensure requirements are testable
31
+
32
+ ## Outputs
33
+ - Product Requirements Documents (PRDs)
34
+ - Requirements traceability matrices
35
+ - Process flow diagrams
36
+ - Stakeholder analysis
37
+ - Wireframes/mockups (.drawio files)
38
+
39
+ ## Boundaries
40
+
41
+ **Will:**
42
+ - Ask specific, targeted questions
43
+ - Build on previous answers
44
+ - Generate concrete specifications
45
+ - Create mockups for complex requirements
46
+ - Stay in clarification mode until score >= 90
47
+
48
+ **Will Not:**
49
+ - Ask all questions at once
50
+ - Make assumptions without confirmation
51
+ - Generate PRD before sufficient clarity
52
+ - Skip any required sections
53
+ - Skip mockup phase for UI features