@deeeed/metamask-harness 0.20.0 → 0.22.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 +22 -0
- package/adapters/core/inject.sh +1 -3
- package/adapters/extension/inject.mjs +1 -1
- package/adapters/mobile/inject.sh +1 -1
- package/dist/adapters/extension/ensure-ready.js +44 -15
- package/dist/cli-commands.js +1 -0
- package/dist/cli.js +2 -0
- package/dist/command-contract.js +57 -0
- package/dist/commands/call.js +1 -1
- package/dist/commands/execution-template.js +28 -0
- package/dist/commands/manifest.js +15 -21
- package/dist/commands/run-engine.js +17 -8
- package/dist/library-provenance.js +33 -0
- package/dist/manifest.js +85 -101
- package/dist/mm-harness-cli.js +35 -1
- package/dist/runner.js +9 -4
- package/docs/RECIPES.md +2 -11
- package/library/actions/extension/ui/navigate.mjs +16 -6
- package/library/manifests/core.action-manifest.json +316 -501
- package/library/manifests/extension.action-manifest.json +609 -920
- package/library/manifests/mobile.action-manifest.json +630 -954
- package/package.json +4 -4
- package/scripts/completions.sh +2 -1
- package/library/library.json +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeeed/metamask-harness",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mm-harness": "bin/mm-harness"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"check:syntax": "find . -name '*.mjs' -print0 | xargs -0 -n1 node --check"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@farmslot/agent-runtime": "^0.
|
|
22
|
+
"@farmslot/agent-runtime": "^0.4.0",
|
|
23
23
|
"@farmslot/handoff": "^0.3.1",
|
|
24
|
-
"@farmslot/protocol": "^0.
|
|
25
|
-
"@farmslot/recipe-harness": "^0.
|
|
24
|
+
"@farmslot/protocol": "^0.13.0",
|
|
25
|
+
"@farmslot/recipe-harness": "^0.10.0",
|
|
26
26
|
"commander": "^12.0.0",
|
|
27
27
|
"es-module-lexer": "2.3.1",
|
|
28
28
|
"esbuild": "0.28.1",
|
package/scripts/completions.sh
CHANGED
|
@@ -29,7 +29,7 @@ _mmh_bin() {
|
|
|
29
29
|
return 1
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
_mmh_commands="launch stop logs debug fixtures actions call run doctor check checklist recipe-quality install verify cleanup completions"
|
|
32
|
+
_mmh_commands="launch stop logs debug fixtures actions call run doctor check checklist execution-template recipe-quality install verify cleanup completions"
|
|
33
33
|
|
|
34
34
|
# Per-command flags (static, from the mm-harness surface).
|
|
35
35
|
_mmh_flags_for() {
|
|
@@ -40,6 +40,7 @@ _mmh_flags_for() {
|
|
|
40
40
|
debug) printf '%s' "--worker --dev-menu --adapter --target --json" ;;
|
|
41
41
|
fixtures) printf '%s' "--from --dev --force --fixture --adapter --target --json" ;;
|
|
42
42
|
checklist) printf '%s' "" ;;
|
|
43
|
+
execution-template) printf '%s' "--dir --domain-dir --project-worker --project-name --package-templates --package-id --flow --run-mode --platform --domain --id --provenance --include-shadowed --no-include-shadowed --title --force --json" ;;
|
|
43
44
|
actions) printf '%s' "--adapter --action --kind --raw --action-manifest --target --json" ;;
|
|
44
45
|
call) printf '%s' "--list --arg --adapter --target --artifacts-dir --action-manifest --heal --json" ;;
|
|
45
46
|
run) printf '%s' "--list --describe --plan --adapter --artifacts-dir --target --library --cdp-port --heal --record-video --json" ;;
|
package/library/library.json
DELETED