@deeeed/metamask-harness 0.34.2 → 0.34.3

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 (34) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/adapters.js +5 -2
  3. package/dist/recipe-security.js +1 -0
  4. package/library/actions/core/perps/_controller.mjs +75 -23
  5. package/library/actions/core/perps/read_account.mjs +6 -12
  6. package/library/actions/core/perps/read_snapshot.mjs +66 -0
  7. package/library/actions/extension/performance/_navigation-memory.mjs +372 -0
  8. package/library/actions/extension/performance/compare_idle_navigation_memory.mjs +18 -0
  9. package/library/actions/extension/performance/measure_detached_dom.mjs +18 -0
  10. package/library/actions/extension/performance/measure_navigation_memory.mjs +18 -0
  11. package/library/actions/mobile/app/network-control.mjs +24 -12
  12. package/library/manifests/core.action-manifest.json +55 -0
  13. package/library/manifests/extension.action-manifest.json +100 -0
  14. package/library/recipes/core/perps/snapshot.recipe.json +25 -0
  15. package/library/recipes/extension/performance/navigation-memory.recipe.json +175 -0
  16. package/package.json +1 -1
  17. package/scripts/site-contrast.mjs +39 -3
  18. package/site/architecture.html +22 -16
  19. package/site/assets/progress.mjs +1 -1
  20. package/site/assets/style.css +113 -1
  21. package/site/cheatsheet.html +14 -12
  22. package/site/how-it-works.html +693 -0
  23. package/site/index.html +70 -640
  24. package/site/perps.html +7 -6
  25. package/site/recipes.html +23 -17
  26. package/site/reviewers.html +7 -6
  27. package/site/tutorials/index.html +7 -6
  28. package/site/tutorials/v1.html +12 -11
  29. package/site/tutorials/v2.html +7 -6
  30. package/site/tutorials/v3.html +15 -11
  31. package/site/tutorials/v4.html +6 -5
  32. package/site/tutorials/v5.html +6 -5
  33. package/site/tutorials/v6.html +6 -5
  34. package/site/tutorials/v7.html +6 -5
package/site/perps.html CHANGED
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="index.html">Start Here</a>
21
- <a href="recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="index.html#prompt">Quick start</a>
21
+ <a href="how-it-works.html">How it works</a>
22
+ <a href="recipes.html">Recipe anatomy</a>
22
23
  <a href="perps.html" aria-current="page">Perps</a>
23
24
  <a href="cheatsheet.html">Cheatsheet</a>
24
25
  <a href="architecture.html">Architecture</a>
@@ -108,7 +109,7 @@
108
109
  <section class="wrap">
109
110
  <h2>Your first live proof</h2>
110
111
  <p>
111
- Complete <a href="index.html#steps">Start Here</a> first so the app, device, and wallet fixture are
112
+ Complete <a href="how-it-works.html#steps">the walkthrough</a> first so the app, device, and wallet fixture are
112
113
  ready. Then use a read-only recipe as the first proof.
113
114
  </p>
114
115
 
@@ -186,8 +187,8 @@
186
187
 
187
188
  <footer class="footer">
188
189
  <div class="wrap">
189
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
190
- <p>Verified against mm-harness 0.33+ and the shared MetaMask Perps recipe library.</p>
190
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
191
+ <p>Written against the shared MetaMask Perps recipe library. Sample output moves between releases; trust your terminal over this page.</p>
191
192
  </div>
192
193
  </footer>
193
194
  <script type="module" src="assets/progress.mjs"></script>
package/site/recipes.html CHANGED
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="index.html">Start Here</a>
21
- <a href="recipes.html" aria-current="page">Recipes</a>
20
+ <a class="nav-cta" href="index.html#prompt">Quick start</a>
21
+ <a href="how-it-works.html">How it works</a>
22
+ <a href="recipes.html" aria-current="page">Recipe anatomy</a>
22
23
  <a href="perps.html">Perps</a>
