entroly 1.0.42 → 1.0.44
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 -5
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# entroly
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Node/WASM package for Entroly, the local context OS for AI coding agents.
|
|
4
4
|
|
|
5
5
|
This package installs the current Node/WebAssembly Entroly runtime by depending
|
|
6
6
|
on [`entroly-wasm`](https://www.npmjs.com/package/entroly-wasm), then exposes a
|
|
@@ -18,18 +18,45 @@ Equivalent direct package:
|
|
|
18
18
|
npm install -g entroly-wasm
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
For the fullest CLI/SDK/proxy path, use the Python package:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install -U entroly
|
|
25
|
+
entroly verify-claims
|
|
26
|
+
entroly simulate
|
|
27
|
+
```
|
|
28
|
+
|
|
21
29
|
## Usage
|
|
22
30
|
|
|
23
31
|
```bash
|
|
32
|
+
entroly demo
|
|
33
|
+
entroly status
|
|
24
34
|
entroly serve
|
|
25
35
|
entroly optimize 8000 "fix the auth bug"
|
|
26
36
|
entroly health
|
|
27
|
-
entroly demo
|
|
28
37
|
```
|
|
29
38
|
|
|
30
|
-
|
|
39
|
+
## MCP setup
|
|
40
|
+
|
|
41
|
+
For MCP clients that accept JSON config:
|
|
42
|
+
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"mcpServers": {
|
|
46
|
+
"entroly": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["-y", "entroly-wasm", "serve"]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Claude Code subscription users usually get the smoothest path from the Python
|
|
55
|
+
package:
|
|
31
56
|
|
|
32
57
|
```bash
|
|
33
|
-
pip install entroly
|
|
34
|
-
entroly
|
|
58
|
+
pip install -U entroly
|
|
59
|
+
claude mcp add entroly -- entroly
|
|
35
60
|
```
|
|
61
|
+
|
|
62
|
+
Proxy mode is optional and intended for users who control provider API keys.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entroly",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.44",
|
|
4
|
+
"description": "Node/WASM Entroly runtime: local context optimization, MCP server tools, receipts, recovery, and verification without Python.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"entroly-wasm": "1.0.
|
|
19
|
+
"entroly-wasm": "1.0.44"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"entroly",
|
|
27
27
|
"entroly-wasm",
|
|
28
28
|
"context-optimization",
|
|
29
|
+
"context-receipts",
|
|
30
|
+
"local-context-os",
|
|
29
31
|
"mcp",
|
|
30
32
|
"mcp-server",
|
|
31
33
|
"ai",
|