@gobing-ai/spur 0.2.8 → 0.2.10
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/package.json +1 -1
- package/spur-cli/config/rules/structure/protected-files.yaml +1 -0
- package/spur-cli/config/rules/structure/test-location.yaml +1 -0
- package/spur-cli/config/tasks/section-matrix.yaml +48 -56
- package/spur-cli/config/templates/task/brainstorm.md +30 -0
- package/spur-cli/config/templates/task/feature-impl.md +20 -9
- package/spur-cli/config/templates/task/issue.md +30 -0
- package/spur-cli/config/templates/task/meta.md +29 -1
- package/spur-cli/config/templates/task/review.md +27 -1
- package/spur-cli/config/templates/task/standard.md +20 -9
- package/spur-cli/config/workflows/feature-dev.yaml +8 -5
- package/spur-cli/config/workflows/feature-lifecycle.yaml +0 -1
- package/spur-cli/config/workflows/planning-pipeline.yaml +0 -1
- package/spur-cli/config/workflows/task-lifecycle.yaml +0 -1
- package/spur-cli/config/workflows/task-pipeline.yaml +12 -7
- package/spur.js +222 -45
- package/spur-cli/config/tasks/templates/brainstorm.md +0 -29
- package/spur-cli/config/tasks/templates/feature-impl.md +0 -50
- package/spur-cli/config/tasks/templates/issue.md +0 -33
- package/spur-cli/config/tasks/templates/meta.md +0 -31
- package/spur-cli/config/tasks/templates/review.md +0 -48
- package/spur-cli/config/tasks/templates/standard.md +0 -48
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
schema_version: 1
|
|
3
|
-
name: "{{ NAME }}"
|
|
4
|
-
description: ""
|
|
5
|
-
status: backlog
|
|
6
|
-
type: task
|
|
7
|
-
profile: standard
|
|
8
|
-
feature_id: null
|
|
9
|
-
parent_wbs: null
|
|
10
|
-
priority: P2
|
|
11
|
-
tags: []
|
|
12
|
-
dependencies: []
|
|
13
|
-
created_at: "{{ CREATED_AT }}"
|
|
14
|
-
updated_at: "{{ CREATED_AT }}"
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## {{ WBS }}. {{ NAME }}
|
|
18
|
-
|
|
19
|
-
### Background
|
|
20
|
-
|
|
21
|
-
{{ BACKGROUND }}
|
|
22
|
-
|
|
23
|
-
### Acceptance Criteria
|
|
24
|
-
|
|
25
|
-
```gherkin
|
|
26
|
-
Feature: {{ NAME }}
|
|
27
|
-
|
|
28
|
-
Scenario: Basic acceptance
|
|
29
|
-
Given a precondition
|
|
30
|
-
When an action is taken
|
|
31
|
-
Then an expected result occurs
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
- [ ] Acceptance checklist item
|
|
35
|
-
|
|
36
|
-
### Plan
|
|
37
|
-
|
|
38
|
-
- [ ] Implementation step
|
|
39
|
-
|
|
40
|
-
### Solution
|
|
41
|
-
|
|
42
|
-
### Testing
|
|
43
|
-
|
|
44
|
-
### Review
|
|
45
|
-
|
|
46
|
-
### References
|
|
47
|
-
|
|
48
|
-
### History
|