pm-presets 2026.5.28 → 2026.5.29
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/CHANGELOG.md +3 -8
- package/manifest.json +26 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2026.5.28
|
|
3
|
+
## 2026.5.28 - 2026-05-28
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
single `pm-presets` package:
|
|
5
|
+
### Other
|
|
7
6
|
|
|
8
|
-
-
|
|
9
|
-
- **indie-dev** (`pm indie-setup`) — minimal-ceremony workspace for solo developers
|
|
10
|
-
- **open-source** (`pm oss-setup`) — issue triage and contributor-friendly templates for OSS maintainers
|
|
11
|
-
- **software-sprint** (`pm sprint-setup`) — sprint-based team workflow with epics, features, tasks, and bugs
|
|
12
|
-
- **startup-roadmap** (`pm roadmap-setup`) — investor-grade milestones and quarterly planning for startups
|
|
7
|
+
- Initial release: consolidate 5 pm-preset-\* packages into pm-presets ([pm-h9u0](https://github.com/unbraind/pm-presets/blob/main/.agents/pm/tasks/pm-h9u0.toon))
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-presets",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.29",
|
|
4
4
|
"description": "All 5 official pm-cli workspace presets in one package: bug-triage, indie-dev, open-source, software-sprint, startup-roadmap",
|
|
5
5
|
"author": "@unbraind",
|
|
6
6
|
"entry": "./dist/index.js",
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
"description": "Strict governance for production incidents, hotfixes, and mandatory root-cause metadata.",
|
|
21
21
|
"idPrefix": "bug-",
|
|
22
22
|
"governance": "strict",
|
|
23
|
-
"templates": [
|
|
23
|
+
"templates": [
|
|
24
|
+
"incident",
|
|
25
|
+
"hotfix-task",
|
|
26
|
+
"regression"
|
|
27
|
+
]
|
|
24
28
|
},
|
|
25
29
|
{
|
|
26
30
|
"id": "indie-dev",
|
|
@@ -29,7 +33,10 @@
|
|
|
29
33
|
"description": "Minimal-ceremony workspace for solo developers and personal projects.",
|
|
30
34
|
"idPrefix": "indie-",
|
|
31
35
|
"governance": "minimal",
|
|
32
|
-
"templates": [
|
|
36
|
+
"templates": [
|
|
37
|
+
"idea",
|
|
38
|
+
"task"
|
|
39
|
+
]
|
|
33
40
|
},
|
|
34
41
|
{
|
|
35
42
|
"id": "open-source",
|
|
@@ -38,7 +45,11 @@
|
|
|
38
45
|
"description": "Issue triage, milestone releases, and contributor-friendly templates for OSS maintainers.",
|
|
39
46
|
"idPrefix": "oss-",
|
|
40
47
|
"governance": "default",
|
|
41
|
-
"templates": [
|
|
48
|
+
"templates": [
|
|
49
|
+
"bug-report",
|
|
50
|
+
"feature-request",
|
|
51
|
+
"good-first-issue"
|
|
52
|
+
]
|
|
42
53
|
},
|
|
43
54
|
{
|
|
44
55
|
"id": "software-sprint",
|
|
@@ -47,7 +58,12 @@
|
|
|
47
58
|
"description": "Sprint-based team workflow with epics, features, tasks, and bugs.",
|
|
48
59
|
"idPrefix": "sprint-",
|
|
49
60
|
"governance": "default",
|
|
50
|
-
"templates": [
|
|
61
|
+
"templates": [
|
|
62
|
+
"epic",
|
|
63
|
+
"feature",
|
|
64
|
+
"task",
|
|
65
|
+
"bug"
|
|
66
|
+
]
|
|
51
67
|
},
|
|
52
68
|
{
|
|
53
69
|
"id": "startup-roadmap",
|
|
@@ -56,7 +72,11 @@
|
|
|
56
72
|
"description": "Investor-grade milestones, strategic initiatives, and quarterly planning for startups.",
|
|
57
73
|
"idPrefix": "road-",
|
|
58
74
|
"governance": "default",
|
|
59
|
-
"templates": [
|
|
75
|
+
"templates": [
|
|
76
|
+
"initiative",
|
|
77
|
+
"feature",
|
|
78
|
+
"milestone"
|
|
79
|
+
]
|
|
60
80
|
}
|
|
61
81
|
]
|
|
62
82
|
}
|
package/package.json
CHANGED