teamspec 3.2.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 (45) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +252 -0
  3. package/bin/teamspec-init.js +10 -0
  4. package/extensions/teamspec-0.1.0.vsix +0 -0
  5. package/lib/cli.js +1174 -0
  6. package/lib/extension-installer.js +236 -0
  7. package/lib/linter.js +1184 -0
  8. package/lib/prompt-generator.js +409 -0
  9. package/package.json +51 -0
  10. package/teamspec-core/agents/AGENT_BA.md +486 -0
  11. package/teamspec-core/agents/AGENT_BOOTSTRAP.md +447 -0
  12. package/teamspec-core/agents/AGENT_DES.md +623 -0
  13. package/teamspec-core/agents/AGENT_DEV.md +611 -0
  14. package/teamspec-core/agents/AGENT_FA.md +736 -0
  15. package/teamspec-core/agents/AGENT_FEEDBACK.md +202 -0
  16. package/teamspec-core/agents/AGENT_FIX.md +380 -0
  17. package/teamspec-core/agents/AGENT_QA.md +756 -0
  18. package/teamspec-core/agents/AGENT_SA.md +581 -0
  19. package/teamspec-core/agents/AGENT_SM.md +771 -0
  20. package/teamspec-core/agents/README.md +383 -0
  21. package/teamspec-core/context/_schema.yml +222 -0
  22. package/teamspec-core/copilot-instructions.md +356 -0
  23. package/teamspec-core/definitions/definition-of-done.md +129 -0
  24. package/teamspec-core/definitions/definition-of-ready.md +104 -0
  25. package/teamspec-core/profiles/enterprise.yml +127 -0
  26. package/teamspec-core/profiles/platform-team.yml +104 -0
  27. package/teamspec-core/profiles/regulated.yml +97 -0
  28. package/teamspec-core/profiles/startup.yml +85 -0
  29. package/teamspec-core/teamspec.yml +69 -0
  30. package/teamspec-core/templates/README.md +211 -0
  31. package/teamspec-core/templates/active-sprint-template.md +98 -0
  32. package/teamspec-core/templates/adr-template.md +194 -0
  33. package/teamspec-core/templates/bug-report-template.md +188 -0
  34. package/teamspec-core/templates/business-analysis-template.md +164 -0
  35. package/teamspec-core/templates/decision-log-template.md +216 -0
  36. package/teamspec-core/templates/feature-template.md +269 -0
  37. package/teamspec-core/templates/functional-spec-template.md +161 -0
  38. package/teamspec-core/templates/refinement-notes-template.md +133 -0
  39. package/teamspec-core/templates/sprint-goal-template.md +129 -0
  40. package/teamspec-core/templates/sprint-template.md +175 -0
  41. package/teamspec-core/templates/sprints-index-template.md +67 -0
  42. package/teamspec-core/templates/story-template.md +244 -0
  43. package/teamspec-core/templates/storymap-template.md +204 -0
  44. package/teamspec-core/templates/testcases-template.md +147 -0
  45. package/teamspec-core/templates/uat-pack-template.md +161 -0
