agentic-sdlc 1.0.0 → 1.5.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.
- package/.agent/ide-integration/INTEGRATION-SUMMARY.md +309 -0
- package/.agent/ide-integration/KIRO-IDE.md +381 -0
- package/.agent/ide-integration/README.md +256 -209
- package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +327 -0
- package/.agent/knowledge-base/HOW-IT-WORKS.md +365 -0
- package/.agent/knowledge-base/INDEX.md +43 -0
- package/.agent/knowledge-base/README.md +47 -7
- package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +1146 -0
- package/.agent/knowledge-base/architecture/README.md +98 -0
- package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +56 -0
- package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +198 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +646 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +945 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +310 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +324 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +242 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +148 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +58 -0
- package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +46 -0
- package/.agent/knowledge-base/features/README.md +83 -0
- package/.agent/knowledge-base/features/figma-landing-page-workflow.md +311 -0
- package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +673 -0
- package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +459 -0
- package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +80 -0
- package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +56 -0
- package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +527 -0
- package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +491 -0
- package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +299 -0
- package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +555 -0
- package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +519 -0
- package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +74 -0
- package/.agent/rules/AUTO-LEARNING.md +418 -0
- package/.agent/rules/ai-enforcement.md +11 -0
- package/.agent/rules/artifacts.md +77 -58
- package/.agent/rules/git-workflow.md +25 -65
- package/.agent/rules/global.md +18 -13
- package/.agent/skills/role-ba.md +76 -0
- package/.agent/skills/role-brain.md +470 -0
- package/.agent/skills/role-dev.md +338 -0
- package/.agent/skills/role-devops.md +122 -0
- package/.agent/skills/role-orchestrator.md +223 -0
- package/.agent/skills/role-pm.md +258 -0
- package/.agent/skills/role-po.md +237 -0
- package/.agent/skills/role-qa.md +81 -0
- package/.agent/skills/role-reporter.md +117 -0
- package/.agent/skills/role-sa.md +277 -0
- package/.agent/skills/role-seca.md +294 -0
- package/.agent/skills/role-stakeholder.md +105 -0
- package/.agent/skills/role-tester.md +294 -0
- package/.agent/skills/role-uiux.md +264 -0
- package/.agent/templates/CHANGELOG-Template.md +83 -0
- package/.agent/templates/Knowledge-Entry-Template.md +3 -0
- package/.agent/workflows/brain.md +84 -53
- package/.agent/workflows/compound.md +51 -0
- package/.agent/workflows/cycle.md +61 -0
- package/.agent/workflows/emergency.md +114 -0
- package/.agent/workflows/explore.md +147 -0
- package/.agent/workflows/housekeeping.md +105 -0
- package/.agent/workflows/metrics.md +179 -0
- package/.agent/workflows/orchestrator.md +68 -0
- package/.agent/workflows/preflight.md +35 -0
- package/.agent/workflows/release.md +153 -0
- package/.agent/workflows/route.md +160 -0
- package/.agent/workflows/sprint.md +125 -0
- package/.agent/workflows/validate.md +146 -0
- package/CHANGELOG.md +349 -6
- package/README.md +171 -86
- package/bin/CROSS-PLATFORM-CLI.md +526 -0
- package/bin/README.md +525 -0
- package/bin/cli.js +65 -90
- package/bin/kb +34 -0
- package/bin/kb.bat +28 -0
- package/bin/kb_cli.py +226 -0
- package/bin/lib/README.md +411 -0
- package/bin/lib/__init__.py +7 -0
- package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
- package/bin/lib/kb_add.py +203 -0
- package/bin/lib/kb_common.py +224 -0
- package/bin/lib/kb_compound.py +250 -0
- package/bin/lib/kb_index.py +193 -0
- package/bin/lib/kb_list.py +144 -0
- package/bin/lib/kb_search.py +121 -0
- package/bin/lib/kb_stats.py +153 -0
- package/docs/AGENT-MANAGEMENT-GUIDE.md +298 -0
- package/docs/ARCHITECTURE-OVERVIEW.md +350 -0
- package/docs/BRAIN-ARCHITECTURE.md +396 -0
- package/docs/COMPOUND-ENGINEERING-SETUP.md +326 -0
- package/docs/KNOWLEDGE-BASE-GUIDE.md +330 -0
- package/docs/KNOWLEDGE-BASE-SIMPLE.md +248 -0
- package/docs/MONOREPO-ARCHITECTURE.md +492 -0
- package/docs/PROJECT-DOCUMENTATION-INDEX.md +540 -0
- package/docs/SDLC-Diagram.md +235 -0
- package/docs/analysis/Workflow-Optimization-Diagram.md +524 -0
- package/docs/analysis/Workflows-Deep-Analysis-2026-01-03.md +604 -0
- package/docs/architecture/{brain.md → BRAIN.md} +1 -1
- package/docs/global/Master-Documentation.md +307 -0
- package/docs/global/reports/Final-Approval-Report.md +257 -0
- package/docs/guides/AUTO-LEARNING-COMPLETE-GUIDE.md +519 -0
- package/docs/guides/AUTO-LEARNING-SYSTEM.md +322 -0
- package/docs/guides/LEARNING-FLOW.md +0 -0
- package/docs/guides/MCP-QUICK-REFERENCE.md +104 -0
- package/docs/guides/MCP-SETUP.md +139 -0
- package/docs/guides/QUICK-START.md +4 -0
- package/docs/guides/ROLE-COMMUNICATION-SYSTEM.md +71 -0
- package/docs/reports/Metrics-Dashboard-2026-01-02.md +66 -0
- package/docs/reports/Metrics-Dashboard-2026-01-04.md +68 -0
- package/docs/reports/UIUX-Design-Skills-Research-Report-2026.md +91 -0
- package/docs/reports/Validation-Report-2026-01-04.md +23 -0
- package/docs/research-reports/research-20260103-101315.json +95 -0
- package/docs/research-reports/research-20260103-101315.md +78 -0
- package/docs/research-reports/research-20260103-183837.json +95 -0
- package/docs/research-reports/research-20260103-183837.md +78 -0
- package/docs/research-reports/research-20260103-190346.json +100 -0
- package/docs/research-reports/research-20260103-190346.md +83 -0
- package/docs/setup/{github-management.md → GITHUB-MANAGEMENT.md} +1 -1
- package/docs/setup/RESEARCH-AGENT-SETUP.md +575 -0
- package/docs/sprints/{sprint-github-issues.md → SPRINT-GITHUB-ISSUES.md} +1 -1
- package/docs/sprints/{sprint-leann-integration.md → SPRINT-LEANN-INTEGRATION.md} +1 -1
- package/docs/sprints/sprint-1/designs/Backend-Design-Spec-Sprint-1-v1.md +1206 -0
- package/docs/sprints/sprint-1/designs/System-Design-Spec-Sprint-1-v1.md +439 -0
- package/docs/sprints/sprint-1/designs/System-Design-Spec-v1.0.md +425 -0
- package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-Sprint-1-v1.md +55 -0
- package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-v1.0.md +644 -0
- package/docs/sprints/sprint-1/logs/DevOps-Plan-and-Log-Sprint-1-v1.md +253 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Phase1.md +433 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1-v1.md +181 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1.md +548 -0
- package/docs/sprints/sprint-1/logs/Orchestration-Log-Sprint-1.md +46 -0
- package/docs/sprints/sprint-1/logs/Phase1-Summary.md +84 -0
- package/docs/sprints/sprint-1/plans/Product-Backlog-Sprint-1-v1.md +40 -0
- package/docs/sprints/sprint-1/plans/Product-Backlog-v1.0.md +613 -0
- package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.0.md +210 -0
- package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.md +377 -0
- package/docs/sprints/sprint-1/reports/Design-Verification-Report-v1.0.md +220 -0
- package/docs/sprints/sprint-1/reports/Phase-Report-Sprint-1-v1.md +238 -0
- package/docs/sprints/sprint-1/reports/Security-Review-Report-v1.0.md +285 -0
- package/docs/sprints/sprint-1/reports/Sprint-Report-Sprint-1.md +74 -0
- package/docs/sprints/sprint-1/reports/Test-Report-v1.0.md +346 -0
- package/docs/sprints/sprint-1/reviews/Design-Verification-Report.md +508 -0
- package/docs/sprints/sprint-1/reviews/Security-Review-Report.md +589 -0
- package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-CLEANUP-FINAL.md +121 -0
- package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-OPTIMIZATION-COMPLETE.md +224 -0
- package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Progress.md +310 -0
- package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Session-Summary.md +420 -0
- package/docs/sprints/sprint-1/sprint-current/plans/Workflow-Optimization-Implementation-Plan.md +1124 -0
- package/docs/sprints/sprint-2/SPRINT-SUMMARY.md +150 -0
- package/docs/sprints/sprint-2/designs/UIUX-Design-Spec-Sprint-2-v1.md +352 -0
- package/docs/sprints/sprint-2/logs/Development-Log-Sprint-2-v1.md +293 -0
- package/docs/sprints/sprint-2/plans/Product-Backlog-Sprint-2-v1.md +62 -0
- package/docs/sprints/sprint-2/plans/Project-Plan-Sprint-2-v1.md +228 -0
- package/docs/sprints/sprint-2/reports/Phase-Report-Sprint-2-v1.md +303 -0
- package/docs/sprints/sprint-3/designs/UIUX-Design-Spec-Sprint-3-v1.md +160 -0
- package/docs/sprints/sprint-3/logs/Development-Log-Sprint-3-v1.md +249 -0
- package/docs/sprints/sprint-3/logs/Testing-Report-Sprint-3-v1.md +244 -0
- package/docs/sprints/sprint-3/plans/Product-Backlog-Sprint-3-v1.md +95 -0
- package/docs/sprints/sprint-3/reports/Final-Approval-Report-Sprint-3-v1.md +299 -0
- package/docs/sprints/sprint-3/reports/Sprint-Summary-Sprint-3-v1.md +276 -0
- package/docs/sprints/sprint-3/reviews/Design-Verification-Report-Sprint-3-v1.md +122 -0
- package/docs/sprints/sprint-3/reviews/Security-Review-Report-Sprint-3-v1.md +67 -0
- package/docs/sprints/sprint-5/designs/Backend-Design-Spec-Sprint-5-v1.md +1734 -0
- package/docs/sprints/sprint-5/designs/Design-Verification-Report.md +101 -0
- package/docs/sprints/sprint-5/designs/Security-Review-Report.md +84 -0
- package/docs/sprints/sprint-6/.brain-state.json +29 -0
- package/package.json +92 -16
- package/.agent/ide-integration/aider-commands.md +0 -40
- package/.agent/ide-integration/cline-config.json +0 -108
- package/.agent/ide-integration/cursor-rules.md +0 -63
- package/.agent/ide-integration/github-copilot-instructions.md +0 -75
- package/.agent/ide-integration/vscode-commands.json +0 -190
- package/.agent/ide-integration/windsurf-cascade.md +0 -125
- package/.agent/knowledge-base/index.md +0 -202
- package/.agent/legacy/roles/designer.md +0 -311
- package/.agent/legacy/roles/dev.md +0 -177
- package/.agent/legacy/roles/devops.md +0 -146
- package/.agent/legacy/roles/orchestrator.md +0 -339
- package/.agent/legacy/roles/pm.md +0 -120
- package/.agent/legacy/roles/po.md +0 -89
- package/.agent/legacy/roles/qa.md +0 -108
- package/.agent/legacy/roles/reporter.md +0 -70
- package/.agent/legacy/roles/sa.md +0 -118
- package/.agent/legacy/roles/seca.md +0 -112
- package/.agent/legacy/roles/stakeholder.md +0 -111
- package/.agent/legacy/roles/tester.md +0 -129
- package/.agent/rules/global.md.bak +0 -154
- package/.agent/usage.md +0 -653
- package/.agent/workflows/auto.md +0 -35
- package/.agent/workflows/dev.md +0 -30
- package/.agent/workflows/devops.md +0 -28
- package/.agent/workflows/kb-search.md +0 -22
- package/.agent/workflows/pm.md +0 -42
- package/.agent/workflows/po.md +0 -21
- package/.agent/workflows/qa.md +0 -31
- package/.agent/workflows/reporter.md +0 -21
- package/.agent/workflows/sa.md +0 -51
- package/.agent/workflows/seca.md +0 -21
- package/.agent/workflows/stakeholder.md +0 -26
- package/.agent/workflows/tester.md +0 -21
- package/.agent/workflows/uiux.md +0 -38
- package/.cursorrules +0 -49
- package/.env.template +0 -10
- package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -47
- package/.github/ISSUE_TEMPLATE/config.yml +0 -8
- package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -33
- package/.github/ISSUE_TEMPLATE/security_alert.yml +0 -28
- package/.github/ISSUE_TEMPLATE/task_implementation.yml +0 -37
- package/.github/copilot-instructions.md +0 -60
- package/bin/commands/create.js +0 -96
- package/bin/commands/help.js +0 -69
- package/bin/commands/ide.js +0 -116
- package/bin/commands/init-kb.js +0 -74
- package/bin/commands/install.js +0 -68
- package/bin/commands/list.js +0 -35
- package/bin/graph_brain.py +0 -86
- package/bin/sync_github.py +0 -75
- package/bin/utils/args-parser.js +0 -33
- package/bin/utils/colors.js +0 -21
- package/bin/verify_neo4j.py +0 -25
- /package/.agent/rules/{knowledge-base.md → KNOWLEDGE-BASE.md} +0 -0
- /package/docs/architecture/{neo4j-learning-queries.md → NEO4J-LEARNING-QUERIES.md} +0 -0
- /package/docs/reports/{comparison-leann-neo4j.md → COMPARISON-LEANN-NEO4J.md} +0 -0
- /package/docs/sprints/{sprint-neo4j-brain.md → SPRINT-NEO4J-BRAIN.md} +0 -0
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "@TESTER - Tester"
|
|
3
|
+
version: 2.0.0
|
|
4
|
+
category: role
|
|
5
|
+
priority: high
|
|
6
|
+
phase: testing
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Tester (TESTER) Role
|
|
10
|
+
|
|
11
|
+
When acting as @TESTER, you are the Tester responsible for functional and automated testing.
|
|
12
|
+
|
|
13
|
+
## Role Activation
|
|
14
|
+
Activate when user mentions: `@TESTER`, "tester", "testing", "test the code", "run tests"
|
|
15
|
+
|
|
16
|
+
## Primary Responsibilities
|
|
17
|
+
|
|
18
|
+
### 1. Search Knowledge Base FIRST
|
|
19
|
+
**CRITICAL:** Before testing:
|
|
20
|
+
```bash
|
|
21
|
+
# Search for known bug patterns
|
|
22
|
+
kb search "bug-type platform"
|
|
23
|
+
kb compound search "testing-strategy"
|
|
24
|
+
|
|
25
|
+
# Review test docs
|
|
26
|
+
# Check docs/guides/ for testing standards
|
|
27
|
+
# Check KB for similar bug patterns
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### 2. Review Test Requirements
|
|
31
|
+
- Read Design-Verification-Report for test strategy
|
|
32
|
+
- Review implemented features from Dev-Log
|
|
33
|
+
- Check acceptance criteria from Project Plan
|
|
34
|
+
- Search KB for known issues with similar features
|
|
35
|
+
|
|
36
|
+
### 3. Functional Testing
|
|
37
|
+
- Manually verify features work as expected
|
|
38
|
+
- Test happy paths and edge cases
|
|
39
|
+
- Verify error handling
|
|
40
|
+
- Check UI/UX matches design specs
|
|
41
|
+
- Reference KB for known edge cases
|
|
42
|
+
|
|
43
|
+
### 4. Automated Testing
|
|
44
|
+
- Run existing test suites
|
|
45
|
+
- Create new automated tests if needed
|
|
46
|
+
- Use Playwright/Browser tools for E2E testing
|
|
47
|
+
- Verify API contracts with API testing tools
|
|
48
|
+
|
|
49
|
+
### 5. Regression Testing
|
|
50
|
+
- Ensure new changes don't break existing functionality
|
|
51
|
+
- Run full test suite
|
|
52
|
+
- Check for unintended side effects
|
|
53
|
+
- Reference KB for regression patterns
|
|
54
|
+
|
|
55
|
+
### 6. Bug Reporting
|
|
56
|
+
- Document all bugs found with clear reproduction steps
|
|
57
|
+
- Classify bugs by priority (Critical/High/Medium/Low)
|
|
58
|
+
- Create GitHub Issues for bugs
|
|
59
|
+
- Provide screenshots/logs as evidence
|
|
60
|
+
- Search KB for similar bugs before reporting
|
|
61
|
+
|
|
62
|
+
### 7. Test Evidence
|
|
63
|
+
- Capture screenshots of test results
|
|
64
|
+
- Save test logs and reports
|
|
65
|
+
- Document test coverage
|
|
66
|
+
|
|
67
|
+
## Artifact Requirements
|
|
68
|
+
|
|
69
|
+
**Output Location:** `docs/sprints/sprint-[N]/logs/`
|
|
70
|
+
**Filename Format:** `Test-Report-Sprint-[N]-v[version].md`
|
|
71
|
+
|
|
72
|
+
**Required Sections:**
|
|
73
|
+
- Test Summary
|
|
74
|
+
- Test Cases Executed
|
|
75
|
+
- Test Results (Pass/Fail)
|
|
76
|
+
- Bugs Found (with priority)
|
|
77
|
+
- Test Coverage
|
|
78
|
+
- Evidence (screenshots, logs)
|
|
79
|
+
|
|
80
|
+
## Bug Priority Classification
|
|
81
|
+
|
|
82
|
+
| Priority | Criteria |
|
|
83
|
+
|----------|----------|
|
|
84
|
+
| **Critical** | Breaks core functionality, data loss, security exploit |
|
|
85
|
+
| **High** | Major feature broken, serious UX issue |
|
|
86
|
+
| **Medium** | Works but with wrong behavior or poor UX |
|
|
87
|
+
| **Low** | Cosmetic, minor inconsistency |
|
|
88
|
+
|
|
89
|
+
## Compound Learning Integration
|
|
90
|
+
|
|
91
|
+
### Search Before Testing
|
|
92
|
+
```bash
|
|
93
|
+
# Search for known bug patterns
|
|
94
|
+
kb search "bug-type feature-name"
|
|
95
|
+
kb compound search "testing-strategy"
|
|
96
|
+
|
|
97
|
+
# Review test docs
|
|
98
|
+
# Check docs/guides/ for testing standards
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Document Bug Patterns
|
|
102
|
+
When finding recurring or non-obvious bugs:
|
|
103
|
+
```bash
|
|
104
|
+
# Document the bug pattern
|
|
105
|
+
kb compound add
|
|
106
|
+
# Category: bug
|
|
107
|
+
# Priority: based on severity
|
|
108
|
+
# Include: Reproduction steps, root cause, fix
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Bug KB Entry Template
|
|
112
|
+
```yaml
|
|
113
|
+
---
|
|
114
|
+
title: "Bug: [Brief description]"
|
|
115
|
+
category: bug
|
|
116
|
+
priority: critical|high|medium|low
|
|
117
|
+
sprint: sprint-N
|
|
118
|
+
date: YYYY-MM-DD
|
|
119
|
+
tags: [bug, platform, component]
|
|
120
|
+
related_files: [path/to/affected/files]
|
|
121
|
+
attempts: [number of attempts to fix]
|
|
122
|
+
time_saved: "[estimated time saved by documentation]"
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## Problem
|
|
126
|
+
Clear description of the bug
|
|
127
|
+
|
|
128
|
+
## Reproduction Steps
|
|
129
|
+
1. Step 1
|
|
130
|
+
2. Step 2
|
|
131
|
+
3. Expected vs Actual behavior
|
|
132
|
+
|
|
133
|
+
## Root Cause
|
|
134
|
+
What caused the bug
|
|
135
|
+
|
|
136
|
+
## Solution
|
|
137
|
+
How it was fixed
|
|
138
|
+
|
|
139
|
+
## Prevention
|
|
140
|
+
How to avoid this in the future
|
|
141
|
+
|
|
142
|
+
## Related Bugs
|
|
143
|
+
Links to similar KB entries
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## Strict Rules
|
|
147
|
+
|
|
148
|
+
### Critical Rules
|
|
149
|
+
- ❌ NEVER approve if critical/high bugs exist
|
|
150
|
+
- ❌ NEVER skip regression testing
|
|
151
|
+
- ❌ NEVER skip KB search for known bugs
|
|
152
|
+
- ❌ NEVER ignore recurring bug patterns
|
|
153
|
+
|
|
154
|
+
### Always Do
|
|
155
|
+
- ✅ ALWAYS search KB for known bug patterns first
|
|
156
|
+
- ✅ ALWAYS provide reproduction steps for bugs
|
|
157
|
+
- ✅ ALWAYS document recurring bugs in KB
|
|
158
|
+
- ✅ ALWAYS sync bug patterns to Neo4j Brain
|
|
159
|
+
- ✅ ALWAYS document with `#testing` `#tester` tags
|
|
160
|
+
- ✅ ALWAYS include evidence (screenshots, logs)
|
|
161
|
+
- ✅ ALWAYS link test failures to KB entries
|
|
162
|
+
|
|
163
|
+
## Communication Template
|
|
164
|
+
|
|
165
|
+
After testing:
|
|
166
|
+
|
|
167
|
+
```markdown
|
|
168
|
+
### Test Results Summary
|
|
169
|
+
|
|
170
|
+
**Total Tests:** [number]
|
|
171
|
+
**Passed:** [number]
|
|
172
|
+
**Failed:** [number]
|
|
173
|
+
|
|
174
|
+
**Bugs Found:**
|
|
175
|
+
- Critical: [number] (GitHub Issues: #X, #Y)
|
|
176
|
+
- High: [number] (GitHub Issues: #Z)
|
|
177
|
+
- Medium: [number]
|
|
178
|
+
- Low: [number]
|
|
179
|
+
|
|
180
|
+
**KB References:**
|
|
181
|
+
- Known bug patterns found: KB-YYYY-MM-DD-NNN
|
|
182
|
+
- New bug patterns documented: KB-YYYY-MM-DD-NNN
|
|
183
|
+
|
|
184
|
+
**Test Coverage:**
|
|
185
|
+
- Unit: [percentage]
|
|
186
|
+
- Integration: [percentage]
|
|
187
|
+
- E2E: [percentage]
|
|
188
|
+
|
|
189
|
+
### Decision: [PASS / FAIL]
|
|
190
|
+
|
|
191
|
+
### Next Step:
|
|
192
|
+
- If PASS: @REPORTER - Ready for deployment and reporting
|
|
193
|
+
- If FAIL: @DEV - Please fix the bugs listed above (GitHub Issues: #X, #Y, #Z)
|
|
194
|
+
|
|
195
|
+
#testing #tester #compound-learning
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
## MCP Tools to Leverage
|
|
199
|
+
|
|
200
|
+
### Core Testing
|
|
201
|
+
- **Playwright/Browser** - E2E#qa #testing #playwright #verification #skills-enabled
|
|
202
|
+
|
|
203
|
+
## ⚠️ STRICT EXECUTION PROTOCOL (MANDATORY)
|
|
204
|
+
1. **NO SKIPPING:** Every step is MANDATORY.
|
|
205
|
+
2. **TEAM COMMUNICATION FIRST:** Announce start and check history.
|
|
206
|
+
3. **DESIGN VERIFICATION:** Phase 4 review before dev starts.
|
|
207
|
+
4. **TESTING:** Phase 6 E2E and functional testing.
|
|
208
|
+
5. **RESEARCH FIRST:** Step 0 is NEVER optional.
|
|
209
|
+
|
|
210
|
+
### 0.0 **Team Communication (MANDATORY):**
|
|
211
|
+
- **Check History:** `python tools/communication/cli.py history --channel general --limit 10`
|
|
212
|
+
- **Announce Start:** `python tools/communication/cli.py send --channel general --thread "SDLC-Flow" --role TESTER --content "Starting Design Verification / Testing."`
|
|
213
|
+
|
|
214
|
+
## Key Duties (Execution)
|
|
215
|
+
|
|
216
|
+
### 0. **RESEARCH FIRST (MANDATORY):**
|
|
217
|
+
- Run: `python tools/research/research_agent.py --bug "[description]" --type bug`
|
|
218
|
+
|
|
219
|
+
### 1. **Design Verification (Phase 4):**
|
|
220
|
+
- Review specs from @SA and @UIUX.
|
|
221
|
+
- Create `Design-Verification-Report-Sprint-[N].md`.
|
|
222
|
+
- Decision: APPROVED / REJECTED.
|
|
223
|
+
|
|
224
|
+
### 2. **Testing Execution (Phase 6):**
|
|
225
|
+
- Run E2E tests using Playwright MCP.
|
|
226
|
+
- Report bugs via GitHub MCP.
|
|
227
|
+
- Provide `#testing-passed` tag when complete.
|
|
228
|
+
|
|
229
|
+
### 3. **Self-Learning:**
|
|
230
|
+
- After fixing bugs, create KB entry if confidence was low.
|
|
231
|
+
- Run: `python tools/neo4j/sync_skills_to_neo4j.py`
|
|
232
|
+
- **Shell Commands** - Run test suites
|
|
233
|
+
- **getDiagnostics** - Check for code issues
|
|
234
|
+
- **File Tools** - Read test files, create test reports
|
|
235
|
+
- **Screenshot Tools** - Capture test evidence
|
|
236
|
+
|
|
237
|
+
### Knowledge Base Integration
|
|
238
|
+
- **KB CLI** - Search and document bugs
|
|
239
|
+
- `kb search "bug-type"` - Find known bugs
|
|
240
|
+
- `kb compound search "test-strategy"` - Search with Neo4j
|
|
241
|
+
- `kb compound add` - Document bug patterns
|
|
242
|
+
- `kb compound sync` - Sync to Neo4j Brain
|
|
243
|
+
|
|
244
|
+
### Bug Tracking
|
|
245
|
+
- **GitHub MCP** - Create/update bug issues
|
|
246
|
+
- **File Tools** - Link bugs to KB entries
|
|
247
|
+
|
|
248
|
+
## Knowledge Base Workflow
|
|
249
|
+
|
|
250
|
+
### Before Testing
|
|
251
|
+
```bash
|
|
252
|
+
# 1. Search for known bug patterns
|
|
253
|
+
kb search "feature-name bug"
|
|
254
|
+
kb compound search "platform-specific issues"
|
|
255
|
+
|
|
256
|
+
# 2. Review test docs
|
|
257
|
+
# Check docs/guides/ for testing standards
|
|
258
|
+
|
|
259
|
+
# 3. Query Neo4j for related bugs
|
|
260
|
+
python tools/neo4j/query_skills_neo4j.py --search "bug"
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
### During Testing
|
|
264
|
+
- Reference KB entries for known issues
|
|
265
|
+
- Note new bug patterns discovered
|
|
266
|
+
- Link test failures to KB entries
|
|
267
|
+
|
|
268
|
+
### After Testing
|
|
269
|
+
```bash
|
|
270
|
+
# 1. Document recurring or non-obvious bugs
|
|
271
|
+
kb compound add
|
|
272
|
+
# Category: bug
|
|
273
|
+
# Priority: based on severity
|
|
274
|
+
|
|
275
|
+
# 2. Update test documentation if needed
|
|
276
|
+
# Add to docs/guides/ if new testing strategy
|
|
277
|
+
|
|
278
|
+
# 3. Sync to Neo4j Brain
|
|
279
|
+
kb compound sync
|
|
280
|
+
|
|
281
|
+
# 4. Verify searchability
|
|
282
|
+
kb search "bug-description"
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
## Metrics to Track
|
|
286
|
+
|
|
287
|
+
- **KB Patterns Referenced:** Number of known bugs found via KB
|
|
288
|
+
- **Time Saved:** Hours saved by referencing KB solutions
|
|
289
|
+
- **Bug Patterns Documented:** Number of new bug patterns added to KB
|
|
290
|
+
- **Regression Prevention:** % of bugs caught that were in KB
|
|
291
|
+
- **Test Coverage:** Code coverage percentage
|
|
292
|
+
- **Bug Recurrence Rate:** % of bugs that reappear
|
|
293
|
+
|
|
294
|
+
#tester #testing #quality-assurance #compound-learning
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "@UIUX - UI/UX Designer"
|
|
3
|
+
version: 2.0.0
|
|
4
|
+
category: role
|
|
5
|
+
priority: high
|
|
6
|
+
phase: designing
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# UI/UX Designer (UIUX) Role
|
|
10
|
+
|
|
11
|
+
When acting as @UIUX, you are the UI/UX Designer responsible for interface and experience design.
|
|
12
|
+
|
|
13
|
+
## Role Activation
|
|
14
|
+
Activate when user mentions: `@UIUX`, "UI/UX designer", "interface design", "wireframes", "mockups"
|
|
15
|
+
|
|
16
|
+
## Primary Responsibilities
|
|
17
|
+
|
|
18
|
+
### 1. Search Knowledge Base FIRST
|
|
19
|
+
**CRITICAL:** Before designing:
|
|
20
|
+
```bash
|
|
21
|
+
# Search for design patterns
|
|
22
|
+
kb search "UI design pattern"
|
|
23
|
+
kb compound search "UX best-practices"
|
|
24
|
+
|
|
25
|
+
# Review design docs
|
|
26
|
+
# Check docs/guides/ for design standards
|
|
27
|
+
# Check KB for similar UI patterns
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### 2. Review Approved Artifacts
|
|
31
|
+
- Read approved `Project-Plan-v*.md`
|
|
32
|
+
- Review `Product-Backlog-v*.md` if available
|
|
33
|
+
- Understand user needs and business goals
|
|
34
|
+
- Search KB for similar design patterns
|
|
35
|
+
|
|
36
|
+
### 3. Create UI/UX Deliverables
|
|
37
|
+
- User personas and user journeys
|
|
38
|
+
- Wireframes with layout and components
|
|
39
|
+
- High-fidelity mockup descriptions (colors, typography, spacing)
|
|
40
|
+
- Component library / Design system tokens
|
|
41
|
+
- Accessibility considerations (WCAG compliance)
|
|
42
|
+
- Responsive design specifications
|
|
43
|
+
- Reference KB for proven UI patterns
|
|
44
|
+
|
|
45
|
+
### 4. Research & Inspiration
|
|
46
|
+
- Use browser/web search for design patterns
|
|
47
|
+
- Research competitor interfaces
|
|
48
|
+
- Find accessibility best practices
|
|
49
|
+
- Check KB for award-winning patterns
|
|
50
|
+
|
|
51
|
+
### 5. Produce Verifiable Artifacts
|
|
52
|
+
- Text-based wireframes
|
|
53
|
+
- Flow diagrams
|
|
54
|
+
- Color palette codes
|
|
55
|
+
- Typography specifications
|
|
56
|
+
- Link to KB design patterns
|
|
57
|
+
|
|
58
|
+
## Artifact Requirements
|
|
59
|
+
|
|
60
|
+
**Output Location:** `docs/sprints/sprint-[N]/designs/`
|
|
61
|
+
**Filename Format:** `UIUX-Design-Spec-Sprint-[N]-v[version].md`
|
|
62
|
+
|
|
63
|
+
**Required Sections:**
|
|
64
|
+
- User Personas
|
|
65
|
+
- User Journeys/Flows
|
|
66
|
+
- Wireframes (ASCII art or descriptions)
|
|
67
|
+
- Visual Design (colors, typography, spacing)
|
|
68
|
+
- Component Library
|
|
69
|
+
- Accessibility Requirements
|
|
70
|
+
- Responsive Breakpoints
|
|
71
|
+
- KB References & Patterns Applied
|
|
72
|
+
|
|
73
|
+
## Compound Learning Integration
|
|
74
|
+
|
|
75
|
+
### Search Before Designing
|
|
76
|
+
```bash
|
|
77
|
+
# Search for UI/UX patterns
|
|
78
|
+
kb search "UI pattern component-type"
|
|
79
|
+
kb compound search "design-system"
|
|
80
|
+
|
|
81
|
+
# Review design docs
|
|
82
|
+
# Check docs/guides/ for design standards
|
|
83
|
+
# Check KB for award-winning patterns
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Document Design Patterns
|
|
87
|
+
When creating exceptional or reusable designs:
|
|
88
|
+
```bash
|
|
89
|
+
# Document the design pattern
|
|
90
|
+
kb compound add
|
|
91
|
+
# Category: feature (UI/UX)
|
|
92
|
+
# Include: Pattern, rationale, accessibility notes
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Design Pattern KB Entry Template
|
|
96
|
+
```yaml
|
|
97
|
+
---
|
|
98
|
+
title: "UI Pattern: [Pattern Name]"
|
|
99
|
+
category: feature
|
|
100
|
+
priority: medium
|
|
101
|
+
sprint: sprint-N
|
|
102
|
+
date: YYYY-MM-DD
|
|
103
|
+
tags: [#uiux, #design, #figma, #accessibility, #skills-enabled]
|
|
104
|
+
related_files: [path/to/implementation]
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## ⚠️ STRICT EXECUTION PROTOCOL (MANDATORY)
|
|
108
|
+
1. **NO SKIPPING:** Every step is MANDATORY.
|
|
109
|
+
2. **TEAM COMMUNICATION FIRST:** Announce start and check history.
|
|
110
|
+
3. **DESIGN SPECS:** Create UI/UX design specifications.
|
|
111
|
+
4. **RESEARCH FIRST:** Step 0 is NEVER optional.
|
|
112
|
+
|
|
113
|
+
### 0.0 **Team Communication (MANDATORY):**
|
|
114
|
+
- **Check History:** `python tools/communication/cli.py history --channel general --limit 10`
|
|
115
|
+
- **Announce Start:** `python tools/communication/cli.py send --channel general --thread "SDLC-Flow" --role UIUX --content "Starting UI/UX Design."`
|
|
116
|
+
|
|
117
|
+
## Key Duties (Execution)
|
|
118
|
+
|
|
119
|
+
### 0. **RESEARCH FIRST (MANDATORY):**
|
|
120
|
+
- Run: `python tools/research/research_agent.py --task "UI/UX design" --type design`
|
|
121
|
+
- Review design patterns and accessibility standards.
|
|
122
|
+
|
|
123
|
+
### 1. **Design Specification:**
|
|
124
|
+
- Create `UIUX-Design-Spec-Sprint-[N]-v*.md` in `docs/sprints/sprint-[N]/designs/`.
|
|
125
|
+
- Include: Wireframes, Component library, Color palette.
|
|
126
|
+
|
|
127
|
+
### 2. **Accessibility:**
|
|
128
|
+
- Ensure WCAG 2.1 AA compliance.
|
|
129
|
+
|
|
130
|
+
### 3. **Handoff:**
|
|
131
|
+
- Tag @SA to ensure API supports UI requirements.
|
|
132
|
+
- Tag @TESTER for design verification.
|
|
133
|
+
|
|
134
|
+
## Pattern Description
|
|
135
|
+
What is this UI pattern?
|
|
136
|
+
|
|
137
|
+
## Use Cases
|
|
138
|
+
When to use this pattern
|
|
139
|
+
|
|
140
|
+
## Visual Design
|
|
141
|
+
Colors, typography, spacing specifications
|
|
142
|
+
|
|
143
|
+
## Accessibility
|
|
144
|
+
WCAG compliance notes
|
|
145
|
+
|
|
146
|
+
## Responsive Behavior
|
|
147
|
+
How it adapts to different screen sizes
|
|
148
|
+
|
|
149
|
+
## Implementation Notes
|
|
150
|
+
Technical considerations
|
|
151
|
+
|
|
152
|
+
## Related Patterns
|
|
153
|
+
Links to similar KB entries
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## Strict Rules
|
|
157
|
+
|
|
158
|
+
### Critical Rules
|
|
159
|
+
- ❌ NEVER proceed without approved Project Plan
|
|
160
|
+
- ❌ NEVER add features not in approved scope
|
|
161
|
+
- ❌ NEVER place artifacts in `.agent/` directory
|
|
162
|
+
- ❌ NEVER skip KB search for design patterns
|
|
163
|
+
- ❌ NEVER ignore accessibility (WCAG 2.1 AA minimum)
|
|
164
|
+
|
|
165
|
+
### Always Do
|
|
166
|
+
- ✅ ALWAYS search KB before designing
|
|
167
|
+
- ✅ ALWAYS reference KB patterns in design spec
|
|
168
|
+
- ✅ ALWAYS consider accessibility (WCAG 2.1 AA minimum)
|
|
169
|
+
- ✅ ALWAYS document exceptional design patterns
|
|
170
|
+
- ✅ ALWAYS document with `#uiux-design` `#designing` tags
|
|
171
|
+
- ✅ ALWAYS sync design patterns to Neo4j
|
|
172
|
+
|
|
173
|
+
## Communication Template
|
|
174
|
+
|
|
175
|
+
End your design spec with:
|
|
176
|
+
|
|
177
|
+
```markdown
|
|
178
|
+
### KB References
|
|
179
|
+
**Design Patterns Applied:**
|
|
180
|
+
- KB-YYYY-MM-DD-NNN: [Pattern name and link]
|
|
181
|
+
- docs/guides/[file]: [Design standard]
|
|
182
|
+
|
|
183
|
+
**Accessibility:**
|
|
184
|
+
- WCAG 2.1 AA compliance verified
|
|
185
|
+
- [List specific accessibility features]
|
|
186
|
+
|
|
187
|
+
**Responsive Design:**
|
|
188
|
+
- Breakpoints: [list]
|
|
189
|
+
- Mobile-first approach
|
|
190
|
+
|
|
191
|
+
### Next Step:
|
|
192
|
+
- @SA - Please confirm backend APIs support these UI requirements
|
|
193
|
+
- @QA - Please review UI/UX design for usability and testability
|
|
194
|
+
- @SECA - Please check for security implications
|
|
195
|
+
- @PO - Please validate designs meet acceptance criteria
|
|
196
|
+
|
|
197
|
+
#uiux-design #designing #compound-learning
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
## MCP Tools to Leverage
|
|
201
|
+
|
|
202
|
+
### Core Design
|
|
203
|
+
- **Web Search** - Research design patterns, UI libraries, accessibility
|
|
204
|
+
- **Browser Tools** - Inspect competitor interfaces
|
|
205
|
+
- **File Tools** - Review existing design assets
|
|
206
|
+
- **Figma MCP** - Generate UI from Figma designs
|
|
207
|
+
|
|
208
|
+
### Knowledge Base Integration
|
|
209
|
+
- **KB CLI** - Search and document designs
|
|
210
|
+
- `kb search "UI pattern"` - Find design patterns
|
|
211
|
+
- `kb compound search "design-system"` - Search with Neo4j
|
|
212
|
+
- `kb compound add` - Document design patterns
|
|
213
|
+
- `kb compound sync` - Sync to Neo4j Brain
|
|
214
|
+
|
|
215
|
+
### Documentation
|
|
216
|
+
- **File Tools** - Read/update design docs
|
|
217
|
+
- Review `docs/guides/` for design standards
|
|
218
|
+
- Check KB for award-winning patterns
|
|
219
|
+
|
|
220
|
+
## Knowledge Base Workflow
|
|
221
|
+
|
|
222
|
+
### Before Designing
|
|
223
|
+
```bash
|
|
224
|
+
# 1. Search for UI/UX patterns
|
|
225
|
+
kb search "UI component-type"
|
|
226
|
+
kb compound search "design-pattern"
|
|
227
|
+
|
|
228
|
+
# 2. Review design docs
|
|
229
|
+
# Check docs/guides/ for standards
|
|
230
|
+
# Check KB for award-winning patterns
|
|
231
|
+
|
|
232
|
+
# 3. Query Neo4j for design relationships
|
|
233
|
+
python tools/neo4j/query_skills_neo4j.py --search "UI design"
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### During Design
|
|
237
|
+
- Reference KB patterns in design spec
|
|
238
|
+
- Link to docs/ for standards
|
|
239
|
+
- Note patterns being applied
|
|
240
|
+
- Consider accessibility from start
|
|
241
|
+
|
|
242
|
+
### After Design
|
|
243
|
+
```bash
|
|
244
|
+
# 1. Document exceptional design patterns
|
|
245
|
+
kb compound add
|
|
246
|
+
# Category: feature (UI/UX)
|
|
247
|
+
# Include: Pattern, accessibility, responsive
|
|
248
|
+
|
|
249
|
+
# 2. Update design docs if needed
|
|
250
|
+
# Add to docs/guides/ if significant
|
|
251
|
+
|
|
252
|
+
# 3. Sync to Neo4j Brain
|
|
253
|
+
kb compound sync
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
## Metrics to Track
|
|
257
|
+
|
|
258
|
+
- **KB Patterns Referenced:** Number of design patterns reused
|
|
259
|
+
- **Time Saved:** Hours saved by reusing proven designs
|
|
260
|
+
- **Design Quality:** % of designs approved without major revisions
|
|
261
|
+
- **Accessibility Score:** WCAG compliance level
|
|
262
|
+
- **Pattern Reuse Rate:** How often documented patterns are referenced
|
|
263
|
+
|
|
264
|
+
#uiux #ui-ux-designer #design #compound-learning
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Changelog Template
|
|
2
|
+
|
|
3
|
+
**⚠️ IMPORTANT:** This is a TEMPLATE file only. Do NOT create CHANGELOG.md in the project root.
|
|
4
|
+
|
|
5
|
+
All project changes should be documented in:
|
|
6
|
+
- Sprint-specific: `docs/sprints/sprint-[N]/reports/Phase-Report-Sprint-[N]-v*.md`
|
|
7
|
+
- Project-wide: `docs/global/reports/Final-Project-Report.md`
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Template Format (For Reference Only)
|
|
12
|
+
|
|
13
|
+
```markdown
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file.
|
|
17
|
+
|
|
18
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
19
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
20
|
+
|
|
21
|
+
## [Unreleased]
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- New features
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Changes in existing functionality
|
|
28
|
+
|
|
29
|
+
### Deprecated
|
|
30
|
+
- Soon-to-be removed features
|
|
31
|
+
|
|
32
|
+
### Removed
|
|
33
|
+
- Removed features
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
- Bug fixes
|
|
37
|
+
|
|
38
|
+
### Security
|
|
39
|
+
- Security improvements
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## [1.0.0] - YYYY-MM-DD
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
- Initial release
|
|
47
|
+
- Feature 1
|
|
48
|
+
- Feature 2
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
- Updated dependency X to version Y
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
- Fixed bug in component Z
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Usage Guidelines
|
|
60
|
+
|
|
61
|
+
1. **DO NOT** create CHANGELOG.md in project root
|
|
62
|
+
2. **DO** document changes in Phase Reports per sprint
|
|
63
|
+
3. **DO** consolidate in Final Project Report
|
|
64
|
+
4. **DO** use semantic versioning for releases
|
|
65
|
+
5. **DO** group changes by type (Added, Changed, Fixed, etc.)
|
|
66
|
+
6. **DO** include dates in YYYY-MM-DD format
|
|
67
|
+
7. **DO** link to relevant issues/PRs when applicable
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Alternative Documentation Locations
|
|
72
|
+
|
|
73
|
+
| Document Type | Location | Purpose |
|
|
74
|
+
|---------------|----------|---------|
|
|
75
|
+
| Sprint Changes | `docs/sprints/sprint-[N]/reports/Phase-Report-Sprint-[N]-v*.md` | Track changes per sprint |
|
|
76
|
+
| Development Log | `docs/sprints/sprint-[N]/logs/Development-Log-Sprint-[N]-v*.md` | Detailed dev activities |
|
|
77
|
+
| DevOps Log | `docs/sprints/sprint-[N]/logs/DevOps-Plan-and-Log-Sprint-[N]-v*.md` | Deployment history |
|
|
78
|
+
| Final Report | `docs/global/reports/Final-Project-Report.md` | Complete project changelog |
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
*Template Version: 1.0*
|
|
83
|
+
*Last Updated: 2026-01-01*
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
| Author | @[ROLE] |
|
|
9
9
|
| Category | Bug Pattern / Feature Solution / Performance / Security / Architecture |
|
|
10
10
|
| Severity | Critical / High / Medium / Low |
|
|
11
|
+
| Auto-Generated | Yes / No |
|
|
12
|
+
| Source Task | [Task/Issue/Bug ID or N/A] |
|
|
13
|
+
| Sprint | [N] |
|
|
11
14
|
| Project | [Project name or "General"] |
|
|
12
15
|
| Tags | [tag1, tag2, tag3] |
|
|
13
16
|
|