enigma-memory 0.1.18 → 0.1.22
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 +76 -24
- package/apps/cli/bin/enigma-desktop.mjs +140 -0
- package/apps/cli/bin/enigma-terminal.mjs +78 -0
- package/apps/cli/bin/enigma.mjs +1923 -285
- package/apps/desktop/electron-main.cjs +217 -0
- package/apps/desktop/package.json +12 -0
- package/apps/desktop/src/app.js +264 -7
- package/apps/desktop/src/index.html +3514 -1373
- package/apps/desktop/src/launch-electron.mjs +51 -0
- package/apps/desktop/src/server.mjs +2914 -0
- package/apps/desktop/src/styles.css +2972 -260
- package/apps/desktop/src/zk-browser-prove.mjs +53 -0
- package/apps/desktop/src/zk-state.mjs +1789 -0
- package/apps/gateway/bin/enigma-gateway.mjs +102 -5
- package/apps/gateway/src/server.mjs +271 -8
- package/apps/ios/EnigmaCore/Package.swift +12 -0
- package/apps/ios/EnigmaCore/Sources/EnigmaCore/EnigmaAPIClient.swift +227 -0
- package/apps/ios/EnigmaCore/Sources/EnigmaCore/Models.swift +278 -0
- package/apps/ios/EnigmaCore/Sources/EnigmaCore/PKCE.swift +96 -0
- package/apps/ios/EnigmaCore/Sources/EnigmaCore/PrivacyMinimizer.swift +187 -0
- package/apps/ios/EnigmaCore/Sources/EnigmaCore/ToolModels.swift +129 -0
- package/apps/ios/EnigmaCore/Tests/EnigmaCoreTests/EnigmaCoreTests.swift +42 -0
- package/apps/ios/EnigmaIOS/Enigma/AppModel.swift +346 -0
- package/apps/ios/EnigmaIOS/Enigma/Assets.xcassets/AccentColor.colorset/Contents.json +12 -0
- package/apps/ios/EnigmaIOS/Enigma/Assets.xcassets/AppIcon.appiconset/Contents.json +11 -0
- package/apps/ios/EnigmaIOS/Enigma/Assets.xcassets/AppIcon.appiconset/EnigmaAppIcon.png +0 -0
- package/apps/ios/EnigmaIOS/Enigma/Assets.xcassets/Contents.json +3 -0
- package/apps/ios/EnigmaIOS/Enigma/Assets.xcassets/LaunchBackground.colorset/Contents.json +12 -0
- package/apps/ios/EnigmaIOS/Enigma/ChatView.swift +181 -0
- package/apps/ios/EnigmaIOS/Enigma/CouncilView.swift +78 -0
- package/apps/ios/EnigmaIOS/Enigma/CreateView.swift +152 -0
- package/apps/ios/EnigmaIOS/Enigma/EnigmaApp.swift +52 -0
- package/apps/ios/EnigmaIOS/Enigma/Info.plist +52 -0
- package/apps/ios/EnigmaIOS/Enigma/NaturalLanguagePrivacyTagger.swift +26 -0
- package/apps/ios/EnigmaIOS/Enigma/OAuthClient.swift +321 -0
- package/apps/ios/EnigmaIOS/Enigma/OnboardingView.swift +105 -0
- package/apps/ios/EnigmaIOS/Enigma/PrivateVaultView.swift +275 -0
- package/apps/ios/EnigmaIOS/Enigma/SecureStore.swift +76 -0
- package/apps/ios/EnigmaIOS/Enigma/SettingsView.swift +60 -0
- package/apps/ios/EnigmaIOS/Enigma/Theme.swift +80 -0
- package/apps/ios/EnigmaIOS/EnigmaIOS.xcodeproj/project.pbxproj +211 -0
- package/apps/ios/EnigmaIOS/EnigmaIOS.xcodeproj/xcshareddata/xcschemes/Enigma.xcscheme +23 -0
- package/apps/native-host/README.md +19 -8
- package/apps/native-host/bin/enigma-native-host.mjs +229 -13
- package/apps/relay/bin/enigma-relay.mjs +103 -5
- package/apps/relay/src/federation-runtime.mjs +618 -0
- package/apps/relay/src/server.mjs +310 -9
- package/apps/verifier/bin/enigma-verify.mjs +327 -11
- package/cortex-v3/circuits/build/intent_vk_bytes.json +35 -0
- package/cortex-v3/circuits/build/sale_vk_bytes.json +35 -0
- package/cortex-v3/circuits/build/vk_bytes.json +32 -0
- package/cortex-v3/proving-assets.json +64 -0
- package/cortex-v3/zk/BUILD-CONTRACT.md +87 -0
- package/cortex-v3/zk/action-transition-vk.json +119 -0
- package/cortex-v3/zk/alias-adversarial.test.mjs +220 -0
- package/cortex-v3/zk/groth16-verify-child.mjs +17 -0
- package/cortex-v3/zk/intent-witness.mjs +365 -0
- package/cortex-v3/zk/intent-witness.test.mjs +485 -0
- package/cortex-v3/zk/proving-assets.mjs +203 -0
- package/cortex-v3/zk/sale-witness.mjs +783 -0
- package/cortex-v3/zk/sale-witness.test.mjs +784 -0
- package/cortex-v3/zk/sealed-sale-release-vk.json +119 -0
- package/cortex-v3/zk/settlement-evidence.mjs +722 -0
- package/cortex-v3/zk/setup-intent.mjs +688 -0
- package/cortex-v3/zk/setup-sale.mjs +666 -0
- package/cortex-v3/zk/setup.mjs +594 -0
- package/cortex-v3/zk/witness.mjs +184 -0
- package/cortex-v3/zk/zk-codec.mjs +232 -0
- package/cortex-v3/zk/zk-codec.test.mjs +293 -0
- package/cortex-v3/zk/zk-settle.mjs +370 -0
- package/cortex-v3/zk/zk-tree.mjs +256 -0
- package/cortex-v3/zk/zk-tree.test.mjs +419 -0
- package/deploy/docker-compose.local-production-simulation.yml +36 -0
- package/docs/browser-extension-install.md +8 -6
- package/docs/client-connectors.md +15 -11
- package/docs/developer-ecosystem.md +15 -13
- package/docs/enigma-memory-ready-conformance.md +11 -9
- package/docs/install-anywhere.md +61 -28
- package/docs/installers-and-desktop.md +8 -7
- package/docs/novelty-invention-candidates.md +161 -161
- package/docs/proof-network-claim-boundaries.md +320 -318
- package/examples/01-quickstart-agent/index.mjs +49 -0
- package/examples/01_agent_memory_quickstart.mjs +57 -0
- package/examples/02-multi-agent-swarm/index.mjs +57 -0
- package/examples/02_cross_model_passport.mjs +64 -0
- package/examples/03-langchain-memory/index.mjs +41 -0
- package/examples/03_poseidon_commitment_verification.mjs +71 -0
- package/examples/04-python-trading-agent/trader.py +49 -0
- package/examples/README.md +27 -0
- package/examples/ci/github-actions.yml +7 -2
- package/package.json +142 -11
- package/packages/adapters/PACKAGE_CONTRACT.md +1 -1
- package/packages/connectors/src/index.js +196 -4
- package/packages/connectors/swarm-router.mjs +168 -0
- package/packages/core/src/index.js +248 -1
- package/packages/core/src/version.mjs +7 -0
- package/packages/dev-tools/package.json +19 -0
- package/packages/dev-tools/src/index.js +4 -0
- package/packages/dev-tools/src/memory-benchmark-suite.js +112 -0
- package/packages/dev-tools/src/swarm-simulator.js +101 -0
- package/packages/dev-tools/src/vault-inspector.js +114 -0
- package/packages/dev-tools/src/vector-benchmark.js +100 -0
- package/packages/developer-platform/src/access-credentials.js +341 -0
- package/packages/developer-platform/src/http.js +132 -0
- package/packages/developer-platform/src/index.js +4 -0
- package/packages/developer-platform/src/usage-http.js +60 -0
- package/packages/developer-platform/src/usage.js +295 -0
- package/packages/enclave-runtime/attestation.mjs +159 -0
- package/packages/enclave-runtime/index.mjs +47 -0
- package/packages/enclave-runtime/session-manager.mjs +253 -0
- package/packages/enclave-runtime/zeroization-proof.mjs +227 -0
- package/packages/enigma-reflex/package.json +14 -0
- package/packages/enigma-reflex/src/index.js +204 -0
- package/packages/enigma-reflex/training/generate-dataset.mjs +40 -0
- package/packages/enigma-reflex/training/requirements.txt +8 -0
- package/packages/enigma-reflex/training/train.py +314 -0
- package/packages/enigma-weave/LICENSE +22 -0
- package/packages/enigma-weave/UPSTREAM.json +21 -0
- package/packages/enigma-weave/package.json +14 -0
- package/packages/enigma-weave/src/index.js +286 -0
- package/packages/hosted-cloud/src/index.js +80 -5
- package/packages/importers/src/index.js +432 -0
- package/packages/inference-runtime/src/browser.js +401 -0
- package/packages/inference-runtime/src/chat.js +265 -0
- package/packages/inference-runtime/src/code.js +407 -0
- package/packages/inference-runtime/src/contracts.js +162 -0
- package/packages/inference-runtime/src/http.js +232 -0
- package/packages/inference-runtime/src/image.js +186 -0
- package/packages/inference-runtime/src/index.js +10 -0
- package/packages/inference-runtime/src/model-router.js +320 -0
- package/packages/inference-runtime/src/platform.js +125 -0
- package/packages/inference-runtime/src/privacy.js +400 -0
- package/packages/inference-runtime/src/video.js +253 -0
- package/packages/mcp-server/README.md +22 -6
- package/packages/mcp-server/bin/enigma-mcp.mjs +2 -1
- package/packages/mcp-server/src/index.js +1418 -105
- package/packages/mcp-server/src/oauth.js +561 -0
- package/packages/mcp-server/src/private-handoff.js +84 -0
- package/packages/mcp-server/src/remote-http.js +273 -0
- package/packages/mcp-server/src/remote-policy.js +72 -0
- package/packages/mcp-server/swarm-bridge.mjs +361 -0
- package/packages/mesh/index.d.ts +283 -0
- package/packages/mesh/package.json +23 -0
- package/packages/mesh/src/crypto.js +189 -0
- package/packages/mesh/src/federation-packets.js +353 -0
- package/packages/mesh/src/gossip.js +311 -0
- package/packages/mesh/src/index.js +6 -0
- package/packages/mesh/src/protocol.js +255 -0
- package/packages/mesh/src/router.js +279 -0
- package/packages/mesh/src/transport.js +306 -0
- package/packages/passport/src/index.js +426 -1
- package/packages/private-economy/src/credits-http.js +100 -0
- package/packages/private-economy/src/credits.js +447 -0
- package/packages/private-economy/src/index.js +5 -0
- package/packages/private-economy/src/payments-http.js +120 -0
- package/packages/private-economy/src/payments.js +509 -0
- package/packages/private-economy/src/x402.js +346 -0
- package/packages/proof-network/PACKAGE_CONTRACT.md +21 -0
- package/packages/rag/index.d.ts +182 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/THIRD_PARTY_LICENSES.txt +207 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/config.json +25 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/onnx/model_quantized.onnx +0 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/sha256-manifest.json +28 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/tokenizer.json +30686 -0
- package/packages/rag/models/Xenova/all-MiniLM-L6-v2/tokenizer_config.json +15 -0
- package/packages/rag/package.json +27 -0
- package/packages/rag/src/blinded-search.js +109 -0
- package/packages/rag/src/bm25.js +169 -0
- package/packages/rag/src/embeddings.js +459 -0
- package/packages/rag/src/hybrid.js +76 -0
- package/packages/rag/src/index.js +38 -0
- package/packages/rag/src/reranker.js +61 -0
- package/packages/rag/src/research.js +107 -0
- package/packages/rag/src/vector-store.js +430 -0
- package/packages/rag/src/verify-model-artifacts.mjs +4 -0
- package/packages/sdk/index.d.ts +760 -0
- package/packages/sdk/package.json +33 -0
- package/packages/sdk/python/README.md +24 -0
- package/packages/sdk/python/enigma_sdk.py +250 -0
- package/packages/sdk/python/pyproject.toml +34 -0
- package/packages/sdk/python/requirements.txt +1 -0
- package/packages/sdk/python/setup.py +20 -0
- package/packages/sdk/src/federation/capability-grant.js +389 -0
- package/packages/sdk/src/federation/federation-router.js +360 -0
- package/packages/sdk/src/federation/ghostmesh-bridge.js +497 -0
- package/packages/sdk/src/federation/index.js +3 -0
- package/packages/sdk/src/index.js +1796 -0
- package/packages/sdk/src/intelligence/contradiction.js +337 -0
- package/packages/sdk/src/intelligence/decision-engine.js +155 -0
- package/packages/sdk/src/intelligence/index.js +4 -0
- package/packages/sdk/src/intelligence/ontology.js +122 -0
- package/packages/sdk/src/intelligence/temporal.js +123 -0
- package/packages/sdk/src/market-client.js +142 -0
- package/packages/sdk/src/mesh-client.js +110 -0
- package/packages/sdk/src/middleware/index.js +3 -0
- package/packages/sdk/src/middleware/langchain.js +159 -0
- package/packages/sdk/src/middleware/llamaindex.js +101 -0
- package/packages/sdk/src/middleware/vercel-ai.js +112 -0
- package/packages/sdk/src/rag-client.js +85 -0
- package/packages/sdk/src/swarm-orchestrator.js +260 -0
- package/packages/settlement/PACKAGE_CONTRACT.md +1 -1
- package/packages/snapcompact/THIRD_PARTY_LICENSES.txt +40 -0
- package/packages/snapcompact/assets/8x13-latin1.bdf +3837 -0
- package/packages/snapcompact/index.d.ts +284 -0
- package/packages/snapcompact/package.json +25 -0
- package/packages/snapcompact/src/index.js +716 -0
- package/packages/storage/PACKAGE_CONTRACT.md +1 -1
- package/packages/terminal-console/animations.mjs +240 -0
- package/packages/terminal-console/auto-anchor.mjs +220 -0
- package/packages/terminal-console/banner.mjs +91 -0
- package/packages/terminal-console/commands.mjs +459 -0
- package/packages/terminal-console/delegation.mjs +152 -0
- package/packages/terminal-console/index.mjs +5 -0
- package/packages/terminal-console/outbox.mjs +143 -0
- package/packages/terminal-console/phantom-bridge.mjs +637 -0
- package/packages/terminal-console/repl.mjs +136 -0
- package/packages/terminal-console/signer-store.mjs +130 -0
- package/packages/terminal-console/solana-rpc.mjs +214 -0
- package/packages/terminal-console/solana-transport.mjs +189 -0
- package/packages/terminal-tui/dashboard.mjs +214 -0
- package/packages/terminal-tui/index.mjs +28 -0
- package/packages/terminal-tui/merkle-tree-renderer.mjs +268 -0
- package/packages/terminal-tui/telemetry-hud.mjs +137 -0
- package/packages/vault/index.d.ts +449 -0
- package/packages/vault/package.json +27 -0
- package/packages/vault/src/e2ee.mjs +393 -0
- package/packages/vault/src/enclave.js +481 -0
- package/packages/vault/src/erasure.js +207 -0
- package/packages/vault/src/index.js +1018 -155
- package/packages/vault/src/persistence.js +307 -0
- package/packages/vault/src/poseidon.js +354 -0
- package/packages/vault/src/receipt.js +459 -0
- package/scripts/benchmark-optical-context.mjs +166 -0
- package/scripts/bootstrap-enigma.mjs +502 -0
- package/scripts/build-edge-backend-workers.mjs +20 -5
- package/scripts/build-goal-completion-audit.mjs +72 -25
- package/scripts/build-hosted-api-key-lifecycle.mjs +26 -8
- package/scripts/build-hosted-customer-lifecycle.mjs +20 -3
- package/scripts/build-hosted-probe-worker.mjs +19 -4
- package/scripts/build-installer-assets.mjs +41 -21
- package/scripts/build-operator-evidence-starter.mjs +59 -1
- package/scripts/build-production-backend-env-kit.mjs +2 -0
- package/scripts/build-production-unblocker.mjs +3 -0
- package/scripts/check.mjs +17 -3
- package/scripts/collect-hosted-backend-live-evidence.mjs +49 -12
- package/scripts/install-enigma-local.mjs +18 -5
- package/scripts/release-audit.mjs +65 -109
- package/scripts/release-provenance.mjs +6 -0
- package/scripts/run-backend-readiness-smoke.mjs +112 -10
- package/scripts/scan-secrets.mjs +1 -0
- package/scripts/simulate-production-env.mjs +7 -2
- package/scripts/validate-hosted-backend-live.mjs +112 -1
- package/specs/antibody-pack-v1.schema.json +95 -0
- package/specs/antigen-envelope-v1.schema.json +81 -0
- package/specs/boundary-manifest-v1.schema.json +35 -35
- package/specs/capsule-v1.schema.json +55 -55
- package/specs/claim-boundary-manifest-v1.schema.json +22 -22
- package/specs/claim-ledger-v1.schema.json +291 -0
- package/specs/context-passport-v1.schema.json +59 -0
- package/specs/deletion-tombstone-v1.schema.json +26 -26
- package/specs/evidence-packet-v1.schema.json +177 -0
- package/specs/hosted-backend-live-evidence-v1.schema.json +72 -3
- package/specs/immune-scan-report-v1.schema.json +112 -0
- package/specs/lifecycle-receipt-log-v1.schema.json +67 -0
- package/specs/memory-atom-v1.schema.json +59 -0
- package/specs/memory-event-v1.schema.json +42 -42
- package/specs/passport-v1.schema.json +50 -50
- package/specs/proof-of-non-use-v1.schema.json +65 -0
- package/specs/quarantine-record-v1.schema.json +126 -0
- package/specs/receipt-v1.schema.json +61 -61
- package/specs/state-checkpoint-v1.schema.json +37 -37
- package/specs/trust-bundle-v1.schema.json +56 -56
- package/specs/trust-card-v1.schema.json +119 -0
- package/docs/proof-network-launch-plan.md +0 -421
- package/packages/metering/PACKAGE_CONTRACT.md +0 -20
- package/scripts/build-ai-orchestration-plan.mjs +0 -248
|
@@ -1,161 +1,161 @@
|
|
|
1
|
-
# Novelty invention candidates
|
|
2
|
-
|
|
3
|
-
This is a claim-bounded technical ideation memo for Enigma's proof-network roadmap. It is technical product ideation only. Each "novelty" item is a product and systems hypothesis to prototype and review against known engineering approaches before any stronger public claim is made.
|
|
4
|
-
|
|
5
|
-
Public artifacts referenced here must remain plaintext-minimized: hashes, roots, refs, counts, signatures, schema names, timestamps, and policy identifiers are acceptable; raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, private keys, seed phrases, API keys, and provider responses are not.
|
|
6
|
-
|
|
7
|
-
## Evaluation lens
|
|
8
|
-
|
|
9
|
-
Each candidate is useful only if it can be implemented as local, deterministic proof-network behavior:
|
|
10
|
-
|
|
11
|
-
- **Proof boundary:** evidence covers declared Enigma-mediated events, not external provider internals.
|
|
12
|
-
- **Privacy boundary:** public packets carry commitments and refs, not private memory or customer-identifying data.
|
|
13
|
-
- **Experiment boundary:** first experiments should be repository-local fixtures and validators, not Solana submissions or external-service calls.
|
|
14
|
-
- **Claim boundary:** language should say what the artifact verifies and what it does not verify.
|
|
15
|
-
|
|
16
|
-
## 1. Dual-root memory passport
|
|
17
|
-
|
|
18
|
-
**Candidate disclosure.** A Memory Passport carries two independently computed public roots for the same private memory corpus: a custody/lifecycle root over committed memory addresses and event receipts, and a semantic-use root over scoped capability, relevance, and purpose classifications. The passport verifier accepts the passport only when both roots bind to the same epoch, issuer, memory-count summary, and policy-ref set, without exposing memory bodies or embeddings.
|
|
19
|
-
|
|
20
|
-
**Technical mechanism.** The passport packet stores `custody_root`, `semantic_root`, `epoch_ref`, `previous_epoch_root`, `memory_count`, `policy_refs`, `issuer_key_ref`, and `signature`. A verifier checks that both roots are signed for the same epoch and that downstream context packs cite the same epoch refs.
|
|
21
|
-
|
|
22
|
-
**Novelty hypothesis.** Existing portable-memory exports usually focus on either content portability or audit logs. The dual-root model makes custody proof and semantic-use proof separable but cross-bound, so a verifier can check that a context pack was derived from the right controlled corpus and the right purpose boundary without learning the corpus.
|
|
23
|
-
|
|
24
|
-
**Prior-art risk.** Content-addressed archives, Merkle audit logs, verifiable credentials, capability systems, and RAG index manifests may already cover pieces of this structure. The risk is highest if prior systems already bind a semantic access graph to a portable user-memory corpus using independent commitments.
|
|
25
|
-
|
|
26
|
-
**Claim boundary.** The passport can claim root consistency for an Enigma-controlled corpus epoch. It cannot claim that third-party providers, exported files, screenshots, backups, or model state match the passport.
|
|
27
|
-
|
|
28
|
-
**First experiment.** Add a local fixture that creates a passport with custody and semantic roots, then prove that changing either root, epoch, count, policy ref, or signature fails verification while public output still contains no memory plaintext.
|
|
29
|
-
|
|
30
|
-
## 2. Boundary receipt handshake
|
|
31
|
-
|
|
32
|
-
**Candidate disclosure.** Before memory crosses an Enigma boundary into a model, agent, connector, or gateway, both sides perform a local handshake: requester nonce, purpose ref, policy hash, memory-root ref, allowed-output class, and receiver capability ref are committed into a pre-receipt; the final boundary receipt then binds the pre-receipt hash to the actual disclosure root and denial/approval result.
|
|
33
|
-
|
|
34
|
-
**Technical mechanism.** The requester signs a pre-receipt commitment. Enigma evaluates policy and emits a final receipt with `pre_receipt_hash`, `decision`, `disclosure_root` or `denial_reason_ref`, `policy_hash`, `capability_ref`, and `raw_memory_disclosed:false` for public artifacts.
|
|
35
|
-
|
|
36
|
-
**Novelty hypothesis.** The handshake turns context sharing into an accountable protocol rather than a best-effort log entry. It creates evidence that the receiver asked for a specific class of memory under a specific purpose before any approved context pack was emitted.
|
|
37
|
-
|
|
38
|
-
**Prior-art risk.** OAuth consent, signed webhooks, transparency logs, API audit trails, and data-processing workflows may overlap. The differentiator to test is the memory-specific pre-receipt/final-receipt pair that binds purpose, capability, and disclosure commitments without storing the disclosed text.
|
|
39
|
-
|
|
40
|
-
**Claim boundary.** The receipt proves an Enigma boundary decision and its public-safe commitments. It does not prove what the receiver did after receiving approved context.
|
|
41
|
-
|
|
42
|
-
**First experiment.** Implement a pure handshake fixture with `request_nonce`, `request_ref`, `purpose_ref`, `policy_hash`, `pre_receipt_hash`, `disclosure_root`, and `decision`, then verify replay resistance by rejecting reused nonces and mismatched final receipts.
|
|
43
|
-
|
|
44
|
-
## 3. Semantic capability grants
|
|
45
|
-
|
|
46
|
-
**Candidate disclosure.** A capability grant authorizes memory use by semantic purpose, sensitivity class, model/tool boundary, time window, and policy hash rather than by broad file, table, or tenant access. The public grant stores only normalized purpose refs, class refs, root refs, expiry, issuer key id, and signature; private policy text remains off artifact.
|
|
47
|
-
|
|
48
|
-
**Technical mechanism.** The grant packet contains `grant_id`, `subject_ref`, `issuer_key_ref`, `scope_root`, `purpose_refs`, `sensitivity_refs`, `boundary_refs`, `not_before`, `expires_at`, `policy_hash`, `revocation_ref`, and `signature`. Context-pack creation must fail closed unless every requested purpose and boundary is covered.
|
|
49
|
-
|
|
50
|
-
**Novelty hypothesis.** Conventional access control answers "who can read this object." Semantic capability grants answer "which committed memory may be transformed into which kind of context for which declared purpose," enabling narrow cross-agent memory delegation.
|
|
51
|
-
|
|
52
|
-
**Prior-art risk.** Macaroons, object capabilities, OAuth scopes, ABAC, Rego policies, verifiable credentials, and enterprise DLP systems may be close. The key review question is whether prior systems express AI-memory context construction as a first-class, proof-carrying capability.
|
|
53
|
-
|
|
54
|
-
**Claim boundary.** A grant can claim scoped authorization under the listed refs and time window. It cannot claim that the subject is a real-world person, that policy text is public, or that external systems enforce the same semantics.
|
|
55
|
-
|
|
56
|
-
**First experiment.** Create a grant validator that permits a context-pack plan only when purpose ref, sensitivity ref, boundary ref, epoch, and root match the grant; then test denial for broader purposes, expired windows, altered policy hashes, and unknown revocation refs.
|
|
57
|
-
|
|
58
|
-
## 4. Verifiable relevance compression
|
|
59
|
-
|
|
60
|
-
**Candidate disclosure.** A context compressor emits a compact proof packet containing input corpus root, query/purpose commitment, selected-address root, omitted-address count, deterministic scorer version, score-threshold ref, and compressed-output hash. The packet proves what was selected and omitted by the local relevance process without publishing the query, memory text, scores, or embeddings.
|
|
61
|
-
|
|
62
|
-
**Technical mechanism.** The compressor uses deterministic local selection over committed addresses. The output packet stores `input_root`, `query_commitment`, `purpose_ref`, `scorer_ref`, `threshold_ref`, `selected_root`, `omitted_count`, `compressed_output_hash`, and `private_scores_omitted:true`.
|
|
63
|
-
|
|
64
|
-
**Novelty hypothesis.** Prompt compression is usually evaluated by output size or answer quality, not by third-party-verifiable selection boundaries. This design makes relevance compression auditable as a privacy-preserving memory boundary event.
|
|
65
|
-
|
|
66
|
-
**Prior-art risk.** Search-result audit logs, reproducible IR benchmarks, zk/commitment schemes, prompt-compression research, and vector-store explainability may overlap. Risk rises if existing products already provide verifiable selected/omitted roots for private AI-memory compression.
|
|
67
|
-
|
|
68
|
-
**Claim boundary.** The packet can claim deterministic selection under a named local scorer and threshold. It cannot claim semantic optimality, universal relevance, provider-side savings, or benchmark leadership.
|
|
69
|
-
|
|
70
|
-
**First experiment.** Run a deterministic local relevance fixture over synthetic committed addresses, emit selected and omitted roots plus counts, and verify that changing the scorer version, threshold ref, selected set, or compressed-output hash invalidates the packet.
|
|
71
|
-
|
|
72
|
-
## 5. Forgetting boundary ledger
|
|
73
|
-
|
|
74
|
-
**Candidate disclosure.** A forgetting boundary ledger records Enigma-controlled tombstone, delete-request, active-serving exclusion, derived-index refresh, and verifier events as ordered commitments. It does not claim provider deletion, backup erasure, model forgetting, or semantic forgetting; it proves only whether Enigma serving paths continue to include committed memory addresses after a boundary event.
|
|
75
|
-
|
|
76
|
-
**Technical mechanism.** Ledger entries link `event_root`, `previous_event_root`, `memory_address_commitment`, `tombstone_ref`, `active_set_root_before`, `active_set_root_after`, `derived_index_refresh_ref`, `verifier_report_hash`, and explicit negative-claim flags such as `provider_deletion_proof:false`.
|
|
77
|
-
|
|
78
|
-
**Novelty hypothesis.** The ledger reframes forgetting as a bounded, verifiable serving-state property rather than an absolute deletion claim. That boundary is practical for enterprise trust because it can be checked offline from public-safe roots and receipts.
|
|
79
|
-
|
|
80
|
-
**Prior-art risk.** Data-deletion logs, append-only audit ledgers, certificate transparency, tombstone systems, and privacy compliance workflows are adjacent. The distinctive angle is AI-memory active-serving exclusion tied to passport roots and derived-index refresh evidence.
|
|
81
|
-
|
|
82
|
-
**Claim boundary.** The ledger can claim Enigma active-serving exclusion for committed addresses after named events. It cannot claim provider deletion, backup erasure, model forgetting, human forgetting, or deletion from exported copies.
|
|
83
|
-
|
|
84
|
-
**First experiment.** Build a fixture with a memory address commitment, tombstone receipt, refreshed active-set root, and verifier report that proves the address is absent from active Enigma serving while preserving explicit false flags for external deletion and model forgetting.
|
|
85
|
-
|
|
86
|
-
## 6. Benchmark attestation
|
|
87
|
-
|
|
88
|
-
**Candidate disclosure.** A benchmark attestation binds a benchmark report hash to dataset refs, runner refs, package refs, metric names, fixture counts, environment class, and claim boundaries. It intentionally omits raw dataset rows, prompts, provider responses, and private memory, enabling public comparison without publishing private benchmark material.
|
|
89
|
-
|
|
90
|
-
**Technical mechanism.** The attestation contains `report_hash`, `dataset_ref`, `runner_ref`, `package_ref`, `metric_refs`, `sample_count`, `environment_class`, `generated_at`, `claim_boundaries`, and `signature`. Validators reject raw prompt/result keys and require boundaries for fixture-only, provider-response, and raw-memory claims.
|
|
91
|
-
|
|
92
|
-
**Novelty hypothesis.** Memory products often publish benchmark claims without portable evidence. A benchmark attestation makes the evidence object itself reusable by docs, CLI verification, and proof-network packets while preventing the attestation from becoming a data leak.
|
|
93
|
-
|
|
94
|
-
**Prior-art risk.** ML reproducibility cards, model eval reports, signed SBOM/provenance, benchmark registries, and scientific artifact badges overlap. The differentiator is a memory-specific attestation that can be anchored with capability and passport roots.
|
|
95
|
-
|
|
96
|
-
**Claim boundary.** The attestation can claim that a report hash was produced under named refs and boundaries. It cannot claim live provider performance, customer outcomes, cost savings, or benchmark leadership unless separate public-safe evidence supports those claims.
|
|
97
|
-
|
|
98
|
-
**First experiment.** Generate an attestation from a local report hash, dataset ref, runner ref, package ref, metric list, and claim-boundary object; verify that raw prompt/result fields are rejected and that a tampered report hash fails.
|
|
99
|
-
|
|
100
|
-
## 7. Solana nullifier grants
|
|
101
|
-
|
|
102
|
-
**Candidate disclosure.** A grant can include a Solana-ready nullifier commitment: a public opaque value derived from grant id, scope root, epoch, and revocation salt commitment. Anchor artifacts can later reference the nullifier to show revocation or one-time use without revealing the private grant body, tenant, memory, or policy.
|
|
103
|
-
|
|
104
|
-
**Technical mechanism.** The local packet stores private grant material off-chain and public fields such as `grant_ref`, `scope_root`, `epoch_ref`, `nullifier_hash`, `revocation_root`, `anchor_payload_hash`, `transaction_submitted:false`, and `raw_memory_on_chain:false`.
|
|
105
|
-
|
|
106
|
-
**Novelty hypothesis.** The model applies nullifier-style privacy to AI-memory capabilities: a public chain can see that a scoped grant was spent or revoked, while the sensitive grant semantics remain in local proof packets.
|
|
107
|
-
|
|
108
|
-
**Prior-art risk.** Nullifiers in privacy protocols, revocation registries, token allowances, capability revocation, and decentralized identity systems are close. The open question is whether the same pattern has been specialized for privacy-preserving AI-memory access grants and Solana-ready anchoring.
|
|
109
|
-
|
|
110
|
-
**Claim boundary.** A nullifier grant can claim local construction of a Solana-ready opaque revocation/spend artifact. It cannot claim that a transaction was submitted, confirmed, indexed, or recognized by any deployed program unless separate evidence says so.
|
|
111
|
-
|
|
112
|
-
**First experiment.** Locally create grant, nullifier, revocation artifact, and anchor-batch JSON with `transaction_submitted:false`; verify that nullifier reuse and mismatched scope roots fail while no raw grant policy or memory content appears.
|
|
113
|
-
|
|
114
|
-
## 8. Anti-fork sync
|
|
115
|
-
|
|
116
|
-
**Candidate disclosure.** Anti-fork sync detects divergent Memory Passport histories by comparing epoch roots, previous-root links, witness refs, and signer sets across devices or agents. When a fork is detected, Enigma emits a fork receipt with both public branches, minimum shared ancestor, local resolution policy hash, and a no-plaintext conflict summary.
|
|
117
|
-
|
|
118
|
-
**Technical mechanism.** Sync packets include `current_epoch_root`, `previous_epoch_root`, `witness_ref`, `signer_set_root`, `device_ref`, and `observed_at`. A fork receipt records `branch_a_root`, `branch_b_root`, `shared_ancestor_root`, `resolution_policy_hash`, and `raw_conflict_content_omitted:true`.
|
|
119
|
-
|
|
120
|
-
**Novelty hypothesis.** AI memory sync needs more than last-write-wins because hidden divergence can change what an agent remembers or discloses. Anti-fork sync makes divergence itself a verifiable event without forcing private memory bodies into conflict artifacts.
|
|
121
|
-
|
|
122
|
-
**Prior-art risk.** CRDTs, transparency logs, key-transparency anti-equivocation, Git history, sync engines, and certificate transparency are relevant. The candidate is strongest if focused on memory-passport proof history rather than generic data synchronization.
|
|
123
|
-
|
|
124
|
-
**Claim boundary.** Anti-fork sync can claim that two public root histories diverged from a shared ancestor. It cannot claim which private memory body is correct or resolve human/business truth without a separate private workflow.
|
|
125
|
-
|
|
126
|
-
**First experiment.** Simulate two local passport branches sharing an ancestor and diverging at different event roots; emit a fork receipt and prove that a verifier detects the fork and rejects a branch that omits the previous-root link.
|
|
127
|
-
|
|
128
|
-
## 9. Memory drive health
|
|
129
|
-
|
|
130
|
-
**Candidate disclosure.** Memory drive health is a SMART-like public-safe health packet for an AI memory vault: orphaned commitment count, stale derived-index count, tombstone backlog, unresolved fork count, policy-replay failure count, benchmark-attestation age, backup-ref freshness, and verifier status. It reports system health without exposing memories, tenants, prompts, embeddings, or provider logs.
|
|
131
|
-
|
|
132
|
-
**Technical mechanism.** The packet includes `vault_ref`, `passport_epoch_ref`, `orphaned_commitment_count`, `stale_index_count`, `tombstone_backlog_count`, `unresolved_fork_count`, `policy_replay_failure_count`, `latest_benchmark_attestation_ref`, `backup_ref_freshness`, `severity`, and `generated_at`.
|
|
133
|
-
|
|
134
|
-
**Novelty hypothesis.** Treating AI memory as durable infrastructure suggests operational health metrics analogous to a storage drive, but specialized for memory custody, proof freshness, and serving safety rather than sectors and temperatures.
|
|
135
|
-
|
|
136
|
-
**Prior-art risk.** Database health dashboards, vector-index metrics, observability, backup monitors, SMART drive telemetry, and compliance control dashboards overlap. The novelty is the public-safe, proof-network-compatible health packet for memory passports and boundary receipts.
|
|
137
|
-
|
|
138
|
-
**Claim boundary.** The packet can claim local health signals for an Enigma vault/ref set. It cannot claim customer compliance, hosted uptime, hardware durability, or absence of private operational incidents.
|
|
139
|
-
|
|
140
|
-
**First experiment.** Produce a deterministic health packet from synthetic counts and refs, then verify severity rules for stale attestations, unresolved forks, and tombstone backlog while rejecting any field whose key or value resembles raw private payload.
|
|
141
|
-
|
|
142
|
-
## 10. Enterprise policy replay
|
|
143
|
-
|
|
144
|
-
**Candidate disclosure.** Enterprise policy replay lets an auditor rerun historical memory-boundary decisions from minimized proof packets: policy hash, policy engine version, normalized inputs by ref, capability grant refs, decision timestamp, and signed result. The replay confirms deterministic decision parity without publishing the private policy body, tenant identity, memory content, prompts, or provider response.
|
|
145
|
-
|
|
146
|
-
**Technical mechanism.** Replay packets contain `policy_hash`, `policy_engine_ref`, `input_ref_root`, `capability_ref_root`, `decision_hash`, `decision_timestamp`, `runner_ref`, `signature`, and `private_policy_body_omitted:true`. The verifier recomputes the decision from public-safe fixture refs or customer-held private inputs.
|
|
147
|
-
|
|
148
|
-
**Novelty hypothesis.** Enterprise AI governance often depends on screenshots, dashboards, or logs that are hard to verify outside the vendor system. Policy replay makes policy checks portable and reproducible at the memory boundary while preserving confidentiality.
|
|
149
|
-
|
|
150
|
-
**Prior-art risk.** OPA/Rego decision logs, audit replay, SIEM, eDiscovery, model gateway policy systems, and governance-risk-compliance tools are adjacent. The candidate should be bounded to memory-specific context authorization and proof packets, not generic policy audit.
|
|
151
|
-
|
|
152
|
-
**Claim boundary.** Replay can claim deterministic parity for the supplied policy engine ref and input refs. It cannot claim that the private policy is complete or sufficient, that external providers honored the decision, or that all enterprise controls are configured.
|
|
153
|
-
|
|
154
|
-
**First experiment.** Create a local replay fixture with a policy-engine version, public input refs, capability refs, and expected decision hash; verify parity for the original packet and rejection when purpose ref, model boundary ref, or policy hash changes.
|
|
155
|
-
|
|
156
|
-
## Cross-candidate claim boundaries
|
|
157
|
-
|
|
158
|
-
- These candidates describe possible Enigma-controlled proof-network features, not live infrastructure, deployed Solana programs, provider behavior, compliance status, market leadership, investment value, roadmap priority, or external product claims.
|
|
159
|
-
- Chain-ready artifacts should be opaque anchor packets only. They should explicitly set `transaction_submitted:false` unless a separate approved workflow submits a transaction.
|
|
160
|
-
- Proofs cover declared Enigma-mediated events and local fixtures only until implemented and tested against real repository commands.
|
|
161
|
-
- Public examples should use synthetic hashes, roots, refs, counts, signatures, and schema names. They must not include private memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, keys, seed phrases, secrets, provider exports, or provider responses.
|
|
1
|
+
# Novelty invention candidates
|
|
2
|
+
|
|
3
|
+
This is a claim-bounded technical ideation memo for Enigma's proof-network roadmap. It is technical product ideation only. Each "novelty" item is a product and systems hypothesis to prototype and review against known engineering approaches before any stronger public claim is made.
|
|
4
|
+
|
|
5
|
+
Public artifacts referenced here must remain plaintext-minimized: hashes, roots, refs, counts, signatures, schema names, timestamps, and policy identifiers are acceptable; raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, private keys, seed phrases, API keys, and provider responses are not.
|
|
6
|
+
|
|
7
|
+
## Evaluation lens
|
|
8
|
+
|
|
9
|
+
Each candidate is useful only if it can be implemented as local, deterministic proof-network behavior:
|
|
10
|
+
|
|
11
|
+
- **Proof boundary:** evidence covers declared Enigma-mediated events, not external provider internals.
|
|
12
|
+
- **Privacy boundary:** public packets carry commitments and refs, not private memory or customer-identifying data.
|
|
13
|
+
- **Experiment boundary:** first experiments should be repository-local fixtures and validators, not Solana submissions or external-service calls.
|
|
14
|
+
- **Claim boundary:** language should say what the artifact verifies and what it does not verify.
|
|
15
|
+
|
|
16
|
+
## 1. Dual-root memory passport
|
|
17
|
+
|
|
18
|
+
**Candidate disclosure.** A Memory Passport carries two independently computed public roots for the same private memory corpus: a custody/lifecycle root over committed memory addresses and event receipts, and a semantic-use root over scoped capability, relevance, and purpose classifications. The passport verifier accepts the passport only when both roots bind to the same epoch, issuer, memory-count summary, and policy-ref set, without exposing memory bodies or embeddings.
|
|
19
|
+
|
|
20
|
+
**Technical mechanism.** The passport packet stores `custody_root`, `semantic_root`, `epoch_ref`, `previous_epoch_root`, `memory_count`, `policy_refs`, `issuer_key_ref`, and `signature`. A verifier checks that both roots are signed for the same epoch and that downstream context packs cite the same epoch refs.
|
|
21
|
+
|
|
22
|
+
**Novelty hypothesis.** Existing portable-memory exports usually focus on either content portability or audit logs. The dual-root model makes custody proof and semantic-use proof separable but cross-bound, so a verifier can check that a context pack was derived from the right controlled corpus and the right purpose boundary without learning the corpus.
|
|
23
|
+
|
|
24
|
+
**Prior-art risk.** Content-addressed archives, Merkle audit logs, verifiable credentials, capability systems, and RAG index manifests may already cover pieces of this structure. The risk is highest if prior systems already bind a semantic access graph to a portable user-memory corpus using independent commitments.
|
|
25
|
+
|
|
26
|
+
**Claim boundary.** The passport can claim root consistency for an Enigma-controlled corpus epoch. It cannot claim that third-party providers, exported files, screenshots, backups, or model state match the passport.
|
|
27
|
+
|
|
28
|
+
**First experiment.** Add a local fixture that creates a passport with custody and semantic roots, then prove that changing either root, epoch, count, policy ref, or signature fails verification while public output still contains no memory plaintext.
|
|
29
|
+
|
|
30
|
+
## 2. Boundary receipt handshake
|
|
31
|
+
|
|
32
|
+
**Candidate disclosure.** Before memory crosses an Enigma boundary into a model, agent, connector, or gateway, both sides perform a local handshake: requester nonce, purpose ref, policy hash, memory-root ref, allowed-output class, and receiver capability ref are committed into a pre-receipt; the final boundary receipt then binds the pre-receipt hash to the actual disclosure root and denial/approval result.
|
|
33
|
+
|
|
34
|
+
**Technical mechanism.** The requester signs a pre-receipt commitment. Enigma evaluates policy and emits a final receipt with `pre_receipt_hash`, `decision`, `disclosure_root` or `denial_reason_ref`, `policy_hash`, `capability_ref`, and `raw_memory_disclosed:false` for public artifacts.
|
|
35
|
+
|
|
36
|
+
**Novelty hypothesis.** The handshake turns context sharing into an accountable protocol rather than a best-effort log entry. It creates evidence that the receiver asked for a specific class of memory under a specific purpose before any approved context pack was emitted.
|
|
37
|
+
|
|
38
|
+
**Prior-art risk.** OAuth consent, signed webhooks, transparency logs, API audit trails, and data-processing workflows may overlap. The differentiator to test is the memory-specific pre-receipt/final-receipt pair that binds purpose, capability, and disclosure commitments without storing the disclosed text.
|
|
39
|
+
|
|
40
|
+
**Claim boundary.** The receipt proves an Enigma boundary decision and its public-safe commitments. It does not prove what the receiver did after receiving approved context.
|
|
41
|
+
|
|
42
|
+
**First experiment.** Implement a pure handshake fixture with `request_nonce`, `request_ref`, `purpose_ref`, `policy_hash`, `pre_receipt_hash`, `disclosure_root`, and `decision`, then verify replay resistance by rejecting reused nonces and mismatched final receipts.
|
|
43
|
+
|
|
44
|
+
## 3. Semantic capability grants
|
|
45
|
+
|
|
46
|
+
**Candidate disclosure.** A capability grant authorizes memory use by semantic purpose, sensitivity class, model/tool boundary, time window, and policy hash rather than by broad file, table, or tenant access. The public grant stores only normalized purpose refs, class refs, root refs, expiry, issuer key id, and signature; private policy text remains off artifact.
|
|
47
|
+
|
|
48
|
+
**Technical mechanism.** The grant packet contains `grant_id`, `subject_ref`, `issuer_key_ref`, `scope_root`, `purpose_refs`, `sensitivity_refs`, `boundary_refs`, `not_before`, `expires_at`, `policy_hash`, `revocation_ref`, and `signature`. Context-pack creation must fail closed unless every requested purpose and boundary is covered.
|
|
49
|
+
|
|
50
|
+
**Novelty hypothesis.** Conventional access control answers "who can read this object." Semantic capability grants answer "which committed memory may be transformed into which kind of context for which declared purpose," enabling narrow cross-agent memory delegation.
|
|
51
|
+
|
|
52
|
+
**Prior-art risk.** Macaroons, object capabilities, OAuth scopes, ABAC, Rego policies, verifiable credentials, and enterprise DLP systems may be close. The key review question is whether prior systems express AI-memory context construction as a first-class, proof-carrying capability.
|
|
53
|
+
|
|
54
|
+
**Claim boundary.** A grant can claim scoped authorization under the listed refs and time window. It cannot claim that the subject is a real-world person, that policy text is public, or that external systems enforce the same semantics.
|
|
55
|
+
|
|
56
|
+
**First experiment.** Create a grant validator that permits a context-pack plan only when purpose ref, sensitivity ref, boundary ref, epoch, and root match the grant; then test denial for broader purposes, expired windows, altered policy hashes, and unknown revocation refs.
|
|
57
|
+
|
|
58
|
+
## 4. Verifiable relevance compression
|
|
59
|
+
|
|
60
|
+
**Candidate disclosure.** A context compressor emits a compact proof packet containing input corpus root, query/purpose commitment, selected-address root, omitted-address count, deterministic scorer version, score-threshold ref, and compressed-output hash. The packet proves what was selected and omitted by the local relevance process without publishing the query, memory text, scores, or embeddings.
|
|
61
|
+
|
|
62
|
+
**Technical mechanism.** The compressor uses deterministic local selection over committed addresses. The output packet stores `input_root`, `query_commitment`, `purpose_ref`, `scorer_ref`, `threshold_ref`, `selected_root`, `omitted_count`, `compressed_output_hash`, and `private_scores_omitted:true`.
|
|
63
|
+
|
|
64
|
+
**Novelty hypothesis.** Prompt compression is usually evaluated by output size or answer quality, not by third-party-verifiable selection boundaries. This design makes relevance compression auditable as a privacy-preserving memory boundary event.
|
|
65
|
+
|
|
66
|
+
**Prior-art risk.** Search-result audit logs, reproducible IR benchmarks, zk/commitment schemes, prompt-compression research, and vector-store explainability may overlap. Risk rises if existing products already provide verifiable selected/omitted roots for private AI-memory compression.
|
|
67
|
+
|
|
68
|
+
**Claim boundary.** The packet can claim deterministic selection under a named local scorer and threshold. It cannot claim semantic optimality, universal relevance, provider-side savings, or benchmark leadership.
|
|
69
|
+
|
|
70
|
+
**First experiment.** Run a deterministic local relevance fixture over synthetic committed addresses, emit selected and omitted roots plus counts, and verify that changing the scorer version, threshold ref, selected set, or compressed-output hash invalidates the packet.
|
|
71
|
+
|
|
72
|
+
## 5. Forgetting boundary ledger
|
|
73
|
+
|
|
74
|
+
**Candidate disclosure.** A forgetting boundary ledger records Enigma-controlled tombstone, delete-request, active-serving exclusion, derived-index refresh, and verifier events as ordered commitments. It does not claim provider deletion, backup erasure, model forgetting, or semantic forgetting; it proves only whether Enigma serving paths continue to include committed memory addresses after a boundary event.
|
|
75
|
+
|
|
76
|
+
**Technical mechanism.** Ledger entries link `event_root`, `previous_event_root`, `memory_address_commitment`, `tombstone_ref`, `active_set_root_before`, `active_set_root_after`, `derived_index_refresh_ref`, `verifier_report_hash`, and explicit negative-claim flags such as `provider_deletion_proof:false`.
|
|
77
|
+
|
|
78
|
+
**Novelty hypothesis.** The ledger reframes forgetting as a bounded, verifiable serving-state property rather than an absolute deletion claim. That boundary is practical for enterprise trust because it can be checked offline from public-safe roots and receipts.
|
|
79
|
+
|
|
80
|
+
**Prior-art risk.** Data-deletion logs, append-only audit ledgers, certificate transparency, tombstone systems, and privacy compliance workflows are adjacent. The distinctive angle is AI-memory active-serving exclusion tied to passport roots and derived-index refresh evidence.
|
|
81
|
+
|
|
82
|
+
**Claim boundary.** The ledger can claim Enigma active-serving exclusion for committed addresses after named events. It cannot claim provider deletion, backup erasure, model forgetting, human forgetting, or deletion from exported copies.
|
|
83
|
+
|
|
84
|
+
**First experiment.** Build a fixture with a memory address commitment, tombstone receipt, refreshed active-set root, and verifier report that proves the address is absent from active Enigma serving while preserving explicit false flags for external deletion and model forgetting.
|
|
85
|
+
|
|
86
|
+
## 6. Benchmark attestation
|
|
87
|
+
|
|
88
|
+
**Candidate disclosure.** A benchmark attestation binds a benchmark report hash to dataset refs, runner refs, package refs, metric names, fixture counts, environment class, and claim boundaries. It intentionally omits raw dataset rows, prompts, provider responses, and private memory, enabling public comparison without publishing private benchmark material.
|
|
89
|
+
|
|
90
|
+
**Technical mechanism.** The attestation contains `report_hash`, `dataset_ref`, `runner_ref`, `package_ref`, `metric_refs`, `sample_count`, `environment_class`, `generated_at`, `claim_boundaries`, and `signature`. Validators reject raw prompt/result keys and require boundaries for fixture-only, provider-response, and raw-memory claims.
|
|
91
|
+
|
|
92
|
+
**Novelty hypothesis.** Memory products often publish benchmark claims without portable evidence. A benchmark attestation makes the evidence object itself reusable by docs, CLI verification, and proof-network packets while preventing the attestation from becoming a data leak.
|
|
93
|
+
|
|
94
|
+
**Prior-art risk.** ML reproducibility cards, model eval reports, signed SBOM/provenance, benchmark registries, and scientific artifact badges overlap. The differentiator is a memory-specific attestation that can be anchored with capability and passport roots.
|
|
95
|
+
|
|
96
|
+
**Claim boundary.** The attestation can claim that a report hash was produced under named refs and boundaries. It cannot claim live provider performance, customer outcomes, cost savings, or benchmark leadership unless separate public-safe evidence supports those claims.
|
|
97
|
+
|
|
98
|
+
**First experiment.** Generate an attestation from a local report hash, dataset ref, runner ref, package ref, metric list, and claim-boundary object; verify that raw prompt/result fields are rejected and that a tampered report hash fails.
|
|
99
|
+
|
|
100
|
+
## 7. Solana nullifier grants
|
|
101
|
+
|
|
102
|
+
**Candidate disclosure.** A grant can include a Solana-ready nullifier commitment: a public opaque value derived from grant id, scope root, epoch, and revocation salt commitment. Anchor artifacts can later reference the nullifier to show revocation or one-time use without revealing the private grant body, tenant, memory, or policy.
|
|
103
|
+
|
|
104
|
+
**Technical mechanism.** The local packet stores private grant material off-chain and public fields such as `grant_ref`, `scope_root`, `epoch_ref`, `nullifier_hash`, `revocation_root`, `anchor_payload_hash`, `transaction_submitted:false`, and `raw_memory_on_chain:false`.
|
|
105
|
+
|
|
106
|
+
**Novelty hypothesis.** The model applies nullifier-style privacy to AI-memory capabilities: a public chain can see that a scoped grant was spent or revoked, while the sensitive grant semantics remain in local proof packets.
|
|
107
|
+
|
|
108
|
+
**Prior-art risk.** Nullifiers in privacy protocols, revocation registries, token allowances, capability revocation, and decentralized identity systems are close. The open question is whether the same pattern has been specialized for privacy-preserving AI-memory access grants and Solana-ready anchoring.
|
|
109
|
+
|
|
110
|
+
**Claim boundary.** A nullifier grant can claim local construction of a Solana-ready opaque revocation/spend artifact. It cannot claim that a transaction was submitted, confirmed, indexed, or recognized by any deployed program unless separate evidence says so.
|
|
111
|
+
|
|
112
|
+
**First experiment.** Locally create grant, nullifier, revocation artifact, and anchor-batch JSON with `transaction_submitted:false`; verify that nullifier reuse and mismatched scope roots fail while no raw grant policy or memory content appears.
|
|
113
|
+
|
|
114
|
+
## 8. Anti-fork sync
|
|
115
|
+
|
|
116
|
+
**Candidate disclosure.** Anti-fork sync detects divergent Memory Passport histories by comparing epoch roots, previous-root links, witness refs, and signer sets across devices or agents. When a fork is detected, Enigma emits a fork receipt with both public branches, minimum shared ancestor, local resolution policy hash, and a no-plaintext conflict summary.
|
|
117
|
+
|
|
118
|
+
**Technical mechanism.** Sync packets include `current_epoch_root`, `previous_epoch_root`, `witness_ref`, `signer_set_root`, `device_ref`, and `observed_at`. A fork receipt records `branch_a_root`, `branch_b_root`, `shared_ancestor_root`, `resolution_policy_hash`, and `raw_conflict_content_omitted:true`.
|
|
119
|
+
|
|
120
|
+
**Novelty hypothesis.** AI memory sync needs more than last-write-wins because hidden divergence can change what an agent remembers or discloses. Anti-fork sync makes divergence itself a verifiable event without forcing private memory bodies into conflict artifacts.
|
|
121
|
+
|
|
122
|
+
**Prior-art risk.** CRDTs, transparency logs, key-transparency anti-equivocation, Git history, sync engines, and certificate transparency are relevant. The candidate is strongest if focused on memory-passport proof history rather than generic data synchronization.
|
|
123
|
+
|
|
124
|
+
**Claim boundary.** Anti-fork sync can claim that two public root histories diverged from a shared ancestor. It cannot claim which private memory body is correct or resolve human/business truth without a separate private workflow.
|
|
125
|
+
|
|
126
|
+
**First experiment.** Simulate two local passport branches sharing an ancestor and diverging at different event roots; emit a fork receipt and prove that a verifier detects the fork and rejects a branch that omits the previous-root link.
|
|
127
|
+
|
|
128
|
+
## 9. Memory drive health
|
|
129
|
+
|
|
130
|
+
**Candidate disclosure.** Memory drive health is a SMART-like public-safe health packet for an AI memory vault: orphaned commitment count, stale derived-index count, tombstone backlog, unresolved fork count, policy-replay failure count, benchmark-attestation age, backup-ref freshness, and verifier status. It reports system health without exposing memories, tenants, prompts, embeddings, or provider logs.
|
|
131
|
+
|
|
132
|
+
**Technical mechanism.** The packet includes `vault_ref`, `passport_epoch_ref`, `orphaned_commitment_count`, `stale_index_count`, `tombstone_backlog_count`, `unresolved_fork_count`, `policy_replay_failure_count`, `latest_benchmark_attestation_ref`, `backup_ref_freshness`, `severity`, and `generated_at`.
|
|
133
|
+
|
|
134
|
+
**Novelty hypothesis.** Treating AI memory as durable infrastructure suggests operational health metrics analogous to a storage drive, but specialized for memory custody, proof freshness, and serving safety rather than sectors and temperatures.
|
|
135
|
+
|
|
136
|
+
**Prior-art risk.** Database health dashboards, vector-index metrics, observability, backup monitors, SMART drive telemetry, and compliance control dashboards overlap. The novelty is the public-safe, proof-network-compatible health packet for memory passports and boundary receipts.
|
|
137
|
+
|
|
138
|
+
**Claim boundary.** The packet can claim local health signals for an Enigma vault/ref set. It cannot claim customer compliance, hosted uptime, hardware durability, or absence of private operational incidents.
|
|
139
|
+
|
|
140
|
+
**First experiment.** Produce a deterministic health packet from synthetic counts and refs, then verify severity rules for stale attestations, unresolved forks, and tombstone backlog while rejecting any field whose key or value resembles raw private payload.
|
|
141
|
+
|
|
142
|
+
## 10. Enterprise policy replay
|
|
143
|
+
|
|
144
|
+
**Candidate disclosure.** Enterprise policy replay lets an auditor rerun historical memory-boundary decisions from minimized proof packets: policy hash, policy engine version, normalized inputs by ref, capability grant refs, decision timestamp, and signed result. The replay confirms deterministic decision parity without publishing the private policy body, tenant identity, memory content, prompts, or provider response.
|
|
145
|
+
|
|
146
|
+
**Technical mechanism.** Replay packets contain `policy_hash`, `policy_engine_ref`, `input_ref_root`, `capability_ref_root`, `decision_hash`, `decision_timestamp`, `runner_ref`, `signature`, and `private_policy_body_omitted:true`. The verifier recomputes the decision from public-safe fixture refs or customer-held private inputs.
|
|
147
|
+
|
|
148
|
+
**Novelty hypothesis.** Enterprise AI governance often depends on screenshots, dashboards, or logs that are hard to verify outside the vendor system. Policy replay makes policy checks portable and reproducible at the memory boundary while preserving confidentiality.
|
|
149
|
+
|
|
150
|
+
**Prior-art risk.** OPA/Rego decision logs, audit replay, SIEM, eDiscovery, model gateway policy systems, and governance-risk-compliance tools are adjacent. The candidate should be bounded to memory-specific context authorization and proof packets, not generic policy audit.
|
|
151
|
+
|
|
152
|
+
**Claim boundary.** Replay can claim deterministic parity for the supplied policy engine ref and input refs. It cannot claim that the private policy is complete or sufficient, that external providers honored the decision, or that all enterprise controls are configured.
|
|
153
|
+
|
|
154
|
+
**First experiment.** Create a local replay fixture with a policy-engine version, public input refs, capability refs, and expected decision hash; verify parity for the original packet and rejection when purpose ref, model boundary ref, or policy hash changes.
|
|
155
|
+
|
|
156
|
+
## Cross-candidate claim boundaries
|
|
157
|
+
|
|
158
|
+
- These candidates describe possible Enigma-controlled proof-network features, not live infrastructure, deployed Solana programs, provider behavior, compliance status, market leadership, investment value, roadmap priority, or external product claims.
|
|
159
|
+
- Chain-ready artifacts should be opaque anchor packets only. They should explicitly set `transaction_submitted:false` unless a separate approved workflow submits a transaction.
|
|
160
|
+
- Proofs cover declared Enigma-mediated events and local fixtures only until implemented and tested against real repository commands.
|
|
161
|
+
- Public examples should use synthetic hashes, roots, refs, counts, signatures, and schema names. They must not include private memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, keys, seed phrases, secrets, provider exports, or provider responses.
|