@deeeed/metamask-harness 0.34.3 → 0.35.0
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/CHANGELOG.md +21 -0
- package/adapters/core/inject.sh +3 -3
- package/adapters/extension/inject.mjs +3 -4
- package/adapters/mobile/inject.sh +4 -3
- package/adapters/mobile/verify.sh +37 -0
- package/dist/adapters/extension/runtime.js +60 -15
- package/dist/adapters/extension/surface.js +6 -1
- package/dist/adapters/mobile/source-freshness.js +51 -14
- package/dist/adapters/mobile/surface.js +6 -1
- package/dist/doctor.js +30 -1
- package/package.json +1 -1
- package/scripts/site-contrast.mjs +38 -11
- package/site/architecture.html +14 -7
- package/site/assets/metamask-fox.svg +24 -0
- package/site/assets/progress.mjs +52 -1
- package/site/assets/style.css +152 -25
- package/site/cheatsheet.html +5 -6
- package/site/ecosystem.html +162 -0
- package/site/how-it-works.html +8 -9
- package/site/index.html +104 -39
- package/site/perps.html +103 -45
- package/site/recipes.html +5 -6
- package/site/reviewers.html +5 -6
- package/site/tutorials/index.html +5 -6
- package/site/tutorials/v1.html +5 -6
- package/site/tutorials/v2.html +6 -8
- package/site/tutorials/v3.html +5 -6
- package/site/tutorials/v4.html +5 -6
- package/site/tutorials/v5.html +5 -6
- package/site/tutorials/v6.html +5 -6
- package/site/tutorials/v7.html +5 -6
package/site/tutorials/v2.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V2 — Reading the evidence</title>
|
|
7
7
|
<meta name="description" content="Walk one finished run file by file, and learn the two rules that make a green verdict worth believing.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v2">
|
|
11
12
|
<a class="skip" href="#steps">Skip to the checklist</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -63,8 +62,7 @@
|
|
|
63
62
|
<div class="note plain">
|
|
64
63
|
<span class="note-title">This page and the reviewer's guide</span>
|
|
65
64
|
<p>
|
|
66
|
-
This is the tour: what each file is for, in the order you open them.
|
|
67
|
-
<a href="../reviewers.html">For Reviewers</a> is the reference — a real bundle annotated line by line,
|
|
65
|
+
This is the tour: what each file is for, in the order you open them. is the reference — a real bundle annotated line by line,
|
|
68
66
|
including a screenshot that passed while recording that its capture had degraded. Read this first,
|
|
69
67
|
keep that one open during a review.
|
|
70
68
|
</p>
|
|
@@ -204,6 +202,6 @@
|
|
|
204
202
|
</div>
|
|
205
203
|
</footer>
|
|
206
204
|
|
|
207
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
205
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
208
206
|
</body>
|
|
209
207
|
</html>
|
package/site/tutorials/v3.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V3 — Skills and your team's library</title>
|
|
7
7
|
<meta name="description" content="Install the agentic skills into a checkout and declare your team's recipe library, with the perps library as the worked example.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v3">
|
|
11
12
|
<a class="skip" href="#steps">Skip to the checklist</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -254,6 +253,6 @@ Inspect: mm-harness run <recipe> --describe
|
|
|
254
253
|
</div>
|
|
255
254
|
</footer>
|
|
256
255
|
|
|
257
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
256
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
258
257
|
</body>
|
|
259
258
|
</html>
|
package/site/tutorials/v4.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V4 — Cook a recipe from an acceptance criterion</title>
|
|
7
7
|
<meta name="description" content="Turn one acceptance criterion into a proof with the recipe-cook skill: discover, author, validate, run.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v4">
|
|
11
12
|
<a class="skip" href="#steps">Skip to the checklist</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -192,6 +191,6 @@
|
|
|
192
191
|
</div>
|
|
193
192
|
</footer>
|
|
194
193
|
|
|
195
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
194
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
196
195
|
</body>
|
|
197
196
|
</html>
|
package/site/tutorials/v5.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V5 — PR QA review from one link</title>
|
|
7
7
|
<meta name="description" content="Give the review skill one pull request URL and get a per-criterion verdict table backed by on-device evidence.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v5">
|
|
11
12
|
<a class="skip" href="#flow">Skip to the flow</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -160,6 +159,6 @@
|
|
|
160
159
|
</div>
|
|
161
160
|
</footer>
|
|
162
161
|
|
|
163
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
162
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
164
163
|
</body>
|
|
165
164
|
</html>
|
package/site/tutorials/v6.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V6 — Release validation</title>
|
|
7
7
|
<meta name="description" content="Validate one team's changes on a frozen release candidate, with a four-verdict vocabulary that includes NOT RUN.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v6">
|
|
11
12
|
<a class="skip" href="#flow">Skip to the flow</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -162,6 +161,6 @@
|
|
|
162
161
|
</div>
|
|
163
162
|
</footer>
|
|
164
163
|
|
|
165
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
164
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
166
165
|
</body>
|
|
167
166
|
</html>
|
package/site/tutorials/v7.html
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>V7 — A ticket end to end</title>
|
|
7
7
|
<meta name="description" content="One real ticket from assignment to a pull request that carries proof, and what the reviewer sees.">
|
|
8
|
-
<link rel="
|
|
8
|
+
<link rel="icon" href="../assets/metamask-fox.svg" type="image/svg+xml">
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css?v=4">
|
|
9
10
|
</head>
|
|
10
11
|
<body data-progress-page="v7">
|
|
11
12
|
<a class="skip" href="#steps">Skip to the checklist</a>
|
|
@@ -13,18 +14,16 @@
|
|
|
13
14
|
<header class="topbar">
|
|
14
15
|
<div class="wrap topbar-inner">
|
|
15
16
|
<a class="brand" href="../index.html">
|
|
16
|
-
<
|
|
17
|
+
<img class="brand-mark" src="../assets/metamask-fox.svg" alt="" width="22" height="22">
|
|
17
18
|
<span class="brand-name">recipes</span>
|
|
18
19
|
</a>
|
|
19
20
|
<nav class="nav" aria-label="Main">
|
|
20
21
|
<a class="nav-cta" href="../index.html#prompt">Quick start</a>
|
|
21
22
|
<a href="../how-it-works.html">How it works</a>
|
|
22
|
-
<a href="../
|
|
23
|
-
<a href="../perps.html">Perps</a>
|
|
23
|
+
<a href="../perps.html">Team / Perps</a>
|
|
24
24
|
<a href="../cheatsheet.html">Cheatsheet</a>
|
|
25
25
|
<a href="../architecture.html">Architecture</a>
|
|
26
26
|
<a href="index.html" aria-current="page">Tutorials</a>
|
|
27
|
-
<a href="../reviewers.html">For Reviewers</a>
|
|
28
27
|
</nav>
|
|
29
28
|
</div>
|
|
30
29
|
</header>
|
|
@@ -181,6 +180,6 @@
|
|
|
181
180
|
</div>
|
|
182
181
|
</footer>
|
|
183
182
|
|
|
184
|
-
<script type="module" src="../assets/progress.mjs"></script>
|
|
183
|
+
<script type="module" src="../assets/progress.mjs?v=4"></script>
|
|
185
184
|
</body>
|
|
186
185
|
</html>
|