pi-codex-marketplace 0.1.4 → 0.1.5
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 +13 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,20 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
Bridge Package for Codex Marketplace compatibility in Pi (`Pi 0.84.2`).
|
|
4
4
|
|
|
5
|
-
> **One-line:** `pi install pi-codex-marketplace` → `/codex-marketplace` shows Global / Project partitioned Bridge State and lifecycle controls with Validation Disclosure, dual Confirmation, and three-orthogonal Receipt reporting.
|
|
5
|
+
> **One-line:** `pi install npm:pi-codex-marketplace` → `/codex-marketplace` shows Global / Project partitioned Bridge State and lifecycle controls with Validation Disclosure, dual Confirmation, and three-orthogonal Receipt reporting.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
pi install pi-codex-marketplace
|
|
11
|
-
pi install
|
|
12
|
-
pi install
|
|
13
|
-
pi
|
|
14
|
-
pi
|
|
15
|
-
pi -
|
|
10
|
+
pi install npm:pi-codex-marketplace # Global Scope (writes to ~/.pi/agent/settings.json)
|
|
11
|
+
pi install npm:pi-codex-marketplace -l # Project Scope (.pi/settings.json)
|
|
12
|
+
pi install ./path/to/pi-codex-marketplace # Local path (try without publishing)
|
|
13
|
+
pi install ./path/to/pi-codex-marketplace -l # Local path, Project Scope
|
|
14
|
+
pi -e npm:pi-codex-marketplace # Ephemeral try without installing (temporary)
|
|
15
|
+
pi update npm:pi-codex-marketplace # Update one package
|
|
16
|
+
pi update --all # Update pi + all packages
|
|
17
|
+
pi remove npm:pi-codex-marketplace # Remove package
|
|
18
|
+
pi list # List installed packages
|
|
19
|
+
pi config # Enable/disable resources (Tab switches scope)
|
|
16
20
|
```
|
|
17
21
|
|
|
18
|
-
|
|
22
|
+
Source types follow `docs/packages.md`: `npm:` for registry, `git:`/`https://` for git, and absolute/relative paths for local. Ephemeral runs use `pi -e <source>` (not `pi install -e`). This package declares a single `pi` extension entry (`extensions/pi/index.ts`) loaded via `jiti` and requires no build step.
|
|
19
23
|
|
|
20
24
|
Requirements: **Pi 0.84.2**, **Node >=22.19.0**, **macOS / Linux** (Windows not supported).
|
|
21
25
|
|
|
@@ -78,7 +82,7 @@ Project Scope mutations and Effective-State participation require Pi's `Project
|
|
|
78
82
|
| OS | **macOS**, **Linux** | Windows not supported (path containment, symlink, `flock` semantics are POSIX-only) |
|
|
79
83
|
| Node | **>=22.19.0** | `engines.node` enforced; `npm-shrinkwrap.json` pins Pi 0.84.2 host |
|
|
80
84
|
| Pi host | **0.84.2** | `peerDependencies` exact `0.84.2`; expected compatible range `^0.84.2` (devDeps). `pi-ai`/`pi-tui` peers `*` per Pi extension docs. |
|
|
81
|
-
| Semantics | `pi install` / `pi
|
|
85
|
+
| Semantics | `pi install` / `pi -e` / `pi install -l` / `pi update` / `pi remove` / `pi list` / `pi config` | Single `pi` extension package; `files` ships `extensions/`, `src/`, `README.md`, `LICENSE` only |
|
|
82
86
|
|
|
83
87
|
Peer declaration (dual): **精確 `0.84.2`** in `peerDependencies` (exact host that this version was validated against) + **預期 `^0.84.2`** in `devDependencies` (range expected to remain compatible). `pi-ai` and `pi-tui` remain `*` because they are bundled by Pi.
|
|
84
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-codex-marketplace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Bridge Package for Codex Marketplace compatibility in Pi — Global/Project Bridge State, atomic persistence, and /codex-marketplace TUI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|