pm-context 2026.6.7 → 2026.6.8
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 +11 -0
- package/dist/index.js +1 -1
- package/manifest.json +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -10,3 +10,14 @@
|
|
|
10
10
|
### Other
|
|
11
11
|
|
|
12
12
|
- Run tests during release readiness ([pm-context-cqmc](https://github.com/unbraind/pm-context/blob/main/.agents/pm/chores/pm-context-cqmc.toon))
|
|
13
|
+
|
|
14
|
+
## 2026.06.07 - 2026-06-06
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Build initial context pack command ([pm-context-0gyf](https://github.com/unbraind/pm-context/blob/main/.agents/pm/features/pm-context-0gyf.toon))
|
|
19
|
+
- Add agent handoff digest mode to context packs ([pm-context-opzn](https://github.com/unbraind/pm-context/blob/main/.agents/pm/features/pm-context-opzn.toon))
|
|
20
|
+
|
|
21
|
+
### Other
|
|
22
|
+
|
|
23
|
+
- Run tests during release readiness ([pm-context-cqmc](https://github.com/unbraind/pm-context/blob/main/.agents/pm/chores/pm-context-cqmc.toon))
|
package/dist/index.js
CHANGED
|
@@ -462,7 +462,7 @@ function setupCommands(api) {
|
|
|
462
462
|
}
|
|
463
463
|
export default defineExtension({
|
|
464
464
|
name: "pm-context",
|
|
465
|
-
version: "2026.6.
|
|
465
|
+
version: "2026.6.8",
|
|
466
466
|
description: "Generate deterministic pm context packs for agent handoffs, reviews, and status briefs",
|
|
467
467
|
activate(api) {
|
|
468
468
|
setupCommands(api);
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-context",
|
|
3
|
-
"version": "2026.6.
|
|
3
|
+
"version": "2026.6.8",
|
|
4
4
|
"description": "Generate deterministic pm context packs for agent handoffs, reviews, and status briefs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"pack:dry-run": "npm pack --dry-run",
|
|
24
24
|
"changelog": "pm-changelog --pm-root .agents/pm --mode prepend --output CHANGELOG.md --release-version-from-package --since-previous-tag --until-release-tag --item-url-base https://github.com/unbraind/pm-context/blob/main/.agents/pm",
|
|
25
25
|
"changelog:full": "pm-changelog --pm-root .agents/pm --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --item-url-base https://github.com/unbraind/pm-context/blob/main/.agents/pm",
|
|
26
|
-
"changelog:check": "pm-changelog --pm-root .agents/pm --mode
|
|
26
|
+
"changelog:check": "pm-changelog --pm-root .agents/pm --mode prepend --output CHANGELOG.md --since-previous-tag --until-release-tag --release-version-from-package --item-url-base https://github.com/unbraind/pm-context/blob/main/.agents/pm --check",
|
|
27
|
+
"release:notes": "pm-changelog --pm-root .agents/pm --stdout --since-previous-tag --until-release-tag --release-version-from-package --item-url-base https://github.com/unbraind/pm-context/blob/main/.agents/pm --pm-bin ./node_modules/.bin/pm --github-step-summary",
|
|
27
28
|
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check"
|
|
28
29
|
},
|
|
29
30
|
"keywords": [
|
|
@@ -44,12 +45,12 @@
|
|
|
44
45
|
"url": "https://github.com/unbraind/pm-context/issues"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
|
-
"@unbrained/pm-cli": ">=2026.6.
|
|
48
|
+
"@unbrained/pm-cli": ">=2026.6.7"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"@types/node": "^25.9.2",
|
|
51
|
-
"@unbrained/pm-cli": "^2026.6.
|
|
52
|
-
"pm-changelog": "^2026.6.
|
|
52
|
+
"@unbrained/pm-cli": "^2026.6.7",
|
|
53
|
+
"pm-changelog": "^2026.6.7",
|
|
53
54
|
"typescript": "^6.0.3"
|
|
54
55
|
},
|
|
55
56
|
"pmPackage": {
|