@prjct.app/pi-team 0.1.2 → 0.1.3
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 +7 -0
- package/README.md +3 -3
- package/docs/package.md +4 -0
- package/package.json +15 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
- Clarify the package description and add focused discovery keywords.
|
|
6
|
+
- Declare the cover image for the official Pi package gallery.
|
|
7
|
+
|
|
8
|
+
- Align repository, documentation, and cover URLs with the npm package name.
|
|
9
|
+
|
|
3
10
|
## 0.1.2
|
|
4
11
|
|
|
5
12
|
- Use a publicly accessible cover URL so npm renders the image for every visitor.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# pi-team
|
|
2
2
|
|
|
3
|
-
[](https://pi.dev)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Coordinate independent PI Agent sessions with local team messaging, queued tasks, and shared results.
|
|
6
6
|
|
|
7
7
|
`@prjct.app/pi-team` · Team commands, messaging tools, and local mailbox storage; one extension.
|
|
8
8
|
|
|
@@ -218,7 +218,7 @@ pi remove npm:@prjct.app/pi-team
|
|
|
218
218
|
|
|
219
219
|
Use `pi config` to enable or disable individual resources. Use `pi config -l` for project settings and add `-l` to removal when you installed locally.
|
|
220
220
|
|
|
221
|
-
To pin version 0.1.
|
|
221
|
+
To pin version 0.1.3, use `pi install npm:@prjct.app/pi-team@0.1.3`. Pi skips pinned npm versions during package updates. For a Git installation, update or remove using the same `git:github.com/prjct-app/pi-team` source instead of the npm source.
|
|
222
222
|
|
|
223
223
|
When switching from GitHub to npm, remove the Git installation first, then install the npm package and restart Pi.
|
|
224
224
|
|
package/docs/package.md
CHANGED
|
@@ -52,3 +52,7 @@ These links are pinned to the tested Pi version rather than the moving main bran
|
|
|
52
52
|
- [TUI: components, rendering, terminal widths, and image support](https://github.com/earendil-works/pi/blob/v0.85.1/packages/coding-agent/docs/tui.md).
|
|
53
53
|
|
|
54
54
|
The installed `@earendil-works/pi-coding-agent@0.85.1` package ships the same guides under `docs/`. The [current official guide](https://github.com/earendil-works/pi/blob/main/packages/coding-agent/docs/packages.md) may describe changes beyond this tested baseline.
|
|
55
|
+
|
|
56
|
+
## Discovery metadata
|
|
57
|
+
|
|
58
|
+
The `pi-package` keyword identifies this package for the official Pi gallery. Focused keywords describe its actual features. The `pi.image` field points to its public cover, following the [official gallery metadata format](https://github.com/earendil-works/pi/blob/v0.85.1/packages/coding-agent/docs/packages.md#gallery-metadata).
|
package/package.json
CHANGED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prjct.app/pi-team",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Coordinate independent PI Agent sessions with local team messaging, queued tasks, and shared results.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"pi-package",
|
|
8
8
|
"pi",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
9
|
+
"pi-agent",
|
|
10
|
+
"pi-coding-agent",
|
|
11
|
+
"pi-extension",
|
|
12
|
+
"ai-coding",
|
|
13
|
+
"developer-tools",
|
|
14
|
+
"multi-agent",
|
|
15
|
+
"agent-collaboration",
|
|
16
|
+
"messaging",
|
|
17
|
+
"task-queue",
|
|
18
|
+
"local-first"
|
|
12
19
|
],
|
|
13
20
|
"pi": {
|
|
14
21
|
"extensions": [
|
|
15
22
|
"./index.ts"
|
|
16
|
-
]
|
|
23
|
+
],
|
|
24
|
+
"image": "https://raw.githubusercontent.com/prjct-app/pi-clipboard/main/docs/covers/pi-team.png"
|
|
17
25
|
},
|
|
18
26
|
"scripts": {
|
|
19
27
|
"check": "tsc --noEmit",
|
|
@@ -45,7 +53,7 @@
|
|
|
45
53
|
"license": "MIT",
|
|
46
54
|
"repository": {
|
|
47
55
|
"type": "git",
|
|
48
|
-
"url": "https://github.com/prjct-app/pi-team.git"
|
|
56
|
+
"url": "git+https://github.com/prjct-app/pi-team.git"
|
|
49
57
|
},
|
|
50
58
|
"homepage": "https://github.com/prjct-app/pi-team#readme",
|
|
51
59
|
"bugs": {
|