@gaosh3n/pi-package-manager 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 +11 -0
- package/index.ts +76 -655
- package/internal/controller.ts +298 -0
- package/internal/model.ts +45 -0
- package/internal/records.ts +81 -0
- package/internal/reports.ts +396 -0
- package/internal/runtime.ts +69 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
- a visible progress UI while Pi checks or updates packages
|
|
9
9
|
- `/package-manager status` to see whether updates are available
|
|
10
10
|
- `/package-manager update` to run the update flow on demand
|
|
11
|
+
- `/package-manager install` to install a Pi package from an entered source
|
|
11
12
|
- a final result card in Pi so you can review the latest outcome
|
|
12
13
|
- automatic Pi reload after a successful startup update
|
|
13
14
|
|
|
@@ -44,3 +45,13 @@ Run:
|
|
|
44
45
|
```
|
|
45
46
|
|
|
46
47
|
Pi will run the update flow for you, show live progress, and record the final result in the transcript.
|
|
48
|
+
|
|
49
|
+
### Install a package
|
|
50
|
+
|
|
51
|
+
Run:
|
|
52
|
+
|
|
53
|
+
```text
|
|
54
|
+
/package-manager install
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Pi will prompt you for a package source such as `npm:@foo/bar` or `git:github.com/user/repo`, run the native `pi install ...` flow, and show a final result card. After a successful install, run `/reload` to activate the installed package resources.
|