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.
Files changed (58) hide show
  1. package/README.md +8 -0
  2. package/apps/cli/bin/enigma.mjs +362 -10
  3. package/deploy/SIMULATION.md +152 -0
  4. package/deploy/docker-compose.local-production-simulation.yml +237 -0
  5. package/deploy/docker-compose.production.example.yml +19 -0
  6. package/deploy/kms-mock.mjs +64 -0
  7. package/deploy/nginx.local-production-simulation.conf +33 -0
  8. package/deploy/siem-mock.mjs +50 -0
  9. package/docs/benchmark-attestation-network.md +488 -0
  10. package/docs/benchmark-reproducibility.md +19 -2
  11. package/docs/blockchain-only-mechanisms.md +388 -0
  12. package/docs/client-connectors.md +512 -0
  13. package/docs/demo-proof-network.md +275 -0
  14. package/docs/developer-ecosystem.md +47 -4
  15. package/docs/developer-proof-quickstart.md +325 -0
  16. package/docs/enigma-memory-ready-conformance.md +376 -0
  17. package/docs/enterprise-proof-control-plane.md +365 -0
  18. package/docs/install-anywhere.md +517 -0
  19. package/docs/market-category-narrative.md +398 -0
  20. package/docs/memory-drive-health-model.md +649 -0
  21. package/docs/memory-drive-strategy.md +458 -0
  22. package/docs/memory-passport-standard.md +445 -0
  23. package/docs/novelty-invention-candidates.md +161 -0
  24. package/docs/privacy-ledger-model.md +229 -0
  25. package/docs/proof-network-build-notes.md +240 -0
  26. package/docs/proof-network-claim-boundaries.md +318 -0
  27. package/docs/proof-network-dashboard-spec.md +773 -0
  28. package/docs/proof-network-glossary.md +27 -0
  29. package/docs/proof-network-launch-plan.md +421 -0
  30. package/docs/proof-network-operator-protocol.md +432 -0
  31. package/docs/proof-network-roadmap.md +431 -0
  32. package/docs/proof-network-test-plan.md +216 -0
  33. package/docs/proof-network-threat-model.md +373 -0
  34. package/docs/proof-network.md +257 -0
  35. package/docs/sdk-api.md +132 -10
  36. package/docs/solana-devnet-acceptance.md +226 -0
  37. package/docs/solana-proof-rail.md +453 -0
  38. package/examples/ci/github-actions.yml +6 -3
  39. package/examples/proof-network-anchor.json +37 -0
  40. package/examples/proof-network-attestation.json +35 -0
  41. package/examples/proof-network-grant.json +27 -0
  42. package/examples/proof-network-packet.json +71 -0
  43. package/package.json +42 -3
  44. package/packages/mcp-server/src/index.js +1 -1
  45. package/packages/proof-network/src/index.js +570 -0
  46. package/scripts/build-hosted-api-key-lifecycle.mjs +1 -1
  47. package/scripts/build-hosted-customer-lifecycle.mjs +1 -1
  48. package/scripts/build-installer-assets.mjs +1 -1
  49. package/scripts/build-proof-network-packet.mjs +213 -0
  50. package/scripts/run-standard-memory-benchmarks.mjs +1 -1
  51. package/scripts/simulate-production-env.mjs +210 -0
  52. package/scripts/verify-registry-install.mjs +1 -0
  53. package/scripts/wait-for-backend-ready.mjs +101 -0
  54. package/specs/goal-completion-audit-v1.schema.json +1 -0
  55. package/specs/proof-network-anchor-batch-v1.schema.json +125 -0
  56. package/specs/proof-network-benchmark-attestation-v1.schema.json +103 -0
  57. package/specs/proof-network-capability-grant-v1.schema.json +132 -0
  58. package/specs/proof-network-packet-v1.schema.json +171 -0
