teamspec 3.2.0 → 4.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.
- package/README.md +24 -12
- package/bin/teamspec-init.js +2 -2
- package/lib/cli.js +653 -99
- package/lib/linter.js +823 -1076
- package/lib/prompt-generator.js +312 -330
- package/lib/structure-loader.js +400 -0
- package/package.json +14 -6
- package/teamspec-core/FOLDER_STRUCTURE.yml +131 -0
- package/teamspec-core/agents/AGENT_BA.md +188 -293
- package/teamspec-core/agents/AGENT_BOOTSTRAP.md +197 -102
- package/teamspec-core/agents/AGENT_DES.md +9 -8
- package/teamspec-core/agents/AGENT_DEV.md +68 -67
- package/teamspec-core/agents/AGENT_FA.md +437 -245
- package/teamspec-core/agents/AGENT_FIX.md +344 -74
- package/teamspec-core/agents/AGENT_PO.md +487 -0
- package/teamspec-core/agents/AGENT_QA.md +124 -98
- package/teamspec-core/agents/AGENT_SA.md +143 -84
- package/teamspec-core/agents/AGENT_SM.md +106 -83
- package/teamspec-core/agents/README.md +143 -93
- package/teamspec-core/copilot-instructions.md +281 -205
- package/teamspec-core/definitions/definition-of-done.md +47 -84
- package/teamspec-core/definitions/definition-of-ready.md +35 -60
- package/teamspec-core/registry.yml +898 -0
- package/teamspec-core/teamspec.yml +44 -28
- package/teamspec-core/templates/README.md +5 -5
- package/teamspec-core/templates/adr-template.md +19 -17
- package/teamspec-core/templates/bai-template.md +125 -0
- package/teamspec-core/templates/bug-report-template.md +21 -15
- package/teamspec-core/templates/business-analysis-template.md +16 -13
- package/teamspec-core/templates/decision-log-template.md +26 -22
- package/teamspec-core/templates/dev-plan-template.md +168 -0
- package/teamspec-core/templates/epic-template.md +204 -0
- package/teamspec-core/templates/feature-increment-template.md +84 -0
- package/teamspec-core/templates/feature-template.md +45 -32
- package/teamspec-core/templates/increments-index-template.md +53 -0
- package/teamspec-core/templates/product-template.yml +44 -0
- package/teamspec-core/templates/products-index-template.md +46 -0
- package/teamspec-core/templates/project-template.yml +70 -0
- package/teamspec-core/templates/ri-template.md +225 -0
- package/teamspec-core/templates/rt-template.md +104 -0
- package/teamspec-core/templates/sd-template.md +132 -0
- package/teamspec-core/templates/sdi-template.md +119 -0
- package/teamspec-core/templates/sprint-template.md +17 -15
- package/teamspec-core/templates/story-template-v4.md +202 -0
- package/teamspec-core/templates/story-template.md +48 -90
- package/teamspec-core/templates/ta-template.md +198 -0
- package/teamspec-core/templates/tai-template.md +131 -0
- package/teamspec-core/templates/tc-template.md +145 -0
- package/teamspec-core/templates/testcases-template.md +20 -17
- package/extensions/teamspec-0.1.0.vsix +0 -0
- package/lib/extension-installer.js +0 -236
package/README.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# TeamSpec CLI
|
|
2
2
|
|
|
3
|
-
> Bootstrap TeamSpec
|
|
3
|
+
> Bootstrap TeamSpec 4.0 Product-Canon Operating Model in any repository
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/teamspec)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
## What is TeamSpec?
|
|
9
9
|
|
|
10
|
-
TeamSpec is a **
|
|
10
|
+
TeamSpec is a **Product-Canon Operating Model** for software teams. It provides:
|
|
11
11
|
|
|
12
|
-
- **
|
|
12
|
+
- **Product Canon** — Single source of truth for production behavior (AS-IS)
|
|
13
|
+
- **Feature-Increments** — Proposed changes to products (TO-BE)
|
|
13
14
|
- **Delta-based Stories** — Stories describe changes, not full behavior
|
|
14
|
-
- **Role-based Workflows** — Clear ownership boundaries (BA, FA, SA, DEV, QA, SM)
|
|
15
|
+
- **Role-based Workflows** — Clear ownership boundaries (PO, BA, FA, SA, DEV, QA, SM)
|
|
15
16
|
- **AI Agent Integration** — Works with GitHub Copilot, Cursor, Claude, and more
|
|
16
17
|
|
|
17
18
|
## Installation
|
|
@@ -129,20 +130,30 @@ Updates templates, definitions, and profiles while preserving your team configur
|
|
|
129
130
|
|
|
130
131
|
Once configured, use these commands with your AI assistant:
|
|
131
132
|
|
|
133
|
+
### Product Owner
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
ts:po product # Create new product with PRX prefix
|
|
137
|
+
ts:po project # Create new project targeting product(s)
|
|
138
|
+
ts:po sync # Sync Feature-Increments to Product Canon (post-deploy)
|
|
139
|
+
ts:po status # Product/project status overview
|
|
140
|
+
```
|
|
141
|
+
|
|
132
142
|
### Business Analysis
|
|
133
143
|
|
|
134
144
|
```
|
|
135
|
-
ts:ba
|
|
136
|
-
ts:ba
|
|
137
|
-
ts:ba
|
|
145
|
+
ts:ba analysis # Create business analysis document
|
|
146
|
+
ts:ba ba-increment # Create BA increment in project
|
|
147
|
+
ts:ba review # Review artifacts for business intent
|
|
138
148
|
```
|
|
139
149
|
|
|
140
150
|
### Functional Analysis
|
|
141
151
|
|
|
142
152
|
```
|
|
143
|
-
ts:fa
|
|
144
|
-
ts:fa
|
|
145
|
-
ts:fa
|
|
153
|
+
ts:fa feature # Create feature in Product Canon
|
|
154
|
+
ts:fa feature-increment # Create feature-increment in project
|
|
155
|
+
ts:fa epic # Create epic in project
|
|
156
|
+
ts:fa story # Create story linked to epic
|
|
146
157
|
```
|
|
147
158
|
|
|
148
159
|
### Development
|
|
@@ -155,8 +166,9 @@ ts:dev implement # Execute from existing plan
|
|
|
155
166
|
### Quality Assurance
|
|
156
167
|
|
|
157
168
|
```
|
|
158
|
-
ts:qa test # Design test cases
|
|
159
|
-
ts:qa
|
|
169
|
+
ts:qa test # Design test cases for Feature-Increment
|
|
170
|
+
ts:qa regression # Update product regression tests
|
|
171
|
+
ts:qa verify # Validate DoD compliance
|
|
160
172
|
ts:qa uat # Create UAT pack
|
|
161
173
|
```
|
|
162
174
|
|
package/bin/teamspec-init.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* TeamSpec Init CLI
|
|
5
|
-
* Bootstrap TeamSpec
|
|
5
|
+
* Bootstrap TeamSpec 4.0 Product-Canon operating model in any repository
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
const { run } = require('../lib/cli');
|