23
24
  <a href="cheatsheet.html">Cheatsheet</a>
24
25
  <a href="architecture.html">Architecture</a>
@@ -30,10 +31,10 @@
30
31
 
31
32
  <main>
32
33
  <section class="wrap hero" style="padding-bottom:1rem">
33
- <span class="eyebrow">The central idea</span>
34
+ <span class="eyebrow">The trust mechanism</span>
34
35
  <h1>What is a recipe?</h1>
35
36
  <p class="lede">
36
- A recipe turns "I checked, it works" into something a reviewer can verify without trusting you
37
+ A recipe turns "I checked, it works" into something proved on a device as the change is made
37
38
  and something that objects later if the behaviour breaks.
38
39
  </p>
39
40
  </section>
@@ -67,16 +68,17 @@
67
68
  worth authoring rather than checking by hand: the check survives the task.
68
69
  </p>
69
70
  <p>
70
- <strong>Trust.</strong> Proven, self-checked, and still proving. Review reads evidence rather than
71
- extending credit, and every gate stays yours to steer.
71
+ <strong>Trust.</strong> Proven, self-checked, and still proving so the change is trustworthy
72
+ while it is being built. Everything downstream, review included, inherits that, and every gate
73
+ stays yours to steer.
72
74
  </p>
73
75
  </section>
74
76
 
75
77
  <section class="wrap">
76
78
  <h2 id="anatomy">The anatomy of a real one</h2>
77
79
  <p>
78
- <code>perps.lifecycle</code> ships with the harness. Abridged here — the full graph has eighteen
79
- nodes — but nothing is invented; read it all with
80
+ <code>perps.lifecycle</code> ships with the harness. Abridged here — the full graph runs the whole
81
+ lifecycle, clean state through teardown — but nothing is invented; read it all with
80
82
  <code>mm-harness run perps.lifecycle --describe</code>.
81
83
  </p>
82
84
 
@@ -108,8 +110,10 @@
108
110
  "market": "ETH",
109
111
  "state": "none",
110
112
  "intent": "Confirm ETH position state is clean",
111
- "next": "place-order"
113
+ "next": "assert-clean-orders"
112
114
  },