@@ -0,0 +1,27 @@
1
+ # Proof Network glossary
2
+
3
+ Concise definitions for Enigma's privacy-preserving proof layer. Proof Network artifacts carry public-safe hashes, Merkle roots, references, counts, timestamps, scopes, and signatures; they must not contain raw memory, prompts, transcripts, completions, embeddings, tenant names, private keys, API keys, seed phrases, or provider responses.
4
+
5
+ ## Terms
6
+
7
+ - **Memory Passport** — A portable, user- or customer-controlled memory container that can move across supported assistants and tools while preserving Enigma receipt references for custody, lifecycle, and boundary events.
8
+
9
+ - **Active root** — The current public-safe commitment to the memory state Enigma is willing to serve. It is a hash or Merkle root over eligible memory records or derived references, not the memory contents themselves.
10
+
11
+ - **Receipt log root** — A public-safe commitment to an ordered receipt log. It lets verifiers detect whether a lifecycle or boundary receipt belongs to a declared log without exposing receipt bodies that may contain sensitive operational detail.
12
+
13
+ - **Anchor batch** — A Solana-ready local planning artifact that groups one or more public roots and references into a single opaque payload for future anchoring. It records that no transaction was submitted and that raw memory is not placed on chain.
14
+
15
+ - **Capability grant** — A signed or signable artifact that gives a subject a narrow permission over a defined scope, time window, action set, or proof reference. It grants capability by public-safe identifiers and constraints, never by embedding private memory.
16
+
17
+ - **Nullifier** — A public-safe revocation or one-time-use marker derived from a grant, scope, or proof reference. Verifiers use it to recognize that a capability has been revoked or consumed without learning the underlying private material.
18
+
19
+ - **Benchmark attestation** — A proof artifact binding a benchmark result to public-safe inputs such as report hashes, dataset references, runner references, package references, metric summaries, and signatures. It proves what was attested, not that private benchmark data is public.
20
+
21
+ - **Context pack** — A minimized, task-specific bundle of approved memory references and retrieval evidence prepared for a model, tool, or agent. The proof layer commits to hashes and receipt references; raw context should stay outside public artifacts.
22
+
23
+ - **Derived artifact root** — A hash or Merkle root for an output derived from memory, such as an index, summary set, context pack, benchmark report, or export manifest. It proves integrity of the derived artifact while keeping source memory private.
24
+
25
+ - **Enigma Memory Drive** — The local-first Enigma workspace that acts like a durable drive for AI memory: it stores the canonical private memory state and emits public-safe proof artifacts for supported operations.
26
+
27
+ - **Proof rail** — The end-to-end path that carries public-safe proof data from local memory operations through verification artifacts and optional root anchoring. It is a proof and audit lane, not a raw-data replication lane.
@@ -0,0 +1,421 @@
1
+ # Proof Network launch plan
2
+
3
+ ## Purpose
4
+
5
+ Launch Enigma Proof Network as the private memory controller for AI: a local-first proof system that turns Enigma-mediated memory boundaries into public-safe receipts, capability grants, revocations, benchmark attestations, and proof packets. Solana is an optional proof, permission, and settlement rail for hashes, roots, nullifiers, refs, counts, timestamps, and signatures only; it is not a raw-memory store and the current public demo path must not claim live transaction submission.
6
+
7
+ This plan is for product, developer relations, docs, sales, and ecosystem launch work. It is not evidence of live hosted SaaS, live Solana deployment, provider deletion, model forgetting, compliance certification, benchmark superiority, customer ROI, token value, or settlement finality.
8
+
9
+ ## Launch thesis
10
+
11
+ AI memory needs a control plane before it needs another place to store text. The marketable wedge for Enigma is not "memory on-chain"; it is **proof-carrying AI memory**:
12
+
13
+ 1. Keep private memory in the private data plane.
14
+ 2. Generate public-safe proof artifacts for the boundaries Enigma controls.
15
+ 3. Let developers verify those artifacts locally.
16
+ 4. Let partners reference opaque roots and capability refs from optional public rails.
17
+ 5. Bind benchmark claims to attestable report hashes and dataset/runner/package refs instead of unsupported leaderboard copy.
18
+
19
+ Primary message:
20
+
21
+ > Enigma is the private memory controller for AI: local proof artifacts for memory receipts, scoped capabilities, revocations, and benchmark attestations, with optional Solana-ready roots and refs that never place raw memory on-chain.
22
+
23
+ Short launch line:
24
+
25
+ > Proof-carrying AI memory. Public roots, private memory.
26
+
27
+ ## Audience map
28
+
29
+ | Audience | Problem they care about | Message | Launch CTA | Best asset |
30
+ | --- | --- | --- | --- | --- |
31
+ | AI application developers | Need a credible memory layer they can test without credentials or hosted setup. | Run a local test drive, generate proof artifacts, and verify them offline. | `npx --yes --package enigma-memory enigma test-drive --overwrite` | Five-command CLI walkthrough. |
32
+ | Agent framework maintainers | Need portable memory semantics across clients and tools. | Enigma can wrap agent memory with receipts, scoped grants, revocations, and proof packets. | Build against public-safe artifact schemas and refs. | Grant/revoke integration diagram. |
33
+ | Solana builders | Need a blockchain-specific AI primitive that does not leak user data. | Anchor opaque roots and capability refs; never publish prompts, transcripts, embeddings, ACL bodies, tenant names, or raw memory. | Prototype against Solana-ready anchor batches as planning artifacts. | Private data plane / public proof rail diagram. |
34
+ | Benchmark researchers | Need reproducible evidence without publishing private benchmark bodies. | Benchmark attestations bind report hashes to dataset, runner, package, environment, and verifier refs. | Create an attestation from a report hash and verify it locally. | Benchmark attestation packet. |
35
+ | Enterprise platform teams | Need memory control evidence without plaintext sprawl. | Enigma emits evidence for Enigma-controlled memory boundaries and keeps public artifacts minimized. | Review a proof packet and claim-boundary checklist. | Security review brief. |
36
+ | CISOs, legal, and compliance reviewers | Need clear limits on what is proven. | Proof artifacts support review workflows but do not certify compliance, prove provider deletion, or prove model forgetting. | Use the approved claims matrix before publishing or buying. | Claim-boundary one-pager. |
37
+ | Wallet, identity, and payment partners | Need capability and settlement references that do not expose private data. | Grants, nullifiers, and settlement refs can point to public-safe capability/accounting artifacts. | Explore partner flows with synthetic refs only. | Partner capability-flow mock. |
38
+
39
+ ## Message architecture
40
+
41
+ ### Pillar 1: Private memory controller
42
+
43
+ Say:
44
+
45
+ - Enigma helps control which memory is selected, exported, granted, revoked, attested, and verified inside the Enigma boundary.
46
+ - Proof artifacts are designed to carry hashes, roots, refs, counts, scopes, timestamps, signatures, validation status, and explicit safety flags.
47
+ - Local verification is useful before hosted verification or chain anchoring exists.
48
+
49
+ Do not say:
50
+
51
+ - Enigma controls every provider log, backup, cache, or model weight.
52
+ - Enigma proves a memory statement is true in the real world.
53
+ - Enigma guarantees permanent erasure from third-party systems.
54
+
55
+ ### Pillar 2: Blockchain-specific value without blockchain data leakage
56
+
57
+ Say:
58
+
59
+ - Solana can be an optional public rail for compact roots, capability refs, revocation nullifiers, benchmark report commitments, and settlement refs.
60
+ - Local anchor artifacts are Solana-ready planning payloads when they include public-safe roots/refs and `transaction_submitted:false`.
61
+ - Raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, private keys, seed phrases, API keys, and provider responses must never appear on-chain or in public proof examples.
62
+
63
+ Do not say:
64
+
65
+ - Enigma has submitted, finalized, settled, minted, staked, or paid unless separate approved transaction evidence exists.
66
+ - Enigma stores AI memory on-chain.
67
+ - Public hashes are automatically anonymous or safe in every legal context.
68
+
69
+ ### Pillar 3: Permission and revocation as proof artifacts
70
+
71
+ Say:
72
+
73
+ - Capability grants can describe scoped access using public-safe subject refs, resource refs, capability names, expiry, signer refs, and policy hashes.
74
+ - Revocations can use nullifier-style artifacts that tell verifiers to stop accepting a prior grant or scope.
75
+ - A grant or revocation artifact is evidence about the public-safe ref boundary, not about private ACL bodies or third-party enforcement.
76
+
77
+ Do not say:
78
+
79
+ - Public grants expose full ACLs.
80
+ - Revocation proves provider deletion or model forgetting.
81
+ - A local revocation guarantees every downstream system has enforced it.
82
+
83
+ ### Pillar 4: Benchmark claims with receipts
84
+
85
+ Say:
86
+
87
+ - Benchmark attestations bind report hashes to dataset refs, runner refs, package refs, environment refs, and review metadata.
88
+ - A numeric benchmark claim must cite the exact report/ref, runner, dataset/ref, package/ref, metric, and scope.
89
+ - The launch can demonstrate claim binding without claiming Enigma is best, fastest, more accurate, lower cost, or ROI-positive.
90
+
91
+ Do not say:
92
+
93
+ - A single local report proves universal performance.
94
+ - Retrieval/evidence proxy scores are LLM answer accuracy.
95
+ - Benchmark attestations prove hosted SaaS readiness, provider deletion, model forgetting, compliance, or customer savings.
96
+
97
+ ## Launch sequence
98
+
99
+ ### Phase 0: Claims and artifact freeze
100
+
101
+ Owner: product marketing with engineering, security, and docs review.
102
+
103
+ Actions:
104
+
105
+ 1. Select the exact launch headline and one-sentence product definition.
106
+ 2. Freeze the public-safe artifact vocabulary: anchor batch, capability grant, capability revocation, benchmark attestation, proof packet, verifier result.
107
+ 3. Freeze the prohibited language list: no live hosted SaaS, no live Solana submission, no provider deletion proof, no model forgetting proof, no compliance certification, no ROI, no benchmark superiority, no raw memory on-chain.
108
+ 4. Approve one canonical public-safety sentence for every asset: "Proof artifacts carry hashes, roots, refs, counts, scopes, timestamps, signatures, and validation status; they do not carry raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, secrets, or provider responses."
109
+ 5. Prepare synthetic hashes and refs for screenshots and examples.
110
+
111
+ Exit criteria:
112
+
113
+ - Every planned launch asset has a named artifact, a named audience, and a claim boundary.
114
+ - No asset depends on live chain, live hosted SaaS, external provider calls, private customer data, or raw benchmark bodies.
115
+
116
+ ### Phase 1: Developer test-drive reveal
117
+
118
+ Owner: developer relations.
119
+
120
+ Actions:
121
+
122
+ 1. Publish the test-drive CTA as the first developer step:
123
+
124
+ ```sh
125
+ npx --yes --package enigma-memory enigma test-drive \
126
+ --out-dir .enigma/proof-network/test-drive \
127
+ --overwrite
128
+ ```
129
+
130
+ 2. Explain that the command is local-only, zero-credential, and bounded to Enigma-controlled demo artifacts.
131
+ 3. Show the next local proof commands as the proof-network arc:
132
+
133
+ ```sh
134
+ npx --yes --package enigma-memory enigma chain anchor \
135
+ --root sha256:1111111111111111111111111111111111111111111111111111111111111111 \
136
+ --ref npm-test-drive:bundle-root:v1 \
137
+ --ref npm-test-drive:receipt-root:v1 \
138
+ --out .enigma/proof-network/anchor-batch.json
139
+
140
+ npx --yes --package enigma-memory enigma chain verify \
141
+ --file .enigma/proof-network/anchor-batch.json
142
+ ```
143
+
144
+ 4. Keep `transaction_submitted:false` and `raw_memory_on_chain:false` visible in every anchor screenshot.
145
+ 5. Route users from the install page to the proof overview, demo script, claim boundaries, and benchmark attestation docs.
146
+
147
+ Exit criteria:
148
+
149
+ - A developer can understand the category in under two minutes: run local test drive, create a proof artifact, verify it, and understand what it does not prove.
150
+ - Screenshots and JSON snippets contain only synthetic public-safe refs and hashes.
151
+
152
+ ### Phase 2: Proof Network narrative launch
153
+
154
+ Owner: product marketing.
155
+
156
+ Actions:
157
+
158
+ 1. Publish the launch blog with this structure:
159
+ - the AI memory control problem;
160
+ - private data plane vs public proof plane;
161
+ - artifact families;
162
+ - local test-drive path;
163
+ - optional Solana proof rail;
164
+ - allowed and prohibited claims;
165
+ - partner call to action.
166
+ 2. Release a 90-second terminal demo that shows install/test-drive, anchor, benchmark attestation, verification, and packet recap.
167
+ 3. Publish social clips around one message each:
168
+ - "Anchor trust, not transcripts.";
169
+ - "Grant capabilities without publishing ACLs.";
170
+ - "Attest benchmark claims without raw benchmark bodies.";
171
+ - "Verify locally before trusting a dashboard.".
172
+ 4. Use the same visual grammar everywhere: private memory core, proof artifact ring, optional public rail.
173
+
174
+ Exit criteria:
175
+
176
+ - Launch copy explains blockchain value without implying raw-memory publication or live transaction submission.
177
+ - Every asset includes a "what this does not prove" note.
178
+
179
+ ### Phase 3: Ecosystem activation
180
+
181
+ Owner: partnerships and developer relations.
182
+
183
+ Actions:
184
+
185
+ 1. Invite Solana, wallet, identity, benchmark, and agent-framework builders to review public-safe artifact shapes.
186
+ 2. Offer three integration prompts:
187
+ - verify a proof packet locally;
188
+ - reference a capability grant or revocation by public-safe ref;
189
+ - bind a benchmark claim to an attestation.
190
+ 3. Publish partner-safe example flows using synthetic refs only.
191
+ 4. Collect questions around PDA seeds, authority refs, nullifiers, settlement refs, verifier API shape, and conformance requirements.
192
+ 5. Convert repeated questions into docs issues or FAQ entries, not unsupported roadmap promises.
193
+
194
+ Exit criteria:
195
+
196
+ - Partners understand that Solana is optional infrastructure for roots/refs and not a requirement for local proof value.
197
+ - No partner material implies live payment rails, production settlement, live mainnet anchoring, or token economics.
198
+
199
+ ### Phase 4: Enterprise trust motion
200
+
201
+ Owner: sales engineering with security and product marketing.
202
+
203
+ Actions:
204
+
205
+ 1. Package an enterprise proof packet walkthrough: anchor batch, grant, revocation, benchmark attestation, verifier result, and claim-boundary matrix.
206
+ 2. Lead with evidence minimization, not compliance certification.
207
+ 3. Use a buyer checklist that asks:
208
+ - what artifact is being reviewed;
209
+ - what exact fields are public;
210
+ - what private fields are excluded;
211
+ - what local verifier checked;
212
+ - what remains outside Enigma's boundary.
213
+ 4. Treat all customer-specific language as private until separately reviewed and approved.
214
+
215
+ Exit criteria:
216
+
217
+ - Enterprise reviewers can separate Enigma-controlled artifact evidence from provider behavior, hosted operations, legal compliance, and business outcomes.
218
+
219
+ ## Demo asset plan
220
+
221
+ | Asset | Audience | Contents | Must show | Must not show |
222
+ | --- | --- | --- | --- | --- |
223
+ | 90-second terminal demo | Developers, Solana builders | install/test-drive, anchor, attest, verify, packet recap | `transaction_submitted:false`, `raw_memory_on_chain:false`, synthetic refs | Provider dashboards, real secrets, real customer data, explorer claims. |
224
+ | Five-command CLI page | Developers | `test-drive`, `chain anchor`, `chain grant`, `chain revoke`, `chain attest`, `chain verify` | Local-only wording and public-safe output snippets | Raw memory text, prompts, completions, embeddings, tenant names. |
225
+ | Architecture graphic | All audiences | private data plane -> proof artifacts -> optional Solana rail | Hashes, roots, refs, nullifiers, report hashes | "Memory on-chain" or full-document proof payloads. |
226
+ | Capability flow mock | Wallets, agent frameworks, enterprises | grant, verifier, revocation/nullifier | scoped subject/resource refs and expiry | Private ACL bodies or real identity claims. |
227
+ | Benchmark attestation packet | Benchmark researchers | report hash, dataset ref, runner ref, package ref, verifier result | Exact scope of any metric mentioned | "Best," "fastest," "more accurate," ROI, raw benchmark rows. |
228
+ | Claim-boundary one-pager | Sales, enterprise, press | allowed/conditional/prohibited claims | local proof vs chain vs hosted vs provider boundaries | Any claim without an evidence ref. |
229
+ | Solana proof rail explainer | Crypto ecosystem | root batch, PDA concept, optional settlement refs | opaque commitments only | Live mainnet, token, staking, yield, finality, or payment claims without evidence. |
230
+
231
+ ## NPM test-drive hook
232
+
233
+ The npm hook is the public conversion path: every developer-facing launch asset should point to a local command before asking for integrations, credentials, wallets, hosted accounts, or partner calls.
234
+
235
+ Primary command:
236
+
237
+ ```sh
238
+ npx --yes --package enigma-memory enigma test-drive --overwrite
239
+ ```
240
+
241
+ Proof-network demo variant:
242
+
243
+ ```sh
244
+ npx --yes --package enigma-memory enigma test-drive \
245
+ --out-dir .enigma/proof-network/test-drive \
246
+ --overwrite
247
+ ```
248
+
249
+ Required copy beside the command:
250
+
251
+ - Runs locally and does not require provider API keys, cloud credentials, hosted Enigma accounts, wallets, npm tokens, or package registry accounts.
252
+ - Writes an isolated demo directory and emits a public-safe JSON summary.
253
+ - Demonstrates Enigma-controlled local vault state, receipts, checkpoints, committed roots, exported bundle shape, and declared boundary operations.
254
+ - Does not contact hosted Enigma SaaS, submit Solana transactions, prove provider deletion, prove model forgetting, certify compliance, or prove customer ROI.
255
+
256
+ Post-test-drive call to action:
257
+
258
+ 1. Create a Solana-ready local anchor batch from synthetic or generated public-safe roots.
259
+ 2. Create a scoped capability grant using public-safe refs.
260
+ 3. Create a revocation/nullifier artifact for a grant ref.
261
+ 4. Create a benchmark attestation from a report hash or reviewed report file.
262
+ 5. Verify each artifact locally and attach only public-safe JSON to issues, demos, or partner conversations.
263
+
264
+ ## Docs sequence
265
+
266
+ Publish and link docs in this order so readers learn the safety boundary before the ecosystem story:
267
+
268
+ 1. **Install and test-drive**: zero-credential local command, expected files, and safety boundaries.
269
+ 2. **Proof Network overview**: artifact families, local verifier, Solana role, and what it is not.
270
+ 3. **Demo scripts**: safe terminal paths for anchor, grant, revoke, attest, and verify.
271
+ 4. **Claim boundaries**: mandatory allowed/conditional/prohibited language for public copy.
272
+ 5. **Benchmark attestation**: how report hashes, dataset refs, runner refs, package refs, and metrics refs support scoped benchmark claims.
273
+ 6. **Solana proof rail**: optional roots/refs/nullifiers/settlement refs, planning vs submission states, and no raw memory on-chain.
274
+ 7. **Conformance and schemas**: artifact identifiers, public-safe fields, fixture expectations, and verifier behavior.
275
+ 8. **Enterprise control plane**: evidence minimization, review workflow, and non-claims around compliance/provider deletion/model forgetting.
276
+ 9. **FAQ**: repeat the top objections in plain language: why blockchain, what is public, what is private, what local verification proves, what remains unproven.
277
+
278
+ Every page should include a small boundary block:
279
+
280
+ ```text
281
+ Proof Network artifacts are public-safe commitments and refs. They do not publish raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, secrets, provider responses, or private benchmark bodies. Local chain commands prepare and verify JSON artifacts; they do not submit transactions unless a separate command and evidence explicitly say so.
282
+ ```
283
+
284
+ ## Allowed proof and benchmark claims
285
+
286
+ | Claim type | Allowed launch wording | Required evidence or condition | Disallowed shortcut |
287
+ | --- | --- | --- | --- |
288
+ | Local proof artifacts | Enigma can generate local proof-network JSON artifacts for anchors, grants, revocations, benchmark attestations, and packets. | Command output or documented artifact example. | "Enigma proves every memory event is true." |
289
+ | Privacy boundary | Artifacts are designed to contain hashes, roots, refs, counts, timestamps, scopes, signatures, and validation status instead of raw memory. | Artifact fields and private-payload review. | "Hashes make all private data anonymous." |
290
+ | Solana readiness | Enigma can prepare Solana-ready anchor batches from public-safe roots and refs. | Artifact includes safe roots/refs plus `transaction_submitted:false` and `raw_memory_on_chain:false`. | "Anchored on Solana" without transaction evidence. |
291
+ | Grant/revocation | Enigma can create scoped grant and revocation/nullifier artifacts. | Public-safe subject/resource/capability refs and verifier result. | "Access was revoked everywhere" without enforcement evidence. |
292
+ | Benchmark attestation | Enigma can bind a benchmark report hash to dataset, runner, package, environment, and metric refs. | Exact report/ref, runner, dataset/ref, package/ref, metric, and scope. | "Best," "leading," "faster," or "more accurate" without approved comparative evidence. |
293
+ | Verification | The verifier can validate supported artifact shape and private-payload boundaries. | Local verifier output for the named artifact. | "Verification proves provider deletion, model forgetting, hosted readiness, or legal compliance." |
294
+
295
+ ## Feedback loops
296
+
297
+ ### Developer loop
298
+
299
+ Channels: GitHub issues, npm install/test-drive friction, docs page feedback, CLI copy questions.
300
+
301
+ Questions to ask:
302
+
303
+ 1. Did the user understand why the test drive needs no credentials?
304
+ 2. Could they create and verify a local proof artifact without reading the whole docs set?
305
+ 3. Did any command output make them think a transaction was submitted?
306
+ 4. Which field names or refs were confusing?
307
+ 5. Did private-payload rejection teach the boundary clearly?
308
+
309
+ Action rule: turn repeated confusion into CLI help/docs copy changes before adding new features.
310
+
311
+ ### Solana ecosystem loop
312
+
313
+ Channels: builder calls, hackathon feedback, wallet/identity/payment partner reviews.
314
+
315
+ Questions to ask:
316
+
317
+ 1. Which proof refs would a Solana program, wallet, or indexer need?
318
+ 2. Are PDA seeds and account refs public-safe and compact?
319
+ 3. Which settlement refs are useful without implying live payments?
320
+ 4. What evidence would be required before anyone can say "anchored" or "finalized"?
321
+
322
+ Action rule: collect protocol feedback as spec questions; do not convert it into live-chain claims until implementation and transaction evidence exist.
323
+
324
+ ### Benchmark loop
325
+
326
+ Channels: benchmark researchers, third-party runner maintainers, reproducibility reviews.
327
+
328
+ Questions to ask:
329
+
330
+ 1. Can a third party reproduce the attestation from the report hash and public-safe refs?
331
+ 2. Is the metric scope narrow enough to avoid universal claims?
332
+ 3. Are private prompts, completions, provider responses, and raw dataset rows excluded from public artifacts?
333
+ 4. Does the attestation invite verification rather than asserting superiority?
334
+
335
+ Action rule: publish scoped benchmark examples; hold comparative claims until fixed methodology, pinned versions, and approved evidence exist.
336
+
337
+ ### Enterprise loop
338
+
339
+ Channels: sales engineering reviews, security questionnaires, legal/compliance calls.
340
+
341
+ Questions to ask:
342
+
343
+ 1. Did the reviewer understand what Enigma controls and what providers control?
344
+ 2. Did the proof packet reduce plaintext disclosure in the review process?
345
+ 3. Which claim boundaries require clearer wording?
346
+ 4. What additional evidence would be needed for a customer-specific deployment or control claim?
347
+
348
+ Action rule: keep enterprise feedback tied to evidence requirements, not broad promises.
349
+
350
+ ## Launch package and channel plan
351
+
352
+ The launch should ship as one coordinated package, not as scattered claims. Each channel gets a specific job and a safety boundary.
353
+
354
+ | Channel | Job | Asset to ship | CTA | Safety boundary |
355
+ | --- | --- | --- | --- | --- |
356
+ | NPM / install docs | Convert curiosity into a local proof trial. | Test-drive command block, expected output fields, next proof commands. | Run `npx --yes --package enigma-memory enigma test-drive --overwrite`. | No credentials, hosted account, wallet, provider call, or transaction claim. |
357
+ | README / developer docs | Teach the artifact model. | Artifact family table, five-command walkthrough, verifier notes. | Generate and verify one local artifact. | Local verification checks shape and privacy boundaries, not real-world truth. |
358
+ | Launch blog | Create the category. | Private data plane / public proof plane narrative. | Try the local test drive and read claim boundaries. | Solana is optional root/ref infrastructure, not raw-memory storage. |
359
+ | Short demo video | Make the product tangible. | 90-second terminal path from test-drive to verify. | Install, test-drive, verify. | Show `transaction_submitted:false` and `raw_memory_on_chain:false`. |
360
+ | Solana ecosystem post | Explain blockchain-specific value. | Opaque roots, capability refs, nullifiers, benchmark commitments, settlement refs. | Review anchor-batch and grant/revocation artifacts. | No live mainnet, token, staking, yield, or finality language without evidence. |
361
+ | Benchmark note | Build technical credibility. | Attestation example tied to report hash and refs. | Create a scoped benchmark attestation. | No leaderboard or comparative claim without approved methodology. |
362
+ | Enterprise brief | Reduce buyer risk. | Proof packet review flow and claims matrix. | Ask for a proof packet walkthrough. | Not a compliance certification, provider deletion proof, or model forgetting proof. |
363
+
364
+ ## Two-week launch calendar
365
+
366
+ | Day | Work | Output | Go/no-go check |
367
+ | --- | --- | --- | --- |
368
+ | -10 | Claims review | Final approved message, prohibited-claim list, synthetic demo refs. | All launch copy distinguishes local artifacts from hosted/chain/provider behavior. |
369
+ | -8 | Demo rehearsal | Terminal recording script, screenshot list, fallback snippets. | No raw memory, local paths with usernames, secrets, provider responses, or fake transaction IDs appear. |
370
+ | -6 | Docs staging | Install, proof overview, demo, claim boundaries, benchmark attestation, and Solana proof rail links. | A new reader reaches the test-drive before any advanced integration ask. |
371
+ | -4 | Partner preview | Solana, benchmark, wallet/identity, and agent-framework review packet. | Feedback is recorded as questions or docs fixes, not converted into unsupported promises. |
372
+ | -2 | Sales enablement | Enterprise one-pager, FAQ answers, demo talk track. | Every buyer-facing claim has an artifact, evidence ref, or explicit condition. |
373
+ | 0 | Public launch | Blog, README/docs update, demo video, social clips, partner outreach. | Launch assets contain the same product definition and boundary block. |
374
+ | +2 | Developer triage | Issue labels for install, proof artifact, verifier, privacy rejection, docs confusion. | Repeated confusion is assigned to docs/CLI copy owners. |
375
+ | +7 | Feedback synthesis | Public-safe launch learning memo. | The memo contains no raw user memory, tenant names, prompts, transcripts, completions, provider responses, or secrets. |
376
+
377
+ ## Asset acceptance checklist
378
+
379
+ Before an asset is publishable, the owner must answer these questions in writing inside the review ticket or launch checklist:
380
+
381
+ 1. What exact artifact family does the asset mention: anchor batch, capability grant, capability revocation, benchmark attestation, proof packet, or verifier result?
382
+ 2. What command, schema, report hash, package ref, runner ref, dataset ref, or example field supports the claim?
383
+ 3. Does the asset say whether the artifact is local-only, Solana-ready, devnet-submitted, or live-submitted? If there is no approved transaction evidence, it must say local-only or planning.
384
+ 4. Does the asset avoid raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, private keys, API keys, seed phrases, provider responses, local usernames, and private benchmark bodies?
385
+ 5. Does the asset avoid unsupported claims about hosted SaaS, compliance, provider deletion, model forgetting, ROI, settlement finality, token economics, or benchmark leadership?
386
+ 6. Is the call to action concrete enough for the audience to take the next safe step?
387
+
388
+ ## Objection handling
389
+
390
+ | Objection | Safe response | Follow-up asset |
391
+ | --- | --- | --- |
392
+ | "Why blockchain?" | Public rails can make opaque proof roots, capability refs, nullifiers, benchmark commitments, and settlement refs discoverable without exposing memory. | Solana proof rail explainer. |
393
+ | "Is memory on-chain?" | No. Launch examples must show roots/refs/counts/signatures only and `raw_memory_on_chain:false`. | Architecture graphic and claim-boundary one-pager. |
394
+ | "Does this prove deletion?" | It can represent Enigma-controlled revocation or deletion-request boundaries when instrumented; it does not prove provider deletion or model forgetting. | FAQ and enterprise brief. |
395
+ | "Can I test it without credentials?" | Yes. Start with the npm test-drive, which is local-only and zero-credential. | Install/test-drive page. |
396
+ | "Can benchmarks prove Enigma is best?" | Benchmark attestations bind scoped report evidence; superiority claims require separate comparative methodology and approval. | Benchmark attestation packet. |
397
+ | "Is hosted SaaS live?" | Do not claim live hosted service unless separate deployment, auth, support, legal, monitoring, and go-live evidence exists. | Claim-boundary matrix. |
398
+
399
+ ## Operating checklist before launch
400
+
401
+ - The homepage, README, docs, demo script, sales deck, and social posts all use the same product definition.
402
+ - Every public artifact example uses synthetic public-safe roots, refs, counts, scopes, signatures, and timestamps.
403
+ - Every chain-related screenshot visibly shows local/planning status unless actual approved transaction evidence exists.
404
+ - Every benchmark number is scoped to an exact report/ref and avoids broad comparison language unless approved evidence exists.
405
+ - Every enterprise asset states that Proof Network is not a compliance certification, provider deletion proof, model forgetting proof, hosted SaaS evidence, or ROI guarantee.
406
+ - Every CTA sends developers to the npm test-drive before advanced integration steps.
407
+ - Every feedback channel has an owner and a rule for converting repeated confusion into docs, examples, or product copy.
408
+
409
+ ## Launch success indicators
410
+
411
+ Use qualitative and artifact-based indicators rather than unsupported business-outcome claims:
412
+
413
+ - Developers complete the local test-drive and can explain the public-safe artifact boundary.
414
+ - Builders create or inspect anchor, grant, revocation, attestation, or packet artifacts without including private payloads.
415
+ - Solana ecosystem readers describe Enigma as optional proof/permission/settlement rails for roots and refs, not raw memory storage.
416
+ - Benchmark readers cite exact report hashes, dataset refs, runner refs, package refs, and metric scopes.
417
+ - Enterprise reviewers ask for proof packets and claim-boundary matrices instead of raw transcripts or broad compliance promises.
418
+
419
+ ## Final launch rule
420
+
421
+ The strongest launch claim is the narrow one: Enigma creates and verifies public-safe proof artifacts for Enigma-controlled AI memory boundaries. Everything else—hosted service operation, live chain submission, provider deletion, model forgetting, compliance, benchmark superiority, payments, ROI, or settlement finality—requires separate evidence and separate approval before it appears in public copy.