pm-brief 2026.7.20 → 2026.7.22
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 +9 -0
- package/dist/index.js +1 -1
- package/manifest.json +1 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -88,3 +88,12 @@ console.log(renderMarkdownBrief(brief));
|
|
|
88
88
|
This package uses TypeScript, `pm-changelog`, and the same daily release shape
|
|
89
89
|
as the other public pm packages. `npm run release:check` runs typecheck, build,
|
|
90
90
|
tests, production audit, dry-run packing, and changelog validation.
|
|
91
|
+
|
|
92
|
+
## Multi-agent merge safety
|
|
93
|
+
|
|
94
|
+
This repo tracks its project management in `.agents/pm/` and ships a committed `.gitattributes`
|
|
95
|
+
that maps those tracker artifacts to pm-cli's field-aware Git merge drivers, so concurrent-branch
|
|
96
|
+
tracker edits merge cleanly instead of hard-conflicting. The driver **definitions** live in
|
|
97
|
+
per-clone Git config; `npm install` / `npm ci` wires them automatically via the `prepare` script
|
|
98
|
+
(guarded — it runs `pm merge install` only when the `pm` CLI is on `PATH`, and no-ops cleanly otherwise so production / `--omit=dev` installs are not broken). To (re)run manually: `npm run merge:install`. After merging a branch that
|
|
99
|
+
touched `.agents/pm/`, run `pm history-repair --all` to reconcile history verification.
|
package/dist/index.js
CHANGED
|
@@ -1242,7 +1242,7 @@ function registerCommands(api) {
|
|
|
1242
1242
|
}
|
|
1243
1243
|
export default defineExtension({
|
|
1244
1244
|
name: "pm-brief",
|
|
1245
|
-
version: "2026.7.
|
|
1245
|
+
version: "2026.7.22",
|
|
1246
1246
|
description: "Token-budgeted agent briefs and next-work plans for pm workspaces",
|
|
1247
1247
|
activate(api) {
|
|
1248
1248
|
registerCommands(api);
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-brief",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.22",
|
|
4
4
|
"description": "Token-budgeted agent briefs and next-work plans for pm workspaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"changelog:check": "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-brief/blob/main/.agents/pm --check",
|
|
27
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-brief/blob/main/.agents/pm --pm-bin ./node_modules/.bin/pm --github-step-summary",
|
|
28
28
|
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check",
|
|
29
|
-
"prepublishOnly": "npm run release:check"
|
|
29
|
+
"prepublishOnly": "npm run release:check",
|
|
30
|
+
"prepare": "if command -v pm >/dev/null 2>&1; then pm merge install; fi",
|
|
31
|
+
"merge:install": "pm merge install"
|
|
30
32
|
},
|
|
31
33
|
"keywords": [
|
|
32
34
|
"agent",
|
|
@@ -53,7 +55,8 @@
|
|
|
53
55
|
"devDependencies": {
|
|
54
56
|
"@types/node": "^26.1.1",
|
|
55
57
|
"pm-changelog": "2026.7.18",
|
|
56
|
-
"typescript": "^7.0.2"
|
|
58
|
+
"typescript": "^7.0.2",
|
|
59
|
+
"@unbrained/pm-cli": "^2026.7.21"
|
|
57
60
|
},
|
|
58
61
|
"pm": {
|
|
59
62
|
"aliases": [
|