pm-slack-standup 2026.7.19 → 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
|
@@ -365,3 +365,12 @@ MIT
|
|
|
365
365
|
## Release Automation
|
|
366
366
|
|
|
367
367
|
This package is release-ready for GitHub, npm, and Bun-compatible installs. CI runs type checking, build, production dependency audit, package packing, Bun install verification, and pm-changelog validation. The daily release workflow publishes only when commits exist after the latest release tag and uses pm-changelog to generate CHANGELOG.md and GitHub release notes.
|
|
368
|
+
|
|
369
|
+
## Multi-agent merge safety
|
|
370
|
+
|
|
371
|
+
This repo tracks its project management in `.agents/pm/` and ships a committed `.gitattributes`
|
|
372
|
+
that maps those tracker artifacts to pm-cli's field-aware Git merge drivers, so concurrent-branch
|
|
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.
|
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.
|
|
1405
|
+
version: "2026.7.22",
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-slack-standup",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.22",
|
|
4
4
|
"description": "Post pm context as a Slack standup message",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,12 +34,15 @@
|
|
|
34
34
|
"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-slack-standup/blob/main/.agents/pm --check",
|
|
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
|
-
"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"
|
|
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",
|
|
39
|
+
"merge:install": "pm merge install"
|
|
38
40
|
},
|
|
39
41
|
"devDependencies": {
|
|
40
42
|
"@types/node": "^26.1.1",
|
|
41
43
|
"pm-changelog": "^2026.7.6",
|
|
42
|
-
"typescript": "^7.0.2"
|
|
44
|
+
"typescript": "^7.0.2",
|
|
45
|
+
"@unbrained/pm-cli": "^2026.7.21"
|
|
43
46
|
},
|
|
44
47
|
"keywords": [
|
|
45
48
|
"pm-cli",
|