115
+ <span class="dim">… assert clean orders …</span>
116
+
113
117
  "place-order": {
114
118
  "action": "metamask.perps.place_order",
115
119
  "market": "ETH", "side": "long",
@@ -244,9 +248,11 @@
244
248
  </div>
245
249
 
246
250
  <p>
247
- <code>assert_positions</code> takes <code>expect_count</code>; <code>assert_orders</code> can also
248
- assert a matching order's trigger price, execution mode, and reduce-only flag. Reach for the most
249
- specific assertion the surface supports a vague one passes for the wrong reasons.
251
+ On Core, <code>assert_positions</code> and <code>assert_orders</code> take
252
+ <code>expect_count</code>; the Extension and Mobile manifests do not declare it, and a recipe that
253
+ passes it there fails validation with exit 5. <code>assert_orders</code> can also assert a matching
254
+ order's trigger price, execution mode, and reduce-only flag. Reach for the most specific assertion
255
+ the surface supports — a vague one passes for the wrong reasons.
250
256
  </p>
251
257
  </section>
252
258
 
@@ -349,7 +355,7 @@
349
355
  <tr>
350
356
  <td>Presence check where a count belongs</td>
351
357
  <td>Still true when the bug fires the event twice, or leaves two positions open.</td>
352
- <td>Use <code>exact</code> / <code>expect_count</code>.</td>
358
+ <td>Use <code>exact</code>; on Core, <code>expect_count</code>.</td>
353
359
  </tr>
354
360
  <tr>
355
361
  <td>No starting-state assertion</td>
@@ -399,7 +405,7 @@
399
405
  </div>
400
406
 
401
407
  <div class="btn-row">
402
- <a class="btn btn-primary" href="index.html#steps">Run your first recipe →</a>
408
+ <a class="btn btn-primary" href="how-it-works.html#steps">Run your first recipe →</a>
403
409
  <a class="btn btn-ghost" href="reviewers.html">Read the evidence it produces</a>
404
410
  <a class="btn btn-ghost" href="architecture.html">Where skills fit</a>
405
411
  </div>
@@ -408,8 +414,8 @@
408
414
 
409
415
  <footer class="footer">
410
416
  <div class="wrap">
411
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
412
- <p>Verified against mm-harness 0.33+. The annotated recipe is a bundled library recipe, abridged.</p>
417
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
418
+ <p>The annotated recipe is a bundled library recipe, abridged. Sample output moves between releases; trust your terminal over this page.</p>
413
419
  </div>
414
420
  </footer>
415
421
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="index.html">Start Here</a>
21
- <a href="recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="index.html#prompt">Quick start</a>
21
+ <a href="how-it-works.html">How it works</a>
22
+ <a href="recipes.html">Recipe anatomy</a>
22
23
  <a href="perps.html">Perps</a>
23
24
  <a href="cheatsheet.html">Cheatsheet</a>
24
25
  <a href="architecture.html">Architecture</a>
@@ -357,7 +358,7 @@ Nodes: 6/6 passed
357
358
 
358
359
  <hr class="sep">
359
360
  <div class="btn-row">
360
- <a class="btn btn-primary" href="index.html#steps">Produce your own bundle →</a>
361
+ <a class="btn btn-primary" href="how-it-works.html#steps">Produce your own bundle →</a>
361
362
  <a class="btn btn-ghost" href="architecture.html">How the pieces fit</a>
362
363
  </div>
363
364
  </section>
@@ -365,8 +366,8 @@ Nodes: 6/6 passed
365
366
 
366
367
  <footer class="footer">
367
368
  <div class="wrap">
368
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
369
- <p>Verified against mm-harness 0.33+. Example bundle is a real run with identifying values redacted.</p>
369
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
370
+ <p>Example bundle is a real run with identifying values redacted. Sample output moves between releases; trust your terminal over this page.</p>
370
371
  </div>
371
372
  </footer>
372
373
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap-wide topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -164,15 +165,15 @@
164
165
 
165
166
  <div class="btn-row">
166
167
  <a class="btn btn-primary" href="v1.html">Start with V1 →</a>
167
- <a class="btn btn-ghost" href="../index.html#steps">Or the Start Here walkthrough</a>
168
+ <a class="btn btn-ghost" href="../how-it-works.html#steps">Or the full walkthrough</a>
168
169
  </div>
169
170
  </section>
170
171
  </main>
171
172
 
172
173
  <footer class="footer">
173
174
  <div class="wrap-wide">
174
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
175
- <p>Verified against mm-harness 0.33+.</p>
175
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
176
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
176
177
  </div>
177
178
  </footer>
178
179
 
@@ -4,7 +4,7 @@
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
6
  <title>V1 — Getting started with recipes</title>
7
- <meta name="description" content="Video one of the series: one CLI drives the wallet and proves what happened. With the same checklist as Start Here.">
7
+ <meta name="description" content="Video one of the series: one CLI drives the wallet and proves what happened. With the same checklist as the How it works walkthrough.">
8
8
  <link rel="stylesheet" href="../assets/style.css">
9
9
  </head>
10
10
  <body data-progress-page="start">
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -48,7 +49,7 @@
48
49
  </p>
49
50
  <div class="hero-meta">
50
51
  <span>no prerequisites</span>
51
- <span>checklist shared with Start Here</span>
52
+ <span>checklist shared with How it works</span>
52
53
  </div>
53
54
  </section>
54
55
 
@@ -65,8 +66,8 @@
65
66
  <p>
66
67
  Same eight steps, same commands, same expected output — it is genuinely useful before the
67
68
  recording exists, which is why it is here rather than a "coming soon" page. Your progress is
68
- shared with <a href="../index.html">Start Here</a>: tick a step in either place and it is ticked
69
- in both. Start Here carries the longer explanations and the full "if it fails" notes for each
69
+ shared with <a href="../how-it-works.html">How it works</a>: tick a step in either place and it is ticked
70
+ in both. How it works carries the longer explanations and the full "if it fails" notes for each
70
71
  step.
71
72
  </p>
72
73
  </div>
@@ -104,7 +105,7 @@
104
105
  <p class="step-why">Install globally, confirm it resolved, then work from inside a product checkout.</p>
105
106
  <div class="cmd"><pre><code><span class="p">$ </span>npm i -g @deeeed/metamask-harness@latest
106
107
  <span class="p">$ </span>mm-harness --version</code></pre></div>
107
- <div class="out">0.33.x <span class="dim">— any 0.33 or newer</span></div>
108
+ <div class="out">0.34.x <span class="dim">— any 0.34 or newer</span></div>
108
109
  </li>
109
110
 
110
111
  <li class="step" data-step="doctor">
@@ -193,7 +194,7 @@
193
194
 
194
195
  <hr class="sep">
195
196
  <div class="btn-row">
196
- <a class="btn btn-primary" href="../index.html#steps">Full walkthrough, with failure notes →</a>
197
+ <a class="btn btn-primary" href="../how-it-works.html#steps">Full walkthrough, with failure notes →</a>
197
198
  <a class="btn btn-ghost" href="../cheatsheet.html">The cheatsheet</a>
198
199
  <a class="btn btn-ghost" href="index.html">Back to the series</a>
199
200
  </div>
@@ -202,8 +203,8 @@
202
203
 
203
204
  <footer class="footer">
204
205
  <div class="wrap">
205
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
206
- <p>Verified against mm-harness 0.33+.</p>
206
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
207
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
207
208
  </div>
208
209
  </footer>
209
210
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -116,7 +117,7 @@
116
117
 
117
118
  <section class="wrap">
118
119
  <h2 id="steps">Follow along</h2>
119
- <p>Use a bundle you produced in <a href="../index.html#steps">Start Here</a>, or any run directory.</p>
120
+ <p>Use a bundle you produced in <a href="../how-it-works.html#steps">the walkthrough</a>, or any run directory.</p>
120
121
 
121
122
  <ol class="steps">
122
123
  <li class="step" data-step="open">
@@ -198,8 +199,8 @@
198
199
 
199
200
  <footer class="footer">
200
201
  <div class="wrap">
201
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
202
- <p>Verified against mm-harness 0.33+.</p>
202
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
203
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
203
204
  </div>
204
205
  </footer>
205
206
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -47,7 +48,7 @@
47
48
  that carries the recipes. Both install into a checkout.
48
49
  </p>
49
50
  <div class="hero-meta">
50
- <span>prerequisite: <a href="../index.html#steps">Start Here</a></span>
51
+ <span>prerequisite: <a href="../how-it-works.html#steps">the walkthrough</a></span>
51
52
  <span>worked example: the perps library</span>
52
53
  </div>
53
54
  </section>
@@ -111,10 +112,12 @@ then prove one real recipe runs end to end.
111
112
  assume an `export` survives between tool shells.
112
113
  5. Run `mm-harness status`. If the app is not ready, follow its public `Next:`
113
114
  command while preserving the same device UUID or serial used during setup.
114
- 6. Choose only a recipe actually printed by step 4. Prefer
115
- `perps.open-market` on Extension/Mobile or `perps.snapshot-market` on Core.
116
- If that shared recipe has no variant for this checkout, use the listed bundled
117
- `wallet.smoke` (Extension/Mobile) or `runner.smoke` (Core) recipe.
115
+ 6. Choose only a recipe actually printed by step 4 for THIS checkout — the
116
+ `[perps]` set differs per adapter, so do not copy a name from the docs.
117
+ `perps.snapshot-market` is a good non-mutating pick on Core;
118
+ `perps.open-market` is its Extension/Mobile counterpart. If neither is in
119
+ your list, use the bundled `wallet.smoke` (Extension/Mobile) or
120
+ `runner.smoke` (Core).
118
121
  7. Run the chosen recipe with `--describe`, then `--plan`, then for real with
119
122
  `--artifacts-dir ./first-team-recipe-artifacts`. Include
120
123
  `--library "perps=$HOME/shared-library/metamask-recipe-perps"` each time.
@@ -199,7 +202,8 @@ Inspect: mm-harness run &lt;recipe&gt; --describe
199
202
  runner.smoke <span class="dim">[metamask]</span> variant=core — Proves the headless Core runner…</div>
200
203
  <p class="step-why">
201
204
  The tag is the proof: <code>[perps]</code> came from your library, <code>[metamask]</code> ships
202
- with the harness. No tags from your library means it was not loaded.
205
+ with the harness. No tags from your library means it was not loaded. This example is a Core
206
+ checkout; Extension and Mobile print their own variants, so work from your list, not this one.
203
207
  </p>
204
208
  <details class="fail">
205
209
  <summary>If it fails</summary>
@@ -245,8 +249,8 @@ Inspect: mm-harness run &lt;recipe&gt; --describe
245
249
 
246
250
  <footer class="footer">
247
251
  <div class="wrap">
248
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
249
- <p>Verified against mm-harness 0.33+.</p>
252
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
253
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
250
254
  </div>
251
255
  </footer>
252
256
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -186,8 +187,8 @@
186
187
 
187
188
  <footer class="footer">
188
189
  <div class="wrap">
189
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
190
- <p>Verified against mm-harness 0.33+.</p>
190
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
191
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
191
192
  </div>
192
193
  </footer>
193
194
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -154,8 +155,8 @@
154
155
 
155
156
  <footer class="footer">
156
157
  <div class="wrap">
157
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
158
- <p>Verified against mm-harness 0.33+.</p>
158
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
159
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
159
160
  </div>
160
161
  </footer>
161
162
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -156,8 +157,8 @@
156
157
 
157
158
  <footer class="footer">
158
159
  <div class="wrap">
159
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
160
- <p>Verified against mm-harness 0.33+.</p>
160
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
161
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
161
162
  </div>
162
163
  </footer>
163
164
 
@@ -14,11 +14,12 @@
14
14
  <div class="wrap topbar-inner">
15
15
  <a class="brand" href="../index.html">
16
16
  <span class="brand-mark" aria-hidden="true"></span>
17
- <span class="brand-name">mm-harness</span>
17
+ <span class="brand-name">recipes</span>
18
18
  </a>
19
19
  <nav class="nav" aria-label="Main">
20
- <a href="../index.html">Start Here</a>
21
- <a href="../recipes.html">Recipes</a>
20
+ <a class="nav-cta" href="../index.html#prompt">Quick start</a>
21
+ <a href="../how-it-works.html">How it works</a>
22
+ <a href="../recipes.html">Recipe anatomy</a>
22
23
  <a href="../perps.html">Perps</a>
23
24
  <a href="../cheatsheet.html">Cheatsheet</a>
24
25
  <a href="../architecture.html">Architecture</a>
@@ -175,8 +176,8 @@
175
176
 
176
177
  <footer class="footer">
177
178
  <div class="wrap">
178
- <p>Internal getting-started guide for the MetaMask agentic coding workflow. Not official MetaMask product documentation.</p>
179
- <p>Verified against mm-harness 0.33+.</p>
179
+ <p>Internal getting-started guide for proving MetaMask changes with recipes. Not official MetaMask product documentation.</p>
180
+ <p>Sample output moves between releases; trust your terminal over this page.</p>
180
181
  </div>
181
182
  </footer>
182
183