pm-slack-standup 2026.7.22 → 2026.7.23

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026.7.23 - 2026-07-23
4
+
5
+ ### Fixed
6
+
7
+ - Recommend pm merge reconcile (2026.7.22) over raw history-repair in Multi-agent merge safety docs ([pm-slack-standup-dkqk](https://github.com/unbraind/pm-slack-standup/blob/main/.agents/pm/issues/pm-slack-standup-dkqk.toon))
8
+
9
+ ### Other
10
+
11
+ - Adopt pm field-aware merge driver for multi-agent branch-merge safety ([pm-slack-standup-0pxr](https://github.com/unbraind/pm-slack-standup/blob/main/.agents/pm/chores/pm-slack-standup-0pxr.toon))
12
+
3
13
  ## 2026.7.19 - 2026-07-19
4
14
 
5
15
  ### Added
package/README.md CHANGED
@@ -371,6 +371,16 @@ This package is release-ready for GitHub, npm, and Bun-compatible installs. CI r
371
371
  This repo tracks its project management in `.agents/pm/` and ships a committed `.gitattributes`
372
372
  that maps those tracker artifacts to pm-cli's field-aware Git merge drivers, so concurrent-branch
373
373
  tracker edits merge cleanly instead of hard-conflicting. The driver **definitions** live in
374
- per-clone Git config; `npm install` / `npm ci` wires them automatically via the `prepare` script
375
- (`pm merge install`). To (re)run manually: `npm run merge:install`. After merging a branch that
376
- touched `.agents/pm/`, run `pm history-repair --all` to reconcile history verification.
374
+ per-clone Git config; `npm install` / `npm ci` wires them automatically via the `prepare` script (a portable Node guard, `scripts/prepare-merge-driver.mjs`: it runs
375
+ `pm merge install` only when the `pm` CLI is on `PATH`, and no-ops cleanly otherwise so
376
+ production / `--omit=dev` installs are not broken; being Node-based it behaves identically
377
+ on POSIX shells and Windows `cmd.exe`). To (re)run manually: `npm run merge:install`.
378
+
379
+ After merging a branch that touched `.agents/pm/`, reconcile any residual history-hash drift with
380
+ **`pm merge reconcile`** (pm-cli ≥ 2026.7.22): preview with `pm merge reconcile --dry-run`, apply with
381
+ `pm merge reconcile --message "post-merge reconcile"`, then confirm with `pm validate`, which scans the
382
+ whole tracker and flags remaining history drift across **every** affected item (`pm merge reconcile`
383
+ itself lists each affected stream in its output; `pm history --verify <id>` spot-checks one item). The field-aware driver already unions every author's
384
+ content, so `reconcile` only re-greens the hash chain (no data loss) — see the authoritative
385
+ [pm-cli merge-safety guide](https://github.com/unbraind/pm-cli/blob/main/docs/MERGE_SAFETY.md). The
386
+ older blunt `pm history-repair --all` remains available as a lower-level primitive.
package/dist/index.js CHANGED
@@ -1402,7 +1402,7 @@ export function renderTrendLine(deltas) {
1402
1402
  let exportStdoutViaService = false;
1403
1403
  export default defineExtension({
1404
1404
  name: "pm-slack-standup",
1405
- version: "2026.7.22",
1405
+ version: "2026.7.23",
1406
1406
  activate(api) {
1407
1407
  const standupFlags = [
1408
1408
  { long: "--webhook", value_name: "url", description: "Slack incoming webhook URL (overrides PM_SLACK_WEBHOOK env var)" },
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pm-slack-standup",
3
- "version": "2026.7.22",
3
+ "version": "2026.7.23",
4
4
  "manifest_version": 2,
5
5
  "description": "Post pm context as a Slack standup message",
6
6
  "author": "@unbraind",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pm-slack-standup",
3
- "version": "2026.7.22",
3
+ "version": "2026.7.23",
4
4
  "description": "Post pm context as a Slack standup message",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,14 +35,14 @@
35
35
  "release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check",
36
36
  "prepublishOnly": "npm run release:check",
37
37
  "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-slack-standup/blob/main/.agents/pm --pm-bin ./node_modules/.bin/pm --github-step-summary",
38
- "prepare": "if command -v pm >/dev/null 2>&1; then pm merge install; fi",
38
+ "prepare": "node scripts/prepare-merge-driver.mjs",
39
39
  "merge:install": "pm merge install"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^26.1.1",
43
43
  "pm-changelog": "^2026.7.6",
44
44
  "typescript": "^7.0.2",
45
- "@unbrained/pm-cli": "^2026.7.21"
45
+ "@unbrained/pm-cli": "^2026.7.22"
46
46
  },
47
47
  "keywords": [
48
48
  "pm-cli",