@amaster.ai/pi-teamwork 0.1.2-beta.11 → 0.1.2-beta.13
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 +26 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,27 @@ Pi extension for team collaboration and project management. Provides LLM-callabl
|
|
|
8
8
|
|
|
9
9
|
## Configuration
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This extension does **not** manage multica's setup or credentials — those live with the multica CLI itself. Pick one of two modes:
|
|
12
|
+
|
|
13
|
+
### Mode 1 — Pre-configured environment (recommended)
|
|
14
|
+
|
|
15
|
+
Run `multica setup` once on the machine and finish login through multica's normal flow. The extension will reuse that state, and you can leave the auth fields empty:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"pi-teamwork": {
|
|
20
|
+
"enabled": true,
|
|
21
|
+
"provider": "multica",
|
|
22
|
+
"multica": {
|
|
23
|
+
"workspace": ""
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Mode 2 — Headless token
|
|
30
|
+
|
|
31
|
+
For CI or non-interactive environments where you can't run `multica setup`. Issue a long-lived token from your multica server, and the extension will run `multica login --token <token>` on every `session_start`:
|
|
12
32
|
|
|
13
33
|
```json
|
|
14
34
|
{
|
|
@@ -16,21 +36,21 @@ Add to `.pi/settings.json`:
|
|
|
16
36
|
"enabled": true,
|
|
17
37
|
"provider": "multica",
|
|
18
38
|
"multica": {
|
|
19
|
-
"
|
|
20
|
-
"workspace": "",
|
|
21
|
-
"token": ""
|
|
39
|
+
"token": "<token-from-multica-server>"
|
|
22
40
|
}
|
|
23
41
|
}
|
|
24
42
|
}
|
|
25
43
|
```
|
|
26
44
|
|
|
45
|
+
> ⚠️ `token` is a credential. Keep it out of version control — put it in a local-only settings file or inject via env-substituted config.
|
|
46
|
+
|
|
27
47
|
| Field | Description |
|
|
28
48
|
|-------|-------------|
|
|
29
49
|
| `enabled` | Enable/disable the extension |
|
|
30
50
|
| `provider` | Provider name (currently only `multica`) |
|
|
31
51
|
| `multica.binary` | Path to multica binary (default: `multica`) |
|
|
32
|
-
| `multica.workspace` | Workspace ID override |
|
|
33
|
-
| `multica.token` |
|
|
52
|
+
| `multica.workspace` | Workspace ID override; leave empty to use multica's default |
|
|
53
|
+
| `multica.token` | Headless-login token. Only set in mode 2; omit when multica is already logged in on the machine |
|
|
34
54
|
|
|
35
55
|
## Tools
|
|
36
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amaster.ai/pi-teamwork",
|
|
3
|
-
"version": "0.1.2-beta.
|
|
3
|
+
"version": "0.1.2-beta.13",
|
|
4
4
|
"description": "Pi extension for team collaboration and issue management via Multica",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"directory": "packages/pi-teamwork"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@amaster.ai/pi-shared": "0.1.2-beta.
|
|
46
|
+
"@amaster.ai/pi-shared": "0.1.2-beta.13"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@earendil-works/pi-coding-agent": ">=0.74.0",
|