pm-slack-standup 2026.5.26 → 2026.5.28

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026.05.28 - 2026-05-28
4
+
5
+ ### Added
6
+
7
+ - Add publish retry + provenance fallback to release workflow ([pm-slack-standup-5yh1](https://github.com/unbraind/pm-slack-standup/blob/main/.agents/pm/tasks/pm-slack-standup-5yh1.toon))
8
+
9
+ ## 2026.05.27 - 2026-05-27
10
+
11
+ ### Added
12
+
13
+ - Add bun-install verification to release workflow ([pm-slack-standup-rexb](https://github.com/unbraind/pm-slack-standup/blob/main/.agents/pm/tasks/pm-slack-standup-rexb.toon))
14
+
3
15
  ## 2026.05.26 - 2026-05-26
4
16
 
5
17
  ### Fixed
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 unbraind
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -13,13 +13,15 @@ A [pm-cli](https://github.com/unbraind/pm-cli) extension that posts your current
13
13
 
14
14
  ## Installation
15
15
 
16
- Place the built extension in your pm-cli extensions directory, or install via npm (when published):
17
-
18
16
  ```bash
19
- npm install pm-slack-standup
17
+ pm install github.com/unbraind/pm-slack-standup --global
20
18
  ```
21
19
 
22
- Then register it in your pm-cli config.
20
+ Or install per-project:
21
+
22
+ ```bash
23
+ pm install github.com/unbraind/pm-slack-standup --project
24
+ ```
23
25
 
24
26
  ## Setup
25
27
 
package/dist/index.js CHANGED
@@ -137,7 +137,7 @@ function postToSlack(webhookUrl, text) {
137
137
  // ---------------------------------------------------------------------------
138
138
  export default defineExtension({
139
139
  name: "pm-slack-standup",
140
- version: "2026.5.26",
140
+ version: "2026.5.28",
141
141
  activate(api) {
142
142
  api.registerCommand({
143
143
  name: "standup",
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pm-slack-standup",
3
- "version": "2026.5.26",
3
+ "version": "2026.5.28",
4
4
  "description": "Post pm context as a Slack standup message",
5
5
  "author": "@unbraind",
6
6
  "entry": "./dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pm-slack-standup",
3
- "version": "2026.5.26",
3
+ "version": "2026.5.28",
4
4
  "description": "Post pm context as a Slack standup message",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,6 +21,8 @@
21
21
  ],
22
22
  "scripts": {
23
23
  "build": "tsc",
24
+ "build:test": "tsc -p tsconfig.test.json",
25
+ "test": "npm run build && npm run build:test && node --test dist-test/*.js",
24
26
  "dev": "tsc --watch",
25
27
  "prepack": "npm run build",
26
28
  "typecheck": "tsc --noEmit",