@pinet/slack-bridge 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +27 -2
  2. package/package.json +12 -7
package/README.md CHANGED
@@ -4,17 +4,42 @@ Slack assistant integration for [pi](https://github.com/badlogic/pi-mono) — mu
4
4
 
5
5
  ## Install
6
6
 
7
+ Install the latest Pinet Slack bridge pi package:
8
+
7
9
  ```bash
8
10
  pi install npm:@pinet/slack-bridge
9
11
  ```
10
12
 
11
- Or with npm:
13
+ Or pin an exact published version for reproducible installs:
14
+
15
+ ```bash
16
+ pi install npm:@pinet/slack-bridge@0.1.0
17
+ ```
18
+
19
+ For package managers or local inspection, the npm package is also installable directly:
12
20
 
13
21
  ```bash
14
22
  npm install @pinet/slack-bridge
15
23
  ```
16
24
 
17
- ## Publishing
25
+ ## Package metadata and publishing
26
+
27
+ This package declares pi package/gallery metadata in [`package.json`](./package.json):
28
+
29
+ - `keywords` includes `pi-package` for gallery discovery.
30
+ - `pi.extensions` points at the built extension entrypoint, `./dist/index.js`.
31
+ - `pi.skills` points at the bundled skill directory, `./skills`.
32
+ - No `pi.image` or `pi.video` preview is declared yet because this package does
33
+ not currently include a reviewed gallery image/video asset.
34
+
35
+ The published tarball is expected to include the package metadata, README,
36
+ Slack app manifest, built `dist/` files, bundled `skills/`, and LICENSE. Verify
37
+ that locally with:
38
+
39
+ ```bash
40
+ cd slack-bridge
41
+ npm pack --dry-run
42
+ ```
18
43
 
19
44
  This package is included in the full npm publish set tracked in
20
45
  [`../plans/npm-publish.md`](../plans/npm-publish.md). Use the GitHub Actions
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@pinet/slack-bridge",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
- "description": "Slack assistant integration for pi (Pinet) — multi-agent broker, thread routing, and inbox tools",
5
+ "description": "Pi package for Pinet Slack assistant integration — multi-agent broker, thread routing, and inbox tools",
6
6
  "author": "Will Porcellini <5994936+gugu91@users.noreply.github.com>",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -26,7 +26,12 @@
26
26
  "dist/"
27
27
  ],
28
28
  "keywords": [
29
- "pi-package"
29
+ "pi-package",
30
+ "pi",
31
+ "pinet",
32
+ "slack",
33
+ "assistant",
34
+ "agent"
30
35
  ],
31
36
  "pi": {
32
37
  "extensions": [
@@ -44,10 +49,10 @@
44
49
  "test": "vitest run"
45
50
  },
46
51
  "dependencies": {
47
- "@pinet/broker-core": "0.1.0",
48
- "@pinet/imessage-bridge": "0.1.0",
49
- "@pinet/pinet-core": "0.1.0",
50
- "@pinet/transport-core": "0.1.0",
52
+ "@pinet/broker-core": "0.1.2",
53
+ "@pinet/imessage-bridge": "0.1.2",
54
+ "@pinet/pinet-core": "0.1.2",
55
+ "@pinet/transport-core": "0.1.2",
51
56
  "@sinclair/typebox": "^0.34.49"
52
57
  },
53
58
  "types": "./dist/index.d.ts",