@phneakngar/cli 0.0.1 → 0.0.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/README.md +5 -2
- package/dist/bin-mcp.js +2991 -0
- package/dist/index.js +5002 -183
- package/dist/session-runner.js +1088 -42
- package/dist/web-brain-mcp.js +2991 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -19,11 +19,14 @@ phneakngar version
|
|
|
19
19
|
npx @phneakngar/cli <command>
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
### From a local pack (pre-publish /
|
|
22
|
+
### From a local pack (pre-publish / operator distribution)
|
|
23
|
+
|
|
24
|
+
The tarball contains the CLI build, but npm still resolves its runtime dependencies from the configured registry unless they are already cached. It is not a fully offline bundle.
|
|
23
25
|
|
|
24
26
|
```bash
|
|
25
27
|
# built by an operator from the monorepo
|
|
26
|
-
npm install --global ./phneakngar-cli-
|
|
28
|
+
npm install --global ./phneakngar-cli-X.Y.Z.tgz
|
|
29
|
+
phneakngar version
|
|
27
30
|
```
|
|
28
31
|
|
|
29
32
|
## Quick Start
|