@kata-sh/pi-symphony-extension 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.
- package/README.md +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
Pi extension for initializing, launching, attaching to, and monitoring Kata Symphony.
|
|
4
4
|
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Pi coding agent with extension package support.
|
|
8
|
+
- `symphony >= 2.3.0` available through one of the binary resolution paths below.
|
|
9
|
+
|
|
10
|
+
The extension resolves the Symphony binary in this order:
|
|
11
|
+
|
|
12
|
+
1. `SYMPHONY_BIN`
|
|
13
|
+
2. repo-local `apps/symphony/target/release/symphony`
|
|
14
|
+
3. `symphony` on `PATH`
|
|
15
|
+
4. previously saved absolute path
|
|
16
|
+
5. prompted absolute path
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
# Latest npm release
|
|
22
|
+
pi install npm:@kata-sh/pi-symphony-extension
|
|
23
|
+
|
|
24
|
+
# Pinned npm release
|
|
25
|
+
pi install npm:@kata-sh/pi-symphony-extension@0.1.2
|
|
26
|
+
|
|
27
|
+
# Latest monorepo git package
|
|
28
|
+
pi install git:github.com/gannonh/kata
|
|
29
|
+
|
|
30
|
+
# Pinned monorepo git package
|
|
31
|
+
pi install git:github.com/gannonh/kata@pi-symphony-v0.1.2
|
|
32
|
+
```
|
|
33
|
+
|
|
5
34
|
## Local development
|
|
6
35
|
|
|
7
36
|
```sh
|