enigma-memory 0.1.11 → 0.1.13
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 +8 -0
- package/apps/cli/bin/enigma.mjs +362 -10
- package/deploy/SIMULATION.md +152 -0
- package/deploy/docker-compose.local-production-simulation.yml +237 -0
- package/deploy/docker-compose.production.example.yml +19 -0
- package/deploy/kms-mock.mjs +64 -0
- package/deploy/nginx.local-production-simulation.conf +33 -0
- package/deploy/siem-mock.mjs +50 -0
- package/docs/benchmark-attestation-network.md +488 -0
- package/docs/benchmark-reproducibility.md +19 -2
- package/docs/blockchain-only-mechanisms.md +388 -0
- package/docs/client-connectors.md +512 -0
- package/docs/demo-proof-network.md +275 -0
- package/docs/developer-ecosystem.md +47 -4
- package/docs/developer-proof-quickstart.md +325 -0
- package/docs/enigma-memory-ready-conformance.md +376 -0
- package/docs/enterprise-proof-control-plane.md +365 -0
- package/docs/install-anywhere.md +517 -0
- package/docs/market-category-narrative.md +398 -0
- package/docs/memory-drive-health-model.md +649 -0
- package/docs/memory-drive-strategy.md +458 -0
- package/docs/memory-passport-standard.md +445 -0
- package/docs/novelty-invention-candidates.md +161 -0
- package/docs/privacy-ledger-model.md +229 -0
- package/docs/proof-network-build-notes.md +240 -0
- package/docs/proof-network-claim-boundaries.md +318 -0
- package/docs/proof-network-dashboard-spec.md +773 -0
- package/docs/proof-network-glossary.md +27 -0
- package/docs/proof-network-launch-plan.md +421 -0
- package/docs/proof-network-operator-protocol.md +432 -0
- package/docs/proof-network-roadmap.md +431 -0
- package/docs/proof-network-test-plan.md +216 -0
- package/docs/proof-network-threat-model.md +373 -0
- package/docs/proof-network.md +257 -0
- package/docs/sdk-api.md +132 -10
- package/docs/solana-devnet-acceptance.md +226 -0
- package/docs/solana-proof-rail.md +453 -0
- package/examples/ci/github-actions.yml +6 -3
- package/examples/proof-network-anchor.json +37 -0
- package/examples/proof-network-attestation.json +35 -0
- package/examples/proof-network-grant.json +27 -0
- package/examples/proof-network-packet.json +71 -0
- package/package.json +42 -3
- package/packages/mcp-server/src/index.js +1 -1
- package/packages/proof-network/src/index.js +570 -0
- package/scripts/build-hosted-api-key-lifecycle.mjs +1 -1
- package/scripts/build-hosted-customer-lifecycle.mjs +1 -1
- package/scripts/build-installer-assets.mjs +1 -1
- package/scripts/build-proof-network-packet.mjs +213 -0
- package/scripts/run-standard-memory-benchmarks.mjs +1 -1
- package/scripts/simulate-production-env.mjs +210 -0
- package/scripts/verify-registry-install.mjs +1 -0
- package/scripts/wait-for-backend-ready.mjs +101 -0
- package/specs/goal-completion-audit-v1.schema.json +1 -0
- package/specs/proof-network-anchor-batch-v1.schema.json +125 -0
- package/specs/proof-network-benchmark-attestation-v1.schema.json +103 -0
- package/specs/proof-network-capability-grant-v1.schema.json +132 -0
- package/specs/proof-network-packet-v1.schema.json +171 -0
|
@@ -0,0 +1,398 @@
|
|
|
1
|
+
# Market category narrative
|
|
2
|
+
|
|
3
|
+
## One-line thesis
|
|
4
|
+
|
|
5
|
+
Enigma is the **private Memory Controller for AI**: a user- or customer-controlled layer that stores durable memory outside the model, governs how that memory is used, and emits public-safe proofs for memory operations without exposing the memory itself.
|
|
6
|
+
|
|
7
|
+
## The category shift
|
|
8
|
+
|
|
9
|
+
The first wave of AI memory is being described as a chatbot feature: a model remembers a preference, a product saves a conversation, or an app retrieves a useful fact from a vector store.
|
|
10
|
+
|
|
11
|
+
That framing is too small.
|
|
12
|
+
|
|
13
|
+
Memory is not just recall. Memory is a durable asset. It contains identity, context, preferences, decisions, permissions, work history, relationships, project state, and institutional knowledge. Once AI systems become operators across apps, workflows, devices, teams, and agents, memory stops being a convenience feature and becomes infrastructure.
|
|
14
|
+
|
|
15
|
+
The category shift is:
|
|
16
|
+
|
|
17
|
+
> From chatbot memory to AI Memory Controller.
|
|
18
|
+
|
|
19
|
+
A chatbot memory feature asks, “What should this assistant remember?”
|
|
20
|
+
|
|
21
|
+
An AI Memory Controller asks:
|
|
22
|
+
|
|
23
|
+
- Who owns the memory?
|
|
24
|
+
- Where does the canonical memory live?
|
|
25
|
+
- Which model, app, agent, or workflow can use it?
|
|
26
|
+
- What context was retrieved, injected, exported, revoked, or withheld?
|
|
27
|
+
- Which operations can be verified later?
|
|
28
|
+
- What can be proven publicly without revealing the private memory behind it?
|
|
29
|
+
- Which proofs, permissions, roots, and refs can move across ecosystems?
|
|
30
|
+
|
|
31
|
+
That is the product system Enigma should own.
|
|
32
|
+
|
|
33
|
+
## The SanDisk / SSD analogy
|
|
34
|
+
|
|
35
|
+
The useful analogy is not “Enigma is a database.” The better analogy is **SanDisk plus the SSD controller layer for AI memory**.
|
|
36
|
+
|
|
37
|
+
An SSD is not valuable because it is a folder. It is valuable because it provides durable storage that applications can trust without knowing the details of flash translation, wear leveling, bad-block handling, integrity checks, erase behavior, caching, interfaces, firmware, and lifecycle management.
|
|
38
|
+
|
|
39
|
+
The controller is the important part. It turns fragile underlying media into a usable system.
|
|
40
|
+
|
|
41
|
+
AI memory has a similar problem. The underlying “media” is scattered across:
|
|
42
|
+
|
|
43
|
+
- model-provider memory features;
|
|
44
|
+
- chat histories;
|
|
45
|
+
- browser sessions;
|
|
46
|
+
- IDE agents;
|
|
47
|
+
- local vector indexes;
|
|
48
|
+
- enterprise logs;
|
|
49
|
+
- agent scratchpads;
|
|
50
|
+
- RAG stores;
|
|
51
|
+
- CRM and ticketing systems;
|
|
52
|
+
- imported exports;
|
|
53
|
+
- benchmark runs;
|
|
54
|
+
- governance and audit records.
|
|
55
|
+
|
|
56
|
+
Without a controller, every app invents its own memory layer, custody model, deletion semantics, permission surface, export format, and proof story. That creates lock-in for users, risk for enterprises, and repetitive infrastructure work for developers.
|
|
57
|
+
|
|
58
|
+
Enigma’s category role is to be the controller layer:
|
|
59
|
+
|
|
60
|
+
- keep canonical memory local or customer-controlled;
|
|
61
|
+
- expose memory through connectors instead of one walled garden;
|
|
62
|
+
- treat summaries, vector indexes, and retrieval caches as derived artifacts;
|
|
63
|
+
- govern which clients and agents can use which memory;
|
|
64
|
+
- record Enigma-controlled lifecycle operations;
|
|
65
|
+
- produce receipts, proof packets, benchmark attestations, and verifier artifacts;
|
|
66
|
+
- keep raw memory out of public artifacts;
|
|
67
|
+
- optionally anchor opaque roots or refs on Solana when a public timestamp or settlement rail is useful.
|
|
68
|
+
|
|
69
|
+
The SSD analogy should stay operational, not financial. It does not imply valuation outcomes, market share, token value, or investment returns. It gives buyers and developers a simple mental model: AI systems need durable private memory, and that memory needs a controller.
|
|
70
|
+
|
|
71
|
+
## Why models need external private memory
|
|
72
|
+
|
|
73
|
+
A model is not the right place to put canonical memory.
|
|
74
|
+
|
|
75
|
+
Models are powerful reasoning and generation engines, but they are not controlled memory drives. They are opaque, vendor-specific, expensive to inspect, difficult to port, and often outside the owner’s direct custody. Even when a provider offers memory features, that memory usually lives inside one product boundary and cannot reliably become the user’s or enterprise’s cross-model source of truth.
|
|
76
|
+
|
|
77
|
+
External private memory matters because AI work is becoming long-lived.
|
|
78
|
+
|
|
79
|
+
A useful AI system needs to remember more than a prompt window can hold:
|
|
80
|
+
|
|
81
|
+
- stable user preferences;
|
|
82
|
+
- project constraints;
|
|
83
|
+
- prior decisions;
|
|
84
|
+
- open tasks;
|
|
85
|
+
- security boundaries;
|
|
86
|
+
- workflow state;
|
|
87
|
+
- team norms;
|
|
88
|
+
- imported history;
|
|
89
|
+
- permissions and revocations;
|
|
90
|
+
- benchmark and evaluation records;
|
|
91
|
+
- enterprise retention and legal-hold state.
|
|
92
|
+
|
|
93
|
+
That memory should not be trapped inside one chatbot subscription or silently duplicated across every model provider a user tries. It should be portable across models, clients, and workflows.
|
|
94
|
+
|
|
95
|
+
External memory also creates a cleaner architecture:
|
|
96
|
+
|
|
97
|
+
- **The model reasons.** It can use relevant context when authorized.
|
|
98
|
+
- **The controller governs.** It decides what memory is available, under what policy, through which connector, with which receipt.
|
|
99
|
+
- **The owner retains custody.** The canonical record can remain local, customer-controlled, or explicitly hosted under declared boundaries.
|
|
100
|
+
- **The verifier checks artifacts.** Proof packets and attestations can be inspected without exposing private memory.
|
|
101
|
+
|
|
102
|
+
This separation gives users portability, gives developers a reusable memory layer, and gives enterprises a control surface before memory crosses a provider boundary.
|
|
103
|
+
|
|
104
|
+
## What makes memory different from search
|
|
105
|
+
|
|
106
|
+
Search returns relevant information. Memory carries responsibility.
|
|
107
|
+
|
|
108
|
+
A vector database can answer “what is similar to this query?” That is useful, but it is not enough for durable AI memory. A memory controller has to answer harder questions:
|
|
109
|
+
|
|
110
|
+
- Is this memory canonical or derived?
|
|
111
|
+
- Is it active, expired, tombstoned, exported, or under legal hold?
|
|
112
|
+
- Which connector requested it?
|
|
113
|
+
- Was it allowed by policy?
|
|
114
|
+
- Was it injected into a model context?
|
|
115
|
+
- Can the operation be reconstructed later from public-safe evidence?
|
|
116
|
+
- Can an outside reviewer verify the artifact without seeing private content?
|
|
117
|
+
|
|
118
|
+
This is why Enigma should not be positioned as another semantic search tool. Search is one capability inside the system. The category is controlled, portable, verifiable AI memory.
|
|
119
|
+
|
|
120
|
+
## Why proof matters
|
|
121
|
+
|
|
122
|
+
AI memory creates trust problems that ordinary product logs do not solve.
|
|
123
|
+
|
|
124
|
+
If a team claims that memory was batched, exported, revoked, withheld, benchmarked, or made available to a specific tool under a specific permission, another party may need evidence. That party might be a developer, auditor, enterprise security reviewer, ecosystem partner, or future operator debugging an incident.
|
|
125
|
+
|
|
126
|
+
But the evidence cannot simply be the private memory itself.
|
|
127
|
+
|
|
128
|
+
Public artifacts must not contain raw memory, prompts, transcripts, completions, embeddings, tenant names, private keys, API keys, seed phrases, provider responses, ACL bodies, customer records, or private benchmark rows. Publishing those values would turn proof into a privacy failure.
|
|
129
|
+
|
|
130
|
+
The proof layer exists to make a narrow, useful promise:
|
|
131
|
+
|
|
132
|
+
> Enigma can produce public-safe evidence for Enigma-controlled memory operations and declared boundary decisions while keeping private memory private.
|
|
133
|
+
|
|
134
|
+
Proof artifacts should carry values such as:
|
|
135
|
+
|
|
136
|
+
- schema ids;
|
|
137
|
+
- artifact ids;
|
|
138
|
+
- hashes;
|
|
139
|
+
- Merkle roots;
|
|
140
|
+
- public-safe refs;
|
|
141
|
+
- counts;
|
|
142
|
+
- timestamps;
|
|
143
|
+
- signer or verifier metadata;
|
|
144
|
+
- policy ids;
|
|
145
|
+
- grant and revocation refs;
|
|
146
|
+
- benchmark dataset refs, runner refs, package refs, config refs, and report hashes;
|
|
147
|
+
- explicit boundary notes.
|
|
148
|
+
|
|
149
|
+
They should not claim more than they can prove. A receipt can support an Enigma-side memory lifecycle claim. It cannot prove that a closed model forgot something, that a provider deleted every internal copy, that an enterprise is compliant, that a benchmark implies universal superiority, or that a deployment has a financial outcome.
|
|
150
|
+
|
|
151
|
+
That boundary is not a weakness. It is the source of credibility.
|
|
152
|
+
|
|
153
|
+
## Where blockchain fits
|
|
154
|
+
|
|
155
|
+
Blockchain is useful only after the memory boundary is clear.
|
|
156
|
+
|
|
157
|
+
The product is not “put AI memory on-chain.” Raw memory does not belong on-chain. Public chains are replicated, durable, and hard to erase. Even encrypted sensitive content can become a long-term disclosure risk if keys, algorithms, metadata, or access patterns change.
|
|
158
|
+
|
|
159
|
+
The correct blockchain role is narrower:
|
|
160
|
+
|
|
161
|
+
> Solana can be an optional proof, permission, timestamp, and settlement rail for opaque roots and refs. The memory stays private.
|
|
162
|
+
|
|
163
|
+
In Enigma’s product system, Solana should carry public-safe commitments such as:
|
|
164
|
+
|
|
165
|
+
- memory batch roots;
|
|
166
|
+
- proof-packet roots;
|
|
167
|
+
- benchmark-attestation roots;
|
|
168
|
+
- capability-grant refs;
|
|
169
|
+
- revocation nullifiers;
|
|
170
|
+
- settlement or metering refs;
|
|
171
|
+
- verifier refs.
|
|
172
|
+
|
|
173
|
+
It should not carry the underlying memory, prompt text, transcript, completion, embedding, tenant name, ACL body, key, seed phrase, provider response, or private dataset row.
|
|
174
|
+
|
|
175
|
+
This lets Enigma speak to the blockchain ecosystem without becoming chain-first. The local Memory Controller is the trust anchor. Solana is an optional public rail when a team wants outside observers to verify that an opaque commitment existed, a grant was issued, a revocation was recorded, or a report hash was anchored.
|
|
176
|
+
|
|
177
|
+
The message is simple:
|
|
178
|
+
|
|
179
|
+
> Public roots for private memory systems.
|
|
180
|
+
|
|
181
|
+
## Product architecture as narrative
|
|
182
|
+
|
|
183
|
+
The marketable system has five layers.
|
|
184
|
+
|
|
185
|
+
### 1. Private Memory Controller
|
|
186
|
+
|
|
187
|
+
The controller is the core category object. It manages the canonical memory record and its lifecycle.
|
|
188
|
+
|
|
189
|
+
It should make memory feel like owned infrastructure: durable, portable, inspectable, exportable, revocable where Enigma controls the boundary, and verifiable through receipts.
|
|
190
|
+
|
|
191
|
+
### 2. Connector layer
|
|
192
|
+
|
|
193
|
+
AI memory becomes valuable when many clients can use it. Connectors let AI apps, agents, IDEs, browsers, SDKs, CLIs, and enterprise gateways request memory through declared boundaries rather than copying memory into every product.
|
|
194
|
+
|
|
195
|
+
The connector message is:
|
|
196
|
+
|
|
197
|
+
> One private memory layer, many AI clients.
|
|
198
|
+
|
|
199
|
+
### 3. Governance layer
|
|
200
|
+
|
|
201
|
+
Enterprises need policy before memory crosses boundaries. A memory controller should support allow/deny decisions, scoped grants, revocations, retention posture, residency policy, legal-hold state, SIEM-safe events, and offline review artifacts.
|
|
202
|
+
|
|
203
|
+
The enterprise message is:
|
|
204
|
+
|
|
205
|
+
> Govern AI memory before it enters a model context.
|
|
206
|
+
|
|
207
|
+
### 4. Proof layer
|
|
208
|
+
|
|
209
|
+
Receipts and proof packets turn memory operations into bounded evidence. They make Enigma more than a storage feature because they create a verifier surface that can travel outside the private data plane.
|
|
210
|
+
|
|
211
|
+
The proof message is:
|
|
212
|
+
|
|
213
|
+
> Proofs can be public; memory stays private.
|
|
214
|
+
|
|
215
|
+
### 5. Optional Solana rail
|
|
216
|
+
|
|
217
|
+
Solana can add public timestamping, root anchoring, nullifier publication, permission references, and settlement references when operators choose that path.
|
|
218
|
+
|
|
219
|
+
The blockchain message is:
|
|
220
|
+
|
|
221
|
+
> Anchor roots, not memory.
|
|
222
|
+
|
|
223
|
+
## Blockchain-specific product system
|
|
224
|
+
|
|
225
|
+
The blockchain-specific version of Enigma should still begin with private memory, not with chain mechanics.
|
|
226
|
+
|
|
227
|
+
The product system is:
|
|
228
|
+
|
|
229
|
+
| Layer | Product object | Buyer-visible purpose | Public surface |
|
|
230
|
+
| --- | --- | --- | --- |
|
|
231
|
+
| Private Memory Controller | Local or customer-controlled memory record | Keep durable AI memory portable and governed | None by default |
|
|
232
|
+
| Connector boundary | MCP, SDK, CLI, browser, agent, or gateway path | Decide which client can use which memory under which policy | Public-safe connector refs and receipt ids |
|
|
233
|
+
| Proof packet | Hashes, roots, refs, counts, timestamps, signatures, and boundary notes | Let a reviewer verify an Enigma-controlled event without seeing private memory | Schema-bound packet or attestation |
|
|
234
|
+
| Permission object | Capability grant, expiry, scope digest, and revocation path | Give agents and operators narrow memory permissions | Public-safe grant refs or digest commitments |
|
|
235
|
+
| Revocation object | Nullifier, revoked grant ref, and effective time | Tell verifiers which grants or proof references should no longer be accepted | Public-safe nullifier or revocation ref |
|
|
236
|
+
| Optional Solana rail | Anchor, registry entry, permission state, nullifier set, or settlement reference | Provide neutral ordering, discoverability, and shared state when local evidence is not enough | Opaque roots, refs, public keys, slots, signatures, and settlement status |
|
|
237
|
+
|
|
238
|
+
This gives the blockchain story product weight without leaking the memory story into the chain. Enigma is not asking the market to believe that blockchains should store AI memory. It is saying that AI memory needs a private controller, and some controller events benefit from a public rail.
|
|
239
|
+
|
|
240
|
+
## Public-safe example patterns
|
|
241
|
+
|
|
242
|
+
The category should be explained with examples that are safe to publish.
|
|
243
|
+
|
|
244
|
+
A good memory commitment example says:
|
|
245
|
+
|
|
246
|
+
> A workspace generated a memory-batch root, a count, a timestamp, and a verifier packet. The private memory records remained in the customer-controlled memory store. A reviewer with approved access can recompute the root; a public observer only sees the opaque commitment.
|
|
247
|
+
|
|
248
|
+
A good permission example says:
|
|
249
|
+
|
|
250
|
+
> An agent received a scoped capability to request a context pack for a public-safe project ref until a declared expiry. The grant refers to a scope digest, not the private policy body or raw memory behind that scope.
|
|
251
|
+
|
|
252
|
+
A good revocation example says:
|
|
253
|
+
|
|
254
|
+
> A prior capability was revoked through a nullifier. Verifiers that honor the nullifier set should reject the old grant. The revocation does not claim downstream provider deletion or model forgetting.
|
|
255
|
+
|
|
256
|
+
A good benchmark example says:
|
|
257
|
+
|
|
258
|
+
> A benchmark report is bound to a dataset ref, runner ref, package ref, config ref, metric summary, report hash, and verifier status. The public artifact does not include raw prompts, answers, provider responses, private rows, or hidden evaluation notes.
|
|
259
|
+
|
|
260
|
+
A good Solana example says:
|
|
261
|
+
|
|
262
|
+
> An operator may anchor an opaque proof-packet root or publish a public-safe nullifier. The chain shows ordering and shared state for the commitment. The chain does not see the private memory that produced the root.
|
|
263
|
+
|
|
264
|
+
These examples make the product concrete while keeping the public record clean.
|
|
265
|
+
|
|
266
|
+
## Spec thinking for the category
|
|
267
|
+
|
|
268
|
+
The narrative should push toward a spec surface that other developers can implement and reviewers can inspect. The important spec ideas are simple:
|
|
269
|
+
|
|
270
|
+
1. **Canonical private source, derived public proof.** The memory record remains private. Public artifacts are derived from it through stable hashes, roots, refs, and counts.
|
|
271
|
+
2. **Explicit schema families.** Anchors, grants, revocations, benchmark attestations, proof packets, and settlement refs should have separate schema ids instead of one vague proof blob.
|
|
272
|
+
3. **Public-safety by construction.** Proof artifacts should reject or avoid private payload classes: raw memory, prompts, transcripts, completions, embeddings, tenant names, ACL bodies, private keys, seed phrases, API keys, provider responses, and private benchmark rows.
|
|
273
|
+
4. **Boundary notes are part of the artifact.** Every proof should say what it supports and what it does not support.
|
|
274
|
+
5. **Offline verification first.** A reviewer should be able to verify local artifacts without trusting a hosted Enigma service or submitting a transaction.
|
|
275
|
+
6. **Chain submission is explicit.** Local planning artifacts should not imply live deployment or transaction submission. A real chain workflow needs explicit operator action, key handling, fee policy, confirmation semantics, and irreversible public-data warnings.
|
|
276
|
+
7. **Nullifiers over vague deletion claims.** Revocation should create a verifier rule for Enigma-controlled capabilities, not a claim that every downstream model or provider erased state.
|
|
277
|
+
8. **Settlement references, not private invoices.** If settlement uses a chain rail, it should reference proof roots and public-safe job refs rather than private commercial terms or customer data.
|
|
278
|
+
|
|
279
|
+
This spec posture turns category design into engineering discipline. The marketable promise is not “trust us.” It is “inspect the controller boundary, verify the artifact, and keep the memory private.”
|
|
280
|
+
|
|
281
|
+
## Market wedge
|
|
282
|
+
|
|
283
|
+
The wedge is not a general-purpose chain product. The wedge is the painful gap between durable AI memory and trustworthy control.
|
|
284
|
+
|
|
285
|
+
Users feel the problem as trapped memory: each assistant remembers differently, exports are awkward, and switching tools means losing context.
|
|
286
|
+
|
|
287
|
+
Developers feel the problem as repeated infrastructure: every AI product needs storage, retrieval, import/export, permissions, deletion posture, receipts, and evaluation evidence.
|
|
288
|
+
|
|
289
|
+
Enterprises feel the problem as risk: memory can become an ungoverned copy of customer facts, employee knowledge, regulated context, and decision history.
|
|
290
|
+
|
|
291
|
+
The crypto ecosystem feels the problem as credibility: chain-based AI claims often become either privacy failures or unverifiable narratives.
|
|
292
|
+
|
|
293
|
+
Enigma’s wedge cuts across those pains:
|
|
294
|
+
|
|
295
|
+
> Put the memory under owner control, expose it through connectors, prove bounded operations, and use Solana only where public roots or shared state add value.
|
|
296
|
+
|
|
297
|
+
## Category positioning
|
|
298
|
+
|
|
299
|
+
Enigma should avoid the crowded language of “AI memory app,” “RAG database,” or “crypto AI storage.” Those phrases undersell the control-plane problem.
|
|
300
|
+
|
|
301
|
+
The stronger category is:
|
|
302
|
+
|
|
303
|
+
> **Private AI Memory Controller**
|
|
304
|
+
|
|
305
|
+
Expanded:
|
|
306
|
+
|
|
307
|
+
> **Private memory infrastructure for AI systems, with public-safe proofs and optional Solana anchoring.**
|
|
308
|
+
|
|
309
|
+
This positioning separates Enigma from adjacent categories:
|
|
310
|
+
|
|
311
|
+
| Adjacent category | What it usually does | Enigma’s sharper position |
|
|
312
|
+
| --- | --- | --- |
|
|
313
|
+
| Chatbot memory | Saves preferences inside one product | Portable memory outside any one model or chatbot |
|
|
314
|
+
| Vector database | Retrieves similar records | Controls canonical memory lifecycle, permissions, receipts, and proofs |
|
|
315
|
+
| RAG framework | Injects context into prompts | Governs which memory may enter context and records declared boundary operations |
|
|
316
|
+
| Enterprise logging | Records operational events | Produces public-safe verifier artifacts without exposing private memory |
|
|
317
|
+
| Crypto storage | Publishes or coordinates data availability | Keeps raw memory off-chain and anchors only opaque roots, refs, or nullifiers |
|
|
318
|
+
| Benchmark leaderboard | Markets scores | Binds benchmark claims to scoped attestations and reproducibility metadata |
|
|
319
|
+
|
|
320
|
+
## Messaging spine
|
|
321
|
+
|
|
322
|
+
Use this sequence when explaining Enigma:
|
|
323
|
+
|
|
324
|
+
1. **AI work needs memory.** Prompt windows and provider-specific memories are not enough for durable, cross-client AI work.
|
|
325
|
+
2. **Memory needs an owner.** The canonical memory record should be local or customer-controlled, not trapped in one model account.
|
|
326
|
+
3. **Memory needs a controller.** Search is not enough; memory needs lifecycle, permission, context, export, revocation, and governance semantics.
|
|
327
|
+
4. **Memory needs proof.** Teams need receipts and attestations for what Enigma controlled or mediated, without disclosing the private memory.
|
|
328
|
+
5. **Blockchain is optional infrastructure.** Solana can anchor roots, refs, grants, revocations, and attestations, but raw memory stays off-chain.
|
|
329
|
+
|
|
330
|
+
## Claim-safe category lines
|
|
331
|
+
|
|
332
|
+
Primary line:
|
|
333
|
+
|
|
334
|
+
> Enigma is the private Memory Controller for AI.
|
|
335
|
+
|
|
336
|
+
Expanded line:
|
|
337
|
+
|
|
338
|
+
> Enigma gives AI systems a private, portable memory layer governed by the owner and backed by public-safe proof artifacts.
|
|
339
|
+
|
|
340
|
+
Developer line:
|
|
341
|
+
|
|
342
|
+
> Add durable AI memory, connector access, receipts, and verifier artifacts without building a memory control plane from scratch.
|
|
343
|
+
|
|
344
|
+
Enterprise line:
|
|
345
|
+
|
|
346
|
+
> Govern AI memory before it crosses model, app, or workflow boundaries.
|
|
347
|
+
|
|
348
|
+
Proof line:
|
|
349
|
+
|
|
350
|
+
> Verify Enigma-controlled memory operations with hashes, roots, refs, counts, timestamps, and signatures instead of private content.
|
|
351
|
+
|
|
352
|
+
Solana line:
|
|
353
|
+
|
|
354
|
+
> Use Solana as an optional public rail for opaque proof roots and permission refs, not as a place to store memory.
|
|
355
|
+
|
|
356
|
+
Boundary line:
|
|
357
|
+
|
|
358
|
+
> Enigma proves Enigma-controlled memory state and declared boundary operations; it does not prove closed-provider deletion, model forgetting, compliance certification, benchmark superiority, ROI, token value, or investment outcomes.
|
|
359
|
+
|
|
360
|
+
## Language to avoid
|
|
361
|
+
|
|
362
|
+
Avoid claims that make the category less credible:
|
|
363
|
+
|
|
364
|
+
- “Enigma stores AI memory on-chain.”
|
|
365
|
+
- “Encrypted private memory belongs on-chain.”
|
|
366
|
+
- “Enigma proves a model forgot.”
|
|
367
|
+
- “Enigma proves every provider deleted user data.”
|
|
368
|
+
- “Enigma guarantees compliance.”
|
|
369
|
+
- “Enigma guarantees benchmark superiority.”
|
|
370
|
+
- “Enigma guarantees ROI, savings, token value, valuation, or investment upside.”
|
|
371
|
+
- “Solana is required for Enigma to work.”
|
|
372
|
+
- “The blockchain is the memory layer.”
|
|
373
|
+
|
|
374
|
+
Use bounded replacements:
|
|
375
|
+
|
|
376
|
+
- “Enigma keeps raw memory private and can publish public-safe commitments.”
|
|
377
|
+
- “Enigma proves Enigma-controlled lifecycle and boundary operations.”
|
|
378
|
+
- “Benchmark claims should be tied to dataset refs, runner refs, package refs, config refs, report hashes, and verifier status.”
|
|
379
|
+
- “Solana anchoring is optional and root-only.”
|
|
380
|
+
- “The Memory Controller is the product; the chain is an optional proof rail.”
|
|
381
|
+
|
|
382
|
+
## Final narrative
|
|
383
|
+
|
|
384
|
+
AI systems are moving from one-off conversations to persistent work. Persistent work needs memory. But memory cannot remain a scattered chatbot feature if it contains identity, preferences, permissions, project state, enterprise knowledge, and long-running workflow context.
|
|
385
|
+
|
|
386
|
+
The market needs a new layer: a private Memory Controller for AI.
|
|
387
|
+
|
|
388
|
+
Like the controller inside an SSD, this layer makes fragile underlying storage usable. It manages lifecycle, interfaces, integrity, policy, portability, and verification so every AI app does not have to reinvent memory custody from scratch.
|
|
389
|
+
|
|
390
|
+
Enigma should own that layer.
|
|
391
|
+
|
|
392
|
+
Models can change. Apps can change. Providers can change. The user’s or customer’s memory should remain portable, governed, and verifiable under declared boundaries.
|
|
393
|
+
|
|
394
|
+
Proof makes that promise credible. Enigma can emit public-safe artifacts that show what was committed, granted, revoked, benchmarked, or packaged without publishing the private memory behind those operations.
|
|
395
|
+
|
|
396
|
+
Blockchain fits when public anchoring is useful. Solana can carry hashes, roots, refs, grants, revocations, nullifiers, and settlement references. It should not carry raw memory. The chain is a public clock and proof rail; the private Memory Controller is the product.
|
|
397
|
+
|
|
398
|
+
That is the category: private memory infrastructure for AI systems, governed by owners, usable across clients, verified by public-safe proofs, and optionally anchored through Solana without putting memory on-chain.
|