enigma-memory 0.1.17 → 0.1.18
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 +18 -12
- package/apps/cli/bin/enigma.mjs +3341 -3263
- package/deploy/SIMULATION.md +14 -9
- package/deploy/docker-compose.local-production-simulation.yml +18 -12
- package/docs/benchmark-attestation-network.md +487 -487
- package/docs/benchmark-reproducibility.md +289 -289
- package/docs/blockchain-only-mechanisms.md +400 -400
- package/docs/client-connectors.md +1 -1
- package/docs/demo-proof-network.md +275 -275
- package/docs/developer-proof-quickstart.md +325 -325
- package/docs/enigma-memory-ready-conformance.md +376 -376
- package/docs/install-anywhere.md +3 -2
- package/docs/memory-benchmarks.md +1 -1
- package/docs/memory-drive-health-model.md +690 -690
- package/docs/proof-network-build-notes.md +240 -240
- package/docs/proof-network.md +339 -339
- package/docs/sdk-api.md +324 -324
- package/docs/solana-proof-rail.md +453 -453
- package/package.json +279 -278
- package/packages/core/src/index.js +1 -1
- package/packages/mcp-server/src/index.js +1185 -1185
- package/packages/passport/src/index.js +10 -6
- package/packages/vault/src/index.js +187 -25
- package/scripts/build-hosted-api-key-lifecycle.mjs +274 -274
- package/scripts/build-hosted-customer-lifecycle.mjs +476 -476
- package/scripts/build-installer-assets.mjs +389 -389
- package/scripts/build-production-unblocker.mjs +1 -1
- package/scripts/build-proof-network-packet.mjs +213 -213
- package/scripts/check.mjs +8 -1
- package/scripts/release-audit.mjs +9 -6
- package/scripts/release-provenance.mjs +6 -2
- package/scripts/run-standard-memory-benchmarks.mjs +1354 -1352
- package/scripts/scan-secrets.mjs +177 -0
- package/scripts/simulate-production-env.mjs +64 -8
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Enigma Memory is a local-first AI Memory Passport. It gives you one canonical lo
|
|
|
4
4
|
|
|
5
5
|
Start with the Memory Drive loop below — one install, one connect, then health and status verification. You do not need to understand relay, gateway, mesh, browser, desktop, hosted infrastructure, or the proof network before trying Enigma locally.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Hosted cloud and BYOC operation are waitlist/operator-deploy only; they require real deployment credentials, domains, TLS, durable storage, KMS/secrets, monitoring, backups, and operator acceptance. The relay and gateway binaries included in the package are local bootstrap probes, not a live hosted service.
|
|
8
8
|
|
|
9
9
|
Enigma does not claim that a closed provider deleted internal data, that model weights forgot, or that provider-native memory disappeared. It proves facts about Enigma-controlled vault state, receipts, checkpoints, and declared boundary operations.
|
|
10
10
|
|
|
@@ -20,21 +20,27 @@ Use Enigma as your private Memory Drive for AI: install once, connect the AI cli
|
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
22
|
npm install -g enigma-memory
|
|
23
|
-
enigma
|
|
24
|
-
|
|
25
|
-
enigma
|
|
26
|
-
enigma
|
|
27
|
-
enigma
|
|
28
|
-
enigma
|
|
29
|
-
enigma context --query "project context" --optimize
|
|
30
|
-
enigma verify --export ./.enigma/export.json
|
|
23
|
+
enigma setup --bundle "$HOME/.enigma/bundle.json" --client auto --connect-installed --overwrite
|
|
24
|
+
echo "Keep all Q3 planning notes in the project-context tag." > memory.txt
|
|
25
|
+
enigma remember --bundle "$HOME/.enigma/bundle.json" --text-file memory.txt
|
|
26
|
+
enigma search --bundle "$HOME/.enigma/bundle.json" --query "Q3 planning"
|
|
27
|
+
enigma context --bundle "$HOME/.enigma/bundle.json" --query "Q3 planning" --out "$HOME/.enigma/context-pack.json"
|
|
28
|
+
enigma verify --export "$HOME/.enigma/export.json"
|
|
31
29
|
```
|
|
32
30
|
|
|
33
|
-
|
|
31
|
+
Windows CMD:
|
|
34
32
|
|
|
35
|
-
|
|
33
|
+
```cmd
|
|
34
|
+
npm install -g enigma-memory
|
|
35
|
+
enigma setup --bundle "%USERPROFILE%\.enigma\bundle.json" --client auto --connect-installed --overwrite
|
|
36
|
+
echo Keep all Q3 planning notes in the project-context tag.> memory.txt
|
|
37
|
+
enigma remember --bundle "%USERPROFILE%\.enigma\bundle.json" --text-file memory.txt
|
|
38
|
+
enigma search --bundle "%USERPROFILE%\.enigma\bundle.json" --query "Q3 planning"
|
|
39
|
+
enigma context --bundle "%USERPROFILE%\.enigma\bundle.json" --query "Q3 planning" --out "%USERPROFILE%\.enigma\context-pack.json"
|
|
40
|
+
enigma verify --export "%USERPROFILE%\.enigma\export.json"
|
|
41
|
+
```
|
|
36
42
|
|
|
37
|
-
`enigma
|
|
43
|
+
`enigma setup` is the credential-free first run: it creates the local `.enigma` workspace, bundle, proof artifacts, and a demo memory, then connects every installed/config-present client it detects (Claude Desktop, Cursor, Kimi Code, VS Code/Cline, Roo, OpenCode, generic MCP). It skips clients that are not installed and never creates configs from scratch; preview with `--dry-run` first if you want to see which clients will be written. If no clients are installed, setup still succeeds and the local CLI path works; use the copy-paste MCP snippets below to connect a client later, or run `enigma connect generic-mcp --dry-run` to preview a standalone snippet. The same commands run on Windows PowerShell via the `enigma.cmd` shim the npm global install adds. Neither command prints raw memory plaintext.
|
|
38
44
|
|
|
39
45
|
## Enigma Proof Network
|
|
40
46
|
|