@@ -0,0 +1,161 @@
1
+ # UAT Pack: [Feature Name]
2
+
3
+ <!--
4
+ ⚠️ UAT VALIDATES FEATURE CANON
5
+
6
+ This UAT pack validates behavior as documented in the Feature Canon.
7
+
8
+ RULES:
9
+ 1. UAT tests Feature Canon behavior
10
+ 2. Stakeholders sign off that behavior matches Canon
11
+ 3. Any discrepancies must be classified (bug or Canon wrong)
12
+ -->
13
+
14
+ > **Template Version**: 2.0
15
+ > **Last Updated**: 2026-01-07
16
+
17
+ ---
18
+
19
+ **Document Owner:** QA (QA Engineer)
20
+ **Artifact Type:** Acceptance Validation
21
+ **Lifecycle:** Release-bound
22
+
23
+ ---
24
+
25
+ **To**: [Stakeholder Name]
26
+ **From**: [Project Team]
27
+ **Date**: [Date]
28
+ **Feature ID**: [F-XXX](../features/F-XXX-name.md)
29
+
30
+ ---
31
+
32
+ ## Pre-UAT Checklist
33
+
34
+ Before you begin UAT, please note:
35
+
36
+ - [ ] Feature Canon is current (no pending documentation syncs)
37
+ - [ ] All stories related to this feature are marked "Done"
38
+ - [ ] Implementation has been validated by QA
39
+ - [ ] Feature Canon Change Log is up to date
40
+
41
+ ---
42
+
43
+ ## What Changed in This Release
44
+
45
+ | Feature | Change Summary | Story | Impact Type |
46
+ |---------|----------------|-------|-------------|
47
+ | [F-XXX] | [What changed from previous behavior] | [S-XXX] | Added / Changed |
48
+
49
+ **If this is your first time using this feature, see "Current Behavior" below.**
50
+
51
+ ---
52
+
53
+ ## Current Behavior (from Feature Canon)
54
+
55
+ See the full feature documentation: [F-XXX](../features/F-XXX-name.md)
56
+
57
+ **Key capabilities**:
58
+ - [Capability 1]
59
+ - [Capability 2]
60
+
61
+ **Business Rules**:
62
+ - BR-XXX-001: [Rule description]
63
+ - BR-XXX-002: [Rule description]
64
+
65
+ ---
66
+
67
+ ## Objective
68
+
69
+ Please verify that the [Feature] meets your business needs and that behavior matches what was specified.
70
+
71
+ ---
72
+
73
+ ## Environment
74
+
75
+ - **URL**: [Staging Link]
76
+ - **Login**: [Credentials]
77
+ - **Test Data**: [Data setup instructions]
78
+
79
+ ---
80
+
81
+ ## Scenarios
82
+
83
+ > Please perform these actions and mark Pass/Fail.
84
+
85
+ | ID | Action (Business Language) | Expected Outcome (from Feature Canon) | Pass/Fail | Notes |
86
+ |:---|:---|:---|:---:|:---|
87
+ | 1 | [Action description] | [Expected per Canon] | [ ] | |
88
+ | 2 | [Action description] | [Expected per Canon] | [ ] | |
89
+ | 3 | [Action description] | [Expected per Canon] | [ ] | |
90
+
91
+ ---
92
+
93
+ ## Edge Case Validation
94
+
95
+ | ID | Edge Case | Expected Outcome | Pass/Fail | Notes |
96
+ |:---|:---|:---|:---:|:---|
97
+ | E1 | [Edge case] | [Expected per Canon] | [ ] | |
98
+
99
+ ---
100
+
101
+ ## Feedback
102
+
103
+ > Please note any issues or concerns.
104
+
105
+ **Issues Found:**
106
+
107
+ | Issue # | Description | Severity | Screenshot? |
108
+ |---------|-------------|----------|-------------|
109
+ | 1 | | | [ ] |
110
+
111
+ **General Feedback:**
112
+
113
+ [Open text for stakeholder comments]
114
+
115
+ ---
116
+
117
+ ## Issue Classification Guide
118
+
119
+ If you find an issue, please help us classify it:
120
+
121
+ | If... | Then it's a... |
122
+ |-------|----------------|
123
+ | System does something different than documented | Implementation defect |
124
+ | Documented behavior doesn't match what you expected | Canon may need update |
125
+ | System does something not mentioned anywhere | Undocumented behavior |
126
+
127
+ ---
128
+
129
+ ## Sign-Off
130
+
131
+ **I have verified that the system behavior matches the documented Feature Canon and approve this release.**
132
+
133
+ | Stakeholder | Role | Approved | Date | Signature |
134
+ |-------------|------|----------|------|-----------|
135
+ | [Name] | [Role] | ☐ Yes / ☐ No | | |
136
+
137
+ ---
138
+
139
+ ## Post-UAT Actions
140
+
141
+ ### If Approved:
142
+ - [ ] Release can proceed
143
+ - [ ] Feature Canon confirmed accurate
144
+
145
+ ### If Issues Found:
146
+ - [ ] Bugs filed: [BUG-XXX, BUG-YYY]
147
+ - [ ] Canon updates needed: [List]
148
+ - [ ] Re-UAT scheduled: [Date]
149
+
150
+ ---
151
+
152
+ ## Evidence Record
153
+
154
+ This UAT pack is evidence that:
155
+ 1. ✅ Documented behavior was validated by stakeholders
156
+ 2. ✅ No undocumented scope changes were introduced
157
+ 3. ✅ Feature Canon is accurate and complete
158
+
159
+ **UAT Completed:** [ ] Yes / [ ] No
160
+ **QA Coordinator:** ________________
161
+ **Date:** ________________