@phantom-pm/os-agent 3.2.2 → 4.0.4
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 +32 -0
- package/package.json +14 -1
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @phantom-pm/os-agent
|
|
2
|
+
|
|
3
|
+
Local OS edge node for Phantom runtime bridging and workstation-level coordination.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @phantom-pm/os-agent
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Minimal Usage
|
|
12
|
+
|
|
13
|
+
This package is primarily composed into the Phantom runtime. The stable end-to-end entrypoint is the CLI:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g @phantom-pm/cli
|
|
17
|
+
phantom status --json
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Status
|
|
21
|
+
|
|
22
|
+
Published for advanced integrators and monorepo consumers. The CLI is the stable interface; lower-level OS bridge APIs may evolve as the local edge runtime expands.
|
|
23
|
+
|
|
24
|
+
## Links
|
|
25
|
+
|
|
26
|
+
- Docs: https://sir-ad.github.io/Phantom/
|
|
27
|
+
- Source: https://github.com/sir-ad/Phantom/tree/main/packages/os-agent
|
|
28
|
+
- Issues: https://github.com/sir-ad/Phantom/issues
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phantom-pm/os-agent",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "Phantom Local OS Edge Node",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,11 +9,24 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"main": "node dist/index.js"
|
|
11
11
|
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
12
15
|
"dependencies": {
|
|
13
16
|
"ws": "^8.16.0"
|
|
14
17
|
},
|
|
15
18
|
"devDependencies": {
|
|
16
19
|
"@types/ws": "^8.5.10",
|
|
17
20
|
"typescript": "^5.4.2"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/sir-ad/Phantom.git",
|
|
26
|
+
"directory": "packages/os-agent"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://sir-ad.github.io/Phantom/",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/sir-ad/Phantom/issues"
|
|
18
31
|
}
|
|
19
32
|
}
|