unbrowse 9.9.0-preview.3 → 9.9.1
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/package.json +1 -1
- package/runtime/cli.js +679 -46
- package/runtime/mcp.js +36 -4
- package/vendor/kuri/darwin-arm64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/darwin-x64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/linux-arm64/libkuri_ffi.so +0 -0
- package/vendor/kuri/linux-x64/kuri +0 -0
- package/vendor/kuri/linux-x64/libkuri_ffi.so +0 -0
- package/vendor/kuri/manifest.json +7 -7
- package/vendor/kuri/win-x64/kuri.exe +0 -0
package/package.json
CHANGED
package/runtime/cli.js
CHANGED
|
@@ -1751,6 +1751,632 @@ var init_kuri_proxy_bridge = __esm(() => {
|
|
|
1751
1751
|
trackedForwarders = new Set;
|
|
1752
1752
|
});
|
|
1753
1753
|
|
|
1754
|
+
// .tmp-runtime-src/cli-v7/kind-map.ts
|
|
1755
|
+
function flatVerbMap() {
|
|
1756
|
+
if (_flatVerbMap)
|
|
1757
|
+
return _flatVerbMap;
|
|
1758
|
+
const m = new Map;
|
|
1759
|
+
for (const e of KIND_MAP) {
|
|
1760
|
+
const parts = e.subcommand.split(" ");
|
|
1761
|
+
if (parts.length !== 2)
|
|
1762
|
+
continue;
|
|
1763
|
+
if (!m.has(parts[1]))
|
|
1764
|
+
m.set(parts[1], e.verb);
|
|
1765
|
+
}
|
|
1766
|
+
for (const [k, v] of Object.entries(FLAT_VERB_OVERRIDES))
|
|
1767
|
+
m.set(k, v);
|
|
1768
|
+
return _flatVerbMap = m;
|
|
1769
|
+
}
|
|
1770
|
+
function flatCommandVerb(name) {
|
|
1771
|
+
if (!name || name.includes(" "))
|
|
1772
|
+
return null;
|
|
1773
|
+
if (name === "build" || name === "act" || name === "eval")
|
|
1774
|
+
return null;
|
|
1775
|
+
return flatVerbMap().get(name) ?? null;
|
|
1776
|
+
}
|
|
1777
|
+
var KIND_MAP, FLAT_VERB_OVERRIDES, _flatVerbMap = null;
|
|
1778
|
+
var init_kind_map = __esm(() => {
|
|
1779
|
+
KIND_MAP = [
|
|
1780
|
+
{
|
|
1781
|
+
subcommand: "build skill",
|
|
1782
|
+
verb: "build",
|
|
1783
|
+
op_kind: "build:skill",
|
|
1784
|
+
op_class: "build",
|
|
1785
|
+
action: "skill",
|
|
1786
|
+
mcp_tool: "unbrowse_build_skill",
|
|
1787
|
+
summary: "Register a captured skill manifest (sequence of endpoints + selectors)."
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
subcommand: "build template",
|
|
1791
|
+
verb: "build",
|
|
1792
|
+
op_kind: "build:template",
|
|
1793
|
+
op_class: "build",
|
|
1794
|
+
action: "template",
|
|
1795
|
+
mcp_tool: "unbrowse_build_template",
|
|
1796
|
+
summary: "Declare a reusable fill/exec template binding selectors to value pointers."
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
subcommand: "build value-source",
|
|
1800
|
+
verb: "build",
|
|
1801
|
+
op_kind: "build:value-source",
|
|
1802
|
+
op_class: "build",
|
|
1803
|
+
action: "value-source",
|
|
1804
|
+
mcp_tool: null,
|
|
1805
|
+
summary: "Register a vault item (one-time write to keychain/op/bw); local-only."
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
subcommand: "build index",
|
|
1809
|
+
verb: "build",
|
|
1810
|
+
op_kind: "build:index",
|
|
1811
|
+
op_class: "build",
|
|
1812
|
+
action: "index",
|
|
1813
|
+
mcp_tool: "unbrowse_build_index",
|
|
1814
|
+
summary: "Index a target site's surface into the route cache from captured traffic."
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
subcommand: "build publish",
|
|
1818
|
+
verb: "build",
|
|
1819
|
+
op_kind: "build:publish",
|
|
1820
|
+
op_class: "build",
|
|
1821
|
+
action: "publish",
|
|
1822
|
+
mcp_tool: "unbrowse_build_publish",
|
|
1823
|
+
summary: "Publish a captured endpoint/skill to the marketplace route graph."
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
subcommand: "build publish-bundle",
|
|
1827
|
+
verb: "build",
|
|
1828
|
+
op_kind: "build:publish_bundle",
|
|
1829
|
+
op_class: "build",
|
|
1830
|
+
action: "publish_bundle",
|
|
1831
|
+
mcp_tool: "unbrowse_build_publish_bundle",
|
|
1832
|
+
summary: "Publish a bundle of captured composite endpoints as one marketplace artifact."
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
subcommand: "build annotate",
|
|
1836
|
+
verb: "build",
|
|
1837
|
+
op_kind: "build:annotate",
|
|
1838
|
+
op_class: "build",
|
|
1839
|
+
action: "annotate",
|
|
1840
|
+
mcp_tool: "unbrowse_build_annotate",
|
|
1841
|
+
summary: "Attach human-readable metadata/labels to a captured endpoint or skill."
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
subcommand: "build review",
|
|
1845
|
+
verb: "build",
|
|
1846
|
+
op_kind: "build:review",
|
|
1847
|
+
op_class: "build",
|
|
1848
|
+
action: "review",
|
|
1849
|
+
mcp_tool: "unbrowse_build_review",
|
|
1850
|
+
summary: "Review pending review-gated endpoints before they publish to the marketplace."
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
subcommand: "build skill-package",
|
|
1854
|
+
verb: "build",
|
|
1855
|
+
op_kind: "build:skill_package",
|
|
1856
|
+
op_class: "build",
|
|
1857
|
+
action: "skill_package",
|
|
1858
|
+
mcp_tool: "unbrowse_build_skill_package",
|
|
1859
|
+
summary: "Package a captured skill into a distributable, installable skill bundle."
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
subcommand: "build setup",
|
|
1863
|
+
verb: "build",
|
|
1864
|
+
op_kind: "build:setup",
|
|
1865
|
+
op_class: "build",
|
|
1866
|
+
action: "setup",
|
|
1867
|
+
mcp_tool: null,
|
|
1868
|
+
summary: "First-run setup: configure local config, payment rail, and contribution mode; local-only."
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
subcommand: "build register",
|
|
1872
|
+
verb: "build",
|
|
1873
|
+
op_kind: "build:register",
|
|
1874
|
+
op_class: "build",
|
|
1875
|
+
action: "register",
|
|
1876
|
+
mcp_tool: null,
|
|
1877
|
+
summary: "Register the agent identity/wallet with the marketplace; local-only."
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
subcommand: "build contribute",
|
|
1881
|
+
verb: "build",
|
|
1882
|
+
op_kind: "build:contribute",
|
|
1883
|
+
op_class: "build",
|
|
1884
|
+
action: "contribute",
|
|
1885
|
+
mcp_tool: null,
|
|
1886
|
+
summary: "Set the contribution preference governing whether captures auto-publish; local-only."
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
subcommand: "build cleanup-stale",
|
|
1890
|
+
verb: "build",
|
|
1891
|
+
op_kind: "build:cleanup_stale",
|
|
1892
|
+
op_class: "build",
|
|
1893
|
+
action: "cleanup_stale",
|
|
1894
|
+
mcp_tool: "unbrowse_build_cleanup_stale",
|
|
1895
|
+
summary: "Prune stale/expired captured endpoints from the local route cache."
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
subcommand: "act go",
|
|
1899
|
+
verb: "act",
|
|
1900
|
+
op_kind: "act:navigate",
|
|
1901
|
+
op_class: "actuate",
|
|
1902
|
+
action: "navigate",
|
|
1903
|
+
mcp_tool: "unbrowse_act_navigate",
|
|
1904
|
+
summary: "Navigate the current session to a URL."
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
subcommand: "act fill",
|
|
1908
|
+
verb: "act",
|
|
1909
|
+
op_kind: "act:fill",
|
|
1910
|
+
op_class: "actuate",
|
|
1911
|
+
action: "fill",
|
|
1912
|
+
mcp_tool: "unbrowse_act_fill",
|
|
1913
|
+
summary: "Dereference a value pointer and Input.insertText into the selector."
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
subcommand: "act fill-form",
|
|
1917
|
+
verb: "act",
|
|
1918
|
+
op_kind: "act:fill_form",
|
|
1919
|
+
op_class: "actuate",
|
|
1920
|
+
action: "fill_form",
|
|
1921
|
+
mcp_tool: "unbrowse_act_fill_form",
|
|
1922
|
+
summary: "End-to-end form fill: snap the form, enumerate candidates, populate per slot, resolve+inject every field."
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
subcommand: "act type",
|
|
1926
|
+
verb: "act",
|
|
1927
|
+
op_kind: "act:type",
|
|
1928
|
+
op_class: "actuate",
|
|
1929
|
+
action: "type",
|
|
1930
|
+
mcp_tool: "unbrowse_act_type",
|
|
1931
|
+
summary: "Dereference a value pointer and dispatch per-character key events."
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
subcommand: "act click",
|
|
1935
|
+
verb: "act",
|
|
1936
|
+
op_kind: "act:click",
|
|
1937
|
+
op_class: "actuate",
|
|
1938
|
+
action: "click",
|
|
1939
|
+
mcp_tool: "unbrowse_act_click",
|
|
1940
|
+
summary: "Compose Input.dispatchMouseEvent press+release on a selector."
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
subcommand: "act press",
|
|
1944
|
+
verb: "act",
|
|
1945
|
+
op_kind: "act:press",
|
|
1946
|
+
op_class: "actuate",
|
|
1947
|
+
action: "press",
|
|
1948
|
+
mcp_tool: "unbrowse_act_press",
|
|
1949
|
+
summary: "Dispatch a single Input.dispatchKeyEvent (with modifiers)."
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
subcommand: "act select",
|
|
1953
|
+
verb: "act",
|
|
1954
|
+
op_kind: "act:select",
|
|
1955
|
+
op_class: "actuate",
|
|
1956
|
+
action: "select",
|
|
1957
|
+
mcp_tool: "unbrowse_act_select",
|
|
1958
|
+
summary: "Set a <select> element's value (pointer-or-cleartext)."
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
subcommand: "act scroll",
|
|
1962
|
+
verb: "act",
|
|
1963
|
+
op_kind: "act:scroll",
|
|
1964
|
+
op_class: "actuate",
|
|
1965
|
+
action: "scroll",
|
|
1966
|
+
mcp_tool: "unbrowse_act_scroll",
|
|
1967
|
+
summary: "Scroll the page or a specific selector by (dx, dy) pixels."
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
subcommand: "act submit",
|
|
1971
|
+
verb: "act",
|
|
1972
|
+
op_kind: "act:submit",
|
|
1973
|
+
op_class: "actuate",
|
|
1974
|
+
action: "submit",
|
|
1975
|
+
mcp_tool: "unbrowse_act_submit",
|
|
1976
|
+
summary: "Submit a form (optionally targeted by selector)."
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
subcommand: "act execute",
|
|
1980
|
+
verb: "act",
|
|
1981
|
+
op_kind: "act:execute",
|
|
1982
|
+
op_class: "actuate",
|
|
1983
|
+
action: "execute",
|
|
1984
|
+
mcp_tool: "unbrowse_act_execute",
|
|
1985
|
+
summary: "Replay a captured endpoint with pointer-resolved headers + body."
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
subcommand: "act auth-capture",
|
|
1989
|
+
verb: "act",
|
|
1990
|
+
op_kind: "act:auth_capture",
|
|
1991
|
+
op_class: "actuate",
|
|
1992
|
+
action: "auth_capture",
|
|
1993
|
+
mcp_tool: "unbrowse_act_auth_capture",
|
|
1994
|
+
summary: "Interactive auth flow; on completion writes credential pointer to vault."
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
subcommand: "act proxy-rotate",
|
|
1998
|
+
verb: "act",
|
|
1999
|
+
op_kind: "act:proxy_rotate",
|
|
2000
|
+
op_class: "actuate",
|
|
2001
|
+
action: "proxy_rotate",
|
|
2002
|
+
mcp_tool: "unbrowse_act_proxy_rotate",
|
|
2003
|
+
summary: "Rotate the residential proxy session (iproyal sticky-IP refresh)."
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
subcommand: "act close",
|
|
2007
|
+
verb: "act",
|
|
2008
|
+
op_kind: "act:close",
|
|
2009
|
+
op_class: "actuate",
|
|
2010
|
+
action: "close",
|
|
2011
|
+
mcp_tool: "unbrowse_act_close",
|
|
2012
|
+
summary: "Close the current browse session; drain capture pipeline. DEPRECATED in v7.2.0-preview.0 — use 'act session-park' (KV-persisted)."
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
subcommand: "act session-park",
|
|
2016
|
+
verb: "act",
|
|
2017
|
+
op_kind: "act:session_park",
|
|
2018
|
+
op_class: "actuate",
|
|
2019
|
+
action: "session_park",
|
|
2020
|
+
mcp_tool: "unbrowse_act_session_park",
|
|
2021
|
+
summary: "Park the current browse session — same teardown as close + persists pointer-of-pointer chain to KV for later session-restore. v7.2.0-preview.0 KV path is inert; v7.3 wires real storage."
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
subcommand: "act session-restore",
|
|
2025
|
+
verb: "act",
|
|
2026
|
+
op_kind: "act:session_restore",
|
|
2027
|
+
op_class: "actuate",
|
|
2028
|
+
action: "session_restore",
|
|
2029
|
+
mcp_tool: "unbrowse_act_session_restore",
|
|
2030
|
+
summary: "Restore a previously parked session — KV read, wallet-signed challenge, spawn or attach to Chrome, rebuild local session record."
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
subcommand: "act run",
|
|
2034
|
+
verb: "act",
|
|
2035
|
+
op_kind: "act:run",
|
|
2036
|
+
op_class: "actuate",
|
|
2037
|
+
action: "run",
|
|
2038
|
+
mcp_tool: "unbrowse_act_run",
|
|
2039
|
+
summary: "Resolve an intent then execute the best-ranked endpoint in one shot."
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
subcommand: "act get",
|
|
2043
|
+
verb: "act",
|
|
2044
|
+
op_kind: "act:get",
|
|
2045
|
+
op_class: "actuate",
|
|
2046
|
+
action: "get",
|
|
2047
|
+
mcp_tool: "unbrowse_act_get",
|
|
2048
|
+
summary: "Fetch a resource by intent — convenience wrapper delegating to run/search."
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
subcommand: "act fetch",
|
|
2052
|
+
verb: "act",
|
|
2053
|
+
op_kind: "act:fetch",
|
|
2054
|
+
op_class: "actuate",
|
|
2055
|
+
action: "fetch",
|
|
2056
|
+
mcp_tool: "unbrowse_act_fetch",
|
|
2057
|
+
summary: "Replay a captured endpoint by id/url with pointer-resolved request."
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
subcommand: "act capture",
|
|
2061
|
+
verb: "act",
|
|
2062
|
+
op_kind: "act:capture",
|
|
2063
|
+
op_class: "actuate",
|
|
2064
|
+
action: "capture",
|
|
2065
|
+
mcp_tool: "unbrowse_act_capture",
|
|
2066
|
+
summary: "Drive a browse session to capture a site's internal API routes into the cache."
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
subcommand: "act back",
|
|
2070
|
+
verb: "act",
|
|
2071
|
+
op_kind: "act:back",
|
|
2072
|
+
op_class: "actuate",
|
|
2073
|
+
action: "back",
|
|
2074
|
+
mcp_tool: "unbrowse_act_back",
|
|
2075
|
+
summary: "Navigate the current session back one entry in history."
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
subcommand: "act forward",
|
|
2079
|
+
verb: "act",
|
|
2080
|
+
op_kind: "act:forward",
|
|
2081
|
+
op_class: "actuate",
|
|
2082
|
+
action: "forward",
|
|
2083
|
+
mcp_tool: "unbrowse_act_forward",
|
|
2084
|
+
summary: "Navigate the current session forward one entry in history."
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
subcommand: "act sync",
|
|
2088
|
+
verb: "act",
|
|
2089
|
+
op_kind: "act:sync",
|
|
2090
|
+
op_class: "actuate",
|
|
2091
|
+
action: "sync",
|
|
2092
|
+
mcp_tool: "unbrowse_act_sync",
|
|
2093
|
+
summary: "Sync the local session state with the live browser tab."
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
subcommand: "act run-js",
|
|
2097
|
+
verb: "act",
|
|
2098
|
+
op_kind: "act:run_js",
|
|
2099
|
+
op_class: "actuate",
|
|
2100
|
+
action: "run_js",
|
|
2101
|
+
mcp_tool: "unbrowse_act_run_js",
|
|
2102
|
+
summary: "Evaluate arbitrary JavaScript in the current page context (renamed from eval to avoid verb collision)."
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
subcommand: "act auth",
|
|
2106
|
+
verb: "act",
|
|
2107
|
+
op_kind: "act:auth_login",
|
|
2108
|
+
op_class: "actuate",
|
|
2109
|
+
action: "auth_login",
|
|
2110
|
+
mcp_tool: "unbrowse_act_auth_login",
|
|
2111
|
+
summary: "Drive an interactive login flow for a target site and bind the session."
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
subcommand: "act connect-chrome",
|
|
2115
|
+
verb: "act",
|
|
2116
|
+
op_kind: "act:connect_chrome",
|
|
2117
|
+
op_class: "actuate",
|
|
2118
|
+
action: "connect_chrome",
|
|
2119
|
+
mcp_tool: null,
|
|
2120
|
+
summary: "Attach to an already-running Chrome instance over the DevTools protocol; local-only."
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
subcommand: "act serve",
|
|
2124
|
+
verb: "act",
|
|
2125
|
+
op_kind: "act:serve",
|
|
2126
|
+
op_class: "actuate",
|
|
2127
|
+
action: "serve",
|
|
2128
|
+
mcp_tool: null,
|
|
2129
|
+
summary: "Bounded foreground compatibility facade only — honors --no-auto-start; never auto-spawns a daemon; local-only."
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
subcommand: "act mcp",
|
|
2133
|
+
verb: "act",
|
|
2134
|
+
op_kind: "act:mcp",
|
|
2135
|
+
op_class: "actuate",
|
|
2136
|
+
action: "mcp",
|
|
2137
|
+
mcp_tool: null,
|
|
2138
|
+
summary: "Run the stdio MCP server in-process for a host config; local-only."
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
subcommand: "act dashboard",
|
|
2142
|
+
verb: "act",
|
|
2143
|
+
op_kind: "act:dashboard",
|
|
2144
|
+
op_class: "actuate",
|
|
2145
|
+
action: "dashboard",
|
|
2146
|
+
mcp_tool: null,
|
|
2147
|
+
summary: "Open the local dashboard UI in a browser; local-only."
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
subcommand: "act upgrade",
|
|
2151
|
+
verb: "act",
|
|
2152
|
+
op_kind: "act:upgrade",
|
|
2153
|
+
op_class: "actuate",
|
|
2154
|
+
action: "upgrade",
|
|
2155
|
+
mcp_tool: null,
|
|
2156
|
+
summary: "Self-update the CLI binary to the latest signed release; local-only."
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
subcommand: "eval snap",
|
|
2160
|
+
verb: "eval",
|
|
2161
|
+
op_kind: "eval:snap",
|
|
2162
|
+
op_class: "observe",
|
|
2163
|
+
action: "snap",
|
|
2164
|
+
mcp_tool: "unbrowse_eval_snap",
|
|
2165
|
+
summary: "Accessibility.getFullAXTree of the current page (the [e0] frame)."
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
subcommand: "eval resolve",
|
|
2169
|
+
verb: "eval",
|
|
2170
|
+
op_kind: "eval:resolve",
|
|
2171
|
+
op_class: "observe",
|
|
2172
|
+
action: "resolve",
|
|
2173
|
+
mcp_tool: "unbrowse_eval_resolve",
|
|
2174
|
+
summary: "Ranked endpoint shortlist for an intent (route cache + marketplace)."
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
subcommand: "eval status",
|
|
2178
|
+
verb: "eval",
|
|
2179
|
+
op_kind: "eval:status",
|
|
2180
|
+
op_class: "observe",
|
|
2181
|
+
action: "status",
|
|
2182
|
+
mcp_tool: "unbrowse_eval_status",
|
|
2183
|
+
summary: "Current session + server health snapshot."
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
subcommand: "eval version",
|
|
2187
|
+
verb: "eval",
|
|
2188
|
+
op_kind: "eval:version",
|
|
2189
|
+
op_class: "observe",
|
|
2190
|
+
action: "version",
|
|
2191
|
+
mcp_tool: "unbrowse_eval_version",
|
|
2192
|
+
summary: "CLI version + build_sha + walletPubkey + signed release manifest."
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
subcommand: "eval trace",
|
|
2196
|
+
verb: "eval",
|
|
2197
|
+
op_kind: "eval:trace",
|
|
2198
|
+
op_class: "observe",
|
|
2199
|
+
action: "trace",
|
|
2200
|
+
mcp_tool: "unbrowse_eval_trace",
|
|
2201
|
+
summary: "Read the stateless decision_trace for a session id."
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
subcommand: "eval markdown",
|
|
2205
|
+
verb: "eval",
|
|
2206
|
+
op_kind: "eval:markdown",
|
|
2207
|
+
op_class: "observe",
|
|
2208
|
+
action: "markdown",
|
|
2209
|
+
mcp_tool: "unbrowse_eval_markdown",
|
|
2210
|
+
summary: "Readable-markdown view of the current page."
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
subcommand: "eval screenshot",
|
|
2214
|
+
verb: "eval",
|
|
2215
|
+
op_kind: "eval:screenshot",
|
|
2216
|
+
op_class: "observe",
|
|
2217
|
+
action: "screenshot",
|
|
2218
|
+
mcp_tool: "unbrowse_eval_screenshot",
|
|
2219
|
+
summary: "Page.captureScreenshot PNG of the current page."
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
subcommand: "eval text",
|
|
2223
|
+
verb: "eval",
|
|
2224
|
+
op_kind: "eval:text",
|
|
2225
|
+
op_class: "observe",
|
|
2226
|
+
action: "text",
|
|
2227
|
+
mcp_tool: "unbrowse_eval_text",
|
|
2228
|
+
summary: "Stripped page text or selector-scoped innerText."
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
subcommand: "eval cookies",
|
|
2232
|
+
verb: "eval",
|
|
2233
|
+
op_kind: "eval:cookies",
|
|
2234
|
+
op_class: "observe",
|
|
2235
|
+
action: "cookies",
|
|
2236
|
+
mcp_tool: "unbrowse_eval_cookies",
|
|
2237
|
+
summary: "Cookie listing for a domain — names + domains + expires ONLY (no values)."
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
subcommand: "eval stats",
|
|
2241
|
+
verb: "eval",
|
|
2242
|
+
op_kind: "eval:stats",
|
|
2243
|
+
op_class: "observe",
|
|
2244
|
+
action: "stats",
|
|
2245
|
+
mcp_tool: "unbrowse_eval_stats",
|
|
2246
|
+
summary: "Marketplace + earnings stats summary."
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
subcommand: "eval skills",
|
|
2250
|
+
verb: "eval",
|
|
2251
|
+
op_kind: "eval:skills",
|
|
2252
|
+
op_class: "observe",
|
|
2253
|
+
action: "skills",
|
|
2254
|
+
mcp_tool: "unbrowse_eval_skills",
|
|
2255
|
+
summary: "List captured skills."
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
subcommand: "eval skill",
|
|
2259
|
+
verb: "eval",
|
|
2260
|
+
op_kind: "eval:skill",
|
|
2261
|
+
op_class: "observe",
|
|
2262
|
+
action: "skill",
|
|
2263
|
+
mcp_tool: "unbrowse_eval_skill",
|
|
2264
|
+
summary: "Detail one captured skill by id."
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
subcommand: "eval sessions",
|
|
2268
|
+
verb: "eval",
|
|
2269
|
+
op_kind: "eval:sessions",
|
|
2270
|
+
op_class: "observe",
|
|
2271
|
+
action: "sessions",
|
|
2272
|
+
mcp_tool: "unbrowse_eval_sessions",
|
|
2273
|
+
summary: "List active browse sessions."
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
subcommand: "eval earnings",
|
|
2277
|
+
verb: "eval",
|
|
2278
|
+
op_kind: "eval:earnings",
|
|
2279
|
+
op_class: "observe",
|
|
2280
|
+
action: "earnings",
|
|
2281
|
+
mcp_tool: "unbrowse_eval_earnings",
|
|
2282
|
+
summary: "x402 earnings summary for the current agent."
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
subcommand: "eval settings",
|
|
2286
|
+
verb: "eval",
|
|
2287
|
+
op_kind: "eval:settings",
|
|
2288
|
+
op_class: "observe",
|
|
2289
|
+
action: "settings",
|
|
2290
|
+
mcp_tool: "unbrowse_eval_settings",
|
|
2291
|
+
summary: "Current local config + capture-pipeline settings."
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
subcommand: "eval feedback",
|
|
2295
|
+
verb: "eval",
|
|
2296
|
+
op_kind: "eval:feedback",
|
|
2297
|
+
op_class: "observe",
|
|
2298
|
+
action: "feedback",
|
|
2299
|
+
mcp_tool: "unbrowse_eval_feedback",
|
|
2300
|
+
summary: "Submit feedback on the last execute (commitment-only)."
|
|
2301
|
+
},
|
|
2302
|
+
{
|
|
2303
|
+
subcommand: "eval reflect",
|
|
2304
|
+
verb: "eval",
|
|
2305
|
+
op_kind: "eval:reflect",
|
|
2306
|
+
op_class: "observe",
|
|
2307
|
+
action: "reflect",
|
|
2308
|
+
mcp_tool: "unbrowse_eval_reflect",
|
|
2309
|
+
summary: "Reflect on the user-facing outcome of the current task."
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
subcommand: "eval auth-inventory",
|
|
2313
|
+
verb: "eval",
|
|
2314
|
+
op_kind: "eval:auth_inventory",
|
|
2315
|
+
op_class: "observe",
|
|
2316
|
+
action: "auth_inventory",
|
|
2317
|
+
mcp_tool: "unbrowse_eval_auth_inventory",
|
|
2318
|
+
summary: "Per-domain AST of what the user can already authenticate against — local browser cookies (metadata only), history hostnames, bookmarks. Bias the resolve ranker toward logged-in domains."
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
subcommand: "eval spec",
|
|
2322
|
+
verb: "eval",
|
|
2323
|
+
op_kind: "eval:spec_discover",
|
|
2324
|
+
op_class: "observe",
|
|
2325
|
+
action: "spec_discover",
|
|
2326
|
+
mcp_tool: "unbrowse_eval_spec_discover",
|
|
2327
|
+
summary: "Probe spec-publishing endpoints (openapi/swagger/sitemap/robots/graphql) for a target site BEFORE the browse-capture-rank dance. If the site publishes its surface, that IS the ground-truth AST — skip the capture."
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
subcommand: "eval explain",
|
|
2331
|
+
verb: "eval",
|
|
2332
|
+
op_kind: "eval:explain",
|
|
2333
|
+
op_class: "observe",
|
|
2334
|
+
action: "explain",
|
|
2335
|
+
mcp_tool: "unbrowse_eval_explain",
|
|
2336
|
+
summary: "Explain how a given intent would resolve and execute, without acting."
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
subcommand: "eval search",
|
|
2340
|
+
verb: "eval",
|
|
2341
|
+
op_kind: "eval:search",
|
|
2342
|
+
op_class: "observe",
|
|
2343
|
+
action: "search",
|
|
2344
|
+
mcp_tool: "unbrowse_eval_search",
|
|
2345
|
+
summary: "Search the marketplace/route graph for endpoints matching a query."
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
subcommand: "eval inspect",
|
|
2349
|
+
verb: "eval",
|
|
2350
|
+
op_kind: "eval:inspect",
|
|
2351
|
+
op_class: "observe",
|
|
2352
|
+
action: "inspect",
|
|
2353
|
+
mcp_tool: "unbrowse_eval_inspect",
|
|
2354
|
+
summary: "Inspect a captured endpoint's full request/response shape and metadata."
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
subcommand: "eval account",
|
|
2358
|
+
verb: "eval",
|
|
2359
|
+
op_kind: "eval:account",
|
|
2360
|
+
op_class: "observe",
|
|
2361
|
+
action: "account",
|
|
2362
|
+
mcp_tool: null,
|
|
2363
|
+
summary: "Show the current agent account, wallet, and credit balance; local-only."
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
subcommand: "eval config",
|
|
2367
|
+
verb: "eval",
|
|
2368
|
+
op_kind: "eval:config",
|
|
2369
|
+
op_class: "observe",
|
|
2370
|
+
action: "config",
|
|
2371
|
+
mcp_tool: null,
|
|
2372
|
+
summary: "Read or write local config keys; local-only."
|
|
2373
|
+
}
|
|
2374
|
+
];
|
|
2375
|
+
FLAT_VERB_OVERRIDES = {
|
|
2376
|
+
skill: "eval"
|
|
2377
|
+
};
|
|
2378
|
+
});
|
|
2379
|
+
|
|
1754
2380
|
// .tmp-runtime-src/values/content-address.ts
|
|
1755
2381
|
import { createHash as createHash2 } from "node:crypto";
|
|
1756
2382
|
function recordHash(rec) {
|
|
@@ -2533,7 +3159,7 @@ var init_telemetry = __esm(() => {
|
|
|
2533
3159
|
});
|
|
2534
3160
|
|
|
2535
3161
|
// .tmp-runtime-src/build-info.generated.ts
|
|
2536
|
-
var BUILD_RELEASE_VERSION = "9.9.
|
|
3162
|
+
var BUILD_RELEASE_VERSION = "9.9.1", BUILD_GIT_SHA = "0570b8bfa0b4", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjEiLCJnaXRfc2hhIjoiMDU3MGI4YmZhMGI0IiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUAwNTcwYjhiZmEwYjQiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE5VDAxOjEzOjMxLjQ3NloifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "pO2jO6wBtZ1UZokEAuSzhp4TdwfcYJV59qdg5CIQrQg", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
2537
3163
|
|
|
2538
3164
|
// .tmp-runtime-src/version.ts
|
|
2539
3165
|
import { createHash as createHash7 } from "crypto";
|
|
@@ -156703,11 +157329,11 @@ var EX_USAGE = 64, EX_SOFTWARE = 70, EX_GENERIC = 1;
|
|
|
156703
157329
|
// .tmp-runtime-src/cli-v7/kind-map.ts
|
|
156704
157330
|
function lookupKindMap(verb, sub) {
|
|
156705
157331
|
const key2 = `${verb} ${sub}`;
|
|
156706
|
-
return
|
|
157332
|
+
return KIND_MAP2.find((e) => e.subcommand === key2);
|
|
156707
157333
|
}
|
|
156708
|
-
var
|
|
156709
|
-
var
|
|
156710
|
-
|
|
157334
|
+
var KIND_MAP2;
|
|
157335
|
+
var init_kind_map2 = __esm(() => {
|
|
157336
|
+
KIND_MAP2 = [
|
|
156711
157337
|
{
|
|
156712
157338
|
subcommand: "build skill",
|
|
156713
157339
|
verb: "build",
|
|
@@ -157615,7 +158241,7 @@ async function handler(parsed, opts) {
|
|
|
157615
158241
|
}
|
|
157616
158242
|
}
|
|
157617
158243
|
var init_skill = __esm(() => {
|
|
157618
|
-
|
|
158244
|
+
init_kind_map2();
|
|
157619
158245
|
init__act_audit();
|
|
157620
158246
|
});
|
|
157621
158247
|
|
|
@@ -157682,7 +158308,7 @@ async function handler2(parsed, opts) {
|
|
|
157682
158308
|
}
|
|
157683
158309
|
}
|
|
157684
158310
|
var init_template = __esm(() => {
|
|
157685
|
-
|
|
158311
|
+
init_kind_map2();
|
|
157686
158312
|
init__act_audit();
|
|
157687
158313
|
});
|
|
157688
158314
|
|
|
@@ -157763,7 +158389,7 @@ async function handler3(parsed, opts) {
|
|
|
157763
158389
|
}
|
|
157764
158390
|
}
|
|
157765
158391
|
var init_value_source = __esm(() => {
|
|
157766
|
-
|
|
158392
|
+
init_kind_map2();
|
|
157767
158393
|
init__act_audit();
|
|
157768
158394
|
});
|
|
157769
158395
|
|
|
@@ -230764,7 +231390,7 @@ async function handler14(parsed, opts) {
|
|
|
230764
231390
|
var init_go = __esm(() => {
|
|
230765
231391
|
init_cdp();
|
|
230766
231392
|
init__session();
|
|
230767
|
-
|
|
231393
|
+
init_kind_map2();
|
|
230768
231394
|
init__act_audit();
|
|
230769
231395
|
});
|
|
230770
231396
|
|
|
@@ -231866,7 +232492,7 @@ var init_fill = __esm(() => {
|
|
|
231866
232492
|
init_cdp();
|
|
231867
232493
|
init_values();
|
|
231868
232494
|
init__session();
|
|
231869
|
-
|
|
232495
|
+
init_kind_map2();
|
|
231870
232496
|
});
|
|
231871
232497
|
|
|
231872
232498
|
// .tmp-runtime-src/cli-v7/act/fill-form.ts
|
|
@@ -232231,7 +232857,7 @@ var init_fill_form = __esm(() => {
|
|
|
232231
232857
|
init_cdp();
|
|
232232
232858
|
init_values();
|
|
232233
232859
|
init__session();
|
|
232234
|
-
|
|
232860
|
+
init_kind_map2();
|
|
232235
232861
|
init__stateless();
|
|
232236
232862
|
});
|
|
232237
232863
|
|
|
@@ -232470,7 +233096,7 @@ var init_type = __esm(() => {
|
|
|
232470
233096
|
init_cdp();
|
|
232471
233097
|
init_values();
|
|
232472
233098
|
init__session();
|
|
232473
|
-
|
|
233099
|
+
init_kind_map2();
|
|
232474
233100
|
init__act_audit();
|
|
232475
233101
|
});
|
|
232476
233102
|
|
|
@@ -232607,7 +233233,7 @@ var EX_CDP4 = 65, MODIFIER_BITS;
|
|
|
232607
233233
|
var init_click = __esm(() => {
|
|
232608
233234
|
init_cdp();
|
|
232609
233235
|
init__session();
|
|
232610
|
-
|
|
233236
|
+
init_kind_map2();
|
|
232611
233237
|
init__act_audit();
|
|
232612
233238
|
MODIFIER_BITS = {
|
|
232613
233239
|
alt: 1,
|
|
@@ -232736,7 +233362,7 @@ var EX_CDP5 = 65, KEY_TABLE;
|
|
|
232736
233362
|
var init_press = __esm(() => {
|
|
232737
233363
|
init_cdp();
|
|
232738
233364
|
init__session();
|
|
232739
|
-
|
|
233365
|
+
init_kind_map2();
|
|
232740
233366
|
init__act_audit();
|
|
232741
233367
|
KEY_TABLE = {
|
|
232742
233368
|
Enter: { key: "Enter", code: "Enter", windowsVirtualKeyCode: 13, text: "\r" },
|
|
@@ -233029,7 +233655,7 @@ var init_select = __esm(() => {
|
|
|
233029
233655
|
init_cdp();
|
|
233030
233656
|
init_values();
|
|
233031
233657
|
init__session();
|
|
233032
|
-
|
|
233658
|
+
init_kind_map2();
|
|
233033
233659
|
init_fill();
|
|
233034
233660
|
init__act_audit();
|
|
233035
233661
|
});
|
|
@@ -233198,7 +233824,7 @@ var EX_CDP7 = 65, SCROLL_AMOUNT_RE;
|
|
|
233198
233824
|
var init_scroll = __esm(() => {
|
|
233199
233825
|
init_cdp();
|
|
233200
233826
|
init__session();
|
|
233201
|
-
|
|
233827
|
+
init_kind_map2();
|
|
233202
233828
|
init__act_audit();
|
|
233203
233829
|
SCROLL_AMOUNT_RE = /^-?\d+(,-?\d+)?$/;
|
|
233204
233830
|
});
|
|
@@ -233351,7 +233977,7 @@ var EX_CDP8 = 65;
|
|
|
233351
233977
|
var init_submit = __esm(() => {
|
|
233352
233978
|
init_cdp();
|
|
233353
233979
|
init__session();
|
|
233354
|
-
|
|
233980
|
+
init_kind_map2();
|
|
233355
233981
|
init__act_audit();
|
|
233356
233982
|
});
|
|
233357
233983
|
|
|
@@ -233777,7 +234403,7 @@ var EX_CDP9 = 65, FIVE_MINUTES_MS5 = 300000, RAW_TRUNCATE_BYTES;
|
|
|
233777
234403
|
var init_execute = __esm(() => {
|
|
233778
234404
|
init_values();
|
|
233779
234405
|
init__session();
|
|
233780
|
-
|
|
234406
|
+
init_kind_map2();
|
|
233781
234407
|
init__stateless();
|
|
233782
234408
|
RAW_TRUNCATE_BYTES = 10 * 1024;
|
|
233783
234409
|
});
|
|
@@ -234003,7 +234629,7 @@ var EX_CDP10 = 65, DEFAULT_TIMEOUT_MS4 = 300000, SETTLE_MS = 1e4, KEYCHAIN_SERVI
|
|
|
234003
234629
|
var init_auth_capture = __esm(() => {
|
|
234004
234630
|
init_cdp();
|
|
234005
234631
|
init__session();
|
|
234006
|
-
|
|
234632
|
+
init_kind_map2();
|
|
234007
234633
|
init__act_audit();
|
|
234008
234634
|
LOGIN_KEYCHAIN_PATH2 = join65(homedir47(), "Library", "Keychains", "login.keychain-db");
|
|
234009
234635
|
});
|
|
@@ -234161,7 +234787,7 @@ var EX_CDP11 = 65, DEFAULT_IPROYAL_HOST2 = "geo.iproyal.com", DEFAULT_IPROYAL_PO
|
|
|
234161
234787
|
var init_proxy_rotate = __esm(() => {
|
|
234162
234788
|
init_cdp();
|
|
234163
234789
|
init__session();
|
|
234164
|
-
|
|
234790
|
+
init_kind_map2();
|
|
234165
234791
|
init__act_audit();
|
|
234166
234792
|
});
|
|
234167
234793
|
|
|
@@ -234264,7 +234890,7 @@ var DEPRECATION_NOTICE = "[deprecation] unbrowse act close is being replaced by
|
|
|
234264
234890
|
var init_close = __esm(() => {
|
|
234265
234891
|
init_cdp();
|
|
234266
234892
|
init__session();
|
|
234267
|
-
|
|
234893
|
+
init_kind_map2();
|
|
234268
234894
|
init__act_audit();
|
|
234269
234895
|
});
|
|
234270
234896
|
|
|
@@ -234473,7 +235099,7 @@ var init_session_park = __esm(() => {
|
|
|
234473
235099
|
init_cdp();
|
|
234474
235100
|
init_signer();
|
|
234475
235101
|
init__session();
|
|
234476
|
-
|
|
235102
|
+
init_kind_map2();
|
|
234477
235103
|
init__stateless();
|
|
234478
235104
|
});
|
|
234479
235105
|
|
|
@@ -234661,7 +235287,7 @@ var init_session_restore = __esm(() => {
|
|
|
234661
235287
|
init_cdp();
|
|
234662
235288
|
init_signer();
|
|
234663
235289
|
init__session();
|
|
234664
|
-
|
|
235290
|
+
init_kind_map2();
|
|
234665
235291
|
init__act_audit();
|
|
234666
235292
|
});
|
|
234667
235293
|
|
|
@@ -235052,7 +235678,7 @@ async function handler43(parsed, opts) {
|
|
|
235052
235678
|
var init_snap = __esm(() => {
|
|
235053
235679
|
init_cdp();
|
|
235054
235680
|
init__session();
|
|
235055
|
-
|
|
235681
|
+
init_kind_map2();
|
|
235056
235682
|
init__stateless();
|
|
235057
235683
|
});
|
|
235058
235684
|
|
|
@@ -235339,7 +235965,7 @@ async function handler44(parsed, opts) {
|
|
|
235339
235965
|
}
|
|
235340
235966
|
}
|
|
235341
235967
|
var init_resolve = __esm(async () => {
|
|
235342
|
-
|
|
235968
|
+
init_kind_map2();
|
|
235343
235969
|
init_version();
|
|
235344
235970
|
init_signer();
|
|
235345
235971
|
init_escalate_on_miss();
|
|
@@ -235502,7 +236128,7 @@ async function handler45(parsed, opts) {
|
|
|
235502
236128
|
}
|
|
235503
236129
|
}
|
|
235504
236130
|
var init_sessions = __esm(() => {
|
|
235505
|
-
|
|
236131
|
+
init_kind_map2();
|
|
235506
236132
|
init__stateless();
|
|
235507
236133
|
});
|
|
235508
236134
|
|
|
@@ -235593,7 +236219,7 @@ async function handler46(parsed, opts) {
|
|
|
235593
236219
|
}
|
|
235594
236220
|
}
|
|
235595
236221
|
var init_status = __esm(() => {
|
|
235596
|
-
|
|
236222
|
+
init_kind_map2();
|
|
235597
236223
|
init_version();
|
|
235598
236224
|
init_signer();
|
|
235599
236225
|
init_sessions();
|
|
@@ -235664,7 +236290,7 @@ async function handler47(parsed, opts) {
|
|
|
235664
236290
|
}
|
|
235665
236291
|
}
|
|
235666
236292
|
var init_version2 = __esm(() => {
|
|
235667
|
-
|
|
236293
|
+
init_kind_map2();
|
|
235668
236294
|
init_version();
|
|
235669
236295
|
init_signer();
|
|
235670
236296
|
init__stateless();
|
|
@@ -235927,7 +236553,7 @@ async function handler48(parsed, opts) {
|
|
|
235927
236553
|
}
|
|
235928
236554
|
}
|
|
235929
236555
|
var init_trace = __esm(() => {
|
|
235930
|
-
|
|
236556
|
+
init_kind_map2();
|
|
235931
236557
|
init_trace_store();
|
|
235932
236558
|
init__session();
|
|
235933
236559
|
init__stateless();
|
|
@@ -236041,7 +236667,7 @@ var DEFAULT_TRUNCATE_BYTES;
|
|
|
236041
236667
|
var init_markdown = __esm(() => {
|
|
236042
236668
|
init_cdp();
|
|
236043
236669
|
init__session();
|
|
236044
|
-
|
|
236670
|
+
init_kind_map2();
|
|
236045
236671
|
init__stateless();
|
|
236046
236672
|
DEFAULT_TRUNCATE_BYTES = 10 * 1024;
|
|
236047
236673
|
});
|
|
@@ -236194,7 +236820,7 @@ async function handler50(parsed, opts) {
|
|
|
236194
236820
|
var init_screenshot = __esm(() => {
|
|
236195
236821
|
init_cdp();
|
|
236196
236822
|
init__session();
|
|
236197
|
-
|
|
236823
|
+
init_kind_map2();
|
|
236198
236824
|
init__stateless();
|
|
236199
236825
|
});
|
|
236200
236826
|
|
|
@@ -236294,7 +236920,7 @@ async function handler51(parsed, opts) {
|
|
|
236294
236920
|
var init_text = __esm(() => {
|
|
236295
236921
|
init_cdp();
|
|
236296
236922
|
init__session();
|
|
236297
|
-
|
|
236923
|
+
init_kind_map2();
|
|
236298
236924
|
init__stateless();
|
|
236299
236925
|
});
|
|
236300
236926
|
|
|
@@ -236413,7 +237039,7 @@ async function handler52(parsed, opts) {
|
|
|
236413
237039
|
var init_cookies = __esm(() => {
|
|
236414
237040
|
init_cdp();
|
|
236415
237041
|
init__session();
|
|
236416
|
-
|
|
237042
|
+
init_kind_map2();
|
|
236417
237043
|
init__stateless();
|
|
236418
237044
|
});
|
|
236419
237045
|
|
|
@@ -236614,7 +237240,7 @@ async function handler53(parsed, opts) {
|
|
|
236614
237240
|
docs: {
|
|
236615
237241
|
how_it_pays: "https://unbrowse.ai/how-unbrowse-pays",
|
|
236616
237242
|
economy: "per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share — paper: Unbrowse Maintenance Network",
|
|
236617
|
-
privacy: "credentials are bound to your wallet by
|
|
237243
|
+
privacy: "credentials are bound to your wallet by zero-knowledge proof and revealed only under signature — paper: Crypto Was All You Needed",
|
|
236618
237244
|
papers: "https://unbrowse.ai/papers"
|
|
236619
237245
|
},
|
|
236620
237246
|
audit_emit: auditEmit
|
|
@@ -236626,7 +237252,7 @@ async function handler53(parsed, opts) {
|
|
|
236626
237252
|
}
|
|
236627
237253
|
}
|
|
236628
237254
|
var init_stats = __esm(() => {
|
|
236629
|
-
|
|
237255
|
+
init_kind_map2();
|
|
236630
237256
|
init_version();
|
|
236631
237257
|
init__stateless();
|
|
236632
237258
|
init_impact_log2();
|
|
@@ -236825,7 +237451,7 @@ async function handler54(parsed, opts) {
|
|
|
236825
237451
|
}
|
|
236826
237452
|
}
|
|
236827
237453
|
var init_skills = __esm(() => {
|
|
236828
|
-
|
|
237454
|
+
init_kind_map2();
|
|
236829
237455
|
init_version();
|
|
236830
237456
|
init_signer();
|
|
236831
237457
|
init__stateless();
|
|
@@ -237001,7 +237627,7 @@ async function handler55(parsed, opts) {
|
|
|
237001
237627
|
}
|
|
237002
237628
|
}
|
|
237003
237629
|
var init_skill2 = __esm(async () => {
|
|
237004
|
-
|
|
237630
|
+
init_kind_map2();
|
|
237005
237631
|
init_version();
|
|
237006
237632
|
init_signer();
|
|
237007
237633
|
init__stateless();
|
|
@@ -237184,7 +237810,7 @@ function round6(n) {
|
|
|
237184
237810
|
return Math.round(n * 1e6) / 1e6;
|
|
237185
237811
|
}
|
|
237186
237812
|
var init_earnings = __esm(() => {
|
|
237187
|
-
|
|
237813
|
+
init_kind_map2();
|
|
237188
237814
|
init_version();
|
|
237189
237815
|
init_signer();
|
|
237190
237816
|
init__stateless();
|
|
@@ -237608,7 +238234,7 @@ async function handler57(parsed, opts) {
|
|
|
237608
238234
|
}
|
|
237609
238235
|
var POINTER_PREFIX_REGEX;
|
|
237610
238236
|
var init_settings3 = __esm(() => {
|
|
237611
|
-
|
|
238237
|
+
init_kind_map2();
|
|
237612
238238
|
init__stateless();
|
|
237613
238239
|
init_signer();
|
|
237614
238240
|
POINTER_PREFIX_REGEX = /^(literal:|op:\/\/|keychain:\/\/|bw:\/\/|arg:\/\/|unbrowse:\/\/).+$/;
|
|
@@ -237737,7 +238363,7 @@ async function handler58(parsed, opts) {
|
|
|
237737
238363
|
}
|
|
237738
238364
|
var POINTER_PREFIXES, SECRET_REGEXES;
|
|
237739
238365
|
var init_feedback = __esm(() => {
|
|
237740
|
-
|
|
238366
|
+
init_kind_map2();
|
|
237741
238367
|
init__stateless();
|
|
237742
238368
|
POINTER_PREFIXES = ["op://", "keychain://", "bw://", "arg://"];
|
|
237743
238369
|
SECRET_REGEXES = [
|
|
@@ -237859,7 +238485,7 @@ async function handler59(parsed, opts) {
|
|
|
237859
238485
|
}
|
|
237860
238486
|
var VALID_OUTCOMES;
|
|
237861
238487
|
var init_reflect = __esm(() => {
|
|
237862
|
-
|
|
238488
|
+
init_kind_map2();
|
|
237863
238489
|
init__stateless();
|
|
237864
238490
|
VALID_OUTCOMES = new Set(["achieved", "partial", "failed"]);
|
|
237865
238491
|
});
|
|
@@ -238649,7 +239275,7 @@ async function handler60(parsed, opts) {
|
|
|
238649
239275
|
}
|
|
238650
239276
|
var AUTH_COOKIE_NAME_REGEX, ONE_HOUR_S = 3600, THIRTY_DAYS_S, SCORE_CAP = 0.95;
|
|
238651
239277
|
var init_auth_inventory = __esm(() => {
|
|
238652
|
-
|
|
239278
|
+
init_kind_map2();
|
|
238653
239279
|
init__stateless();
|
|
238654
239280
|
init_chrome3();
|
|
238655
239281
|
init_firefox2();
|
|
@@ -239301,7 +239927,7 @@ async function handler61(parsed, opts) {
|
|
|
239301
239927
|
}
|
|
239302
239928
|
var DEFAULT_BUDGET_MS = 3000, OPENAPI_PATHS, SITEMAP_PATHS, SPEC_CACHE_TTL_S, SPEC_CACHE_KEY_PREFIX = "cache:spec:";
|
|
239303
239929
|
var init_spec = __esm(() => {
|
|
239304
|
-
|
|
239930
|
+
init_kind_map2();
|
|
239305
239931
|
init__stateless();
|
|
239306
239932
|
init_graphql_introspect();
|
|
239307
239933
|
OPENAPI_PATHS = [
|
|
@@ -239493,7 +240119,7 @@ function topLevelHelpExit(opts) {
|
|
|
239493
240119
|
act: "Runtime animation — navigate, fill, click, execute (side-effectful ops).",
|
|
239494
240120
|
eval: "Read-only queries — snap, resolve, status, version (observe ops)."
|
|
239495
240121
|
},
|
|
239496
|
-
subcommands:
|
|
240122
|
+
subcommands: KIND_MAP2.map((e) => ({
|
|
239497
240123
|
subcommand: e.subcommand,
|
|
239498
240124
|
summary: e.summary,
|
|
239499
240125
|
op_kind: e.op_kind,
|
|
@@ -239542,7 +240168,7 @@ async function routeSub(parsed, opts, table, verbName) {
|
|
|
239542
240168
|
return handler67(parsed, opts);
|
|
239543
240169
|
}
|
|
239544
240170
|
var init_router = __esm(() => {
|
|
239545
|
-
|
|
240171
|
+
init_kind_map2();
|
|
239546
240172
|
});
|
|
239547
240173
|
|
|
239548
240174
|
// .tmp-runtime-src/cli-v7/index.ts
|
|
@@ -242195,7 +242821,7 @@ function printHelp() {
|
|
|
242195
242821
|
"",
|
|
242196
242822
|
"Learn more (the WHAT behind the runtime \u2014 read the papers for the rest):",
|
|
242197
242823
|
" How it pays https://unbrowse.ai/how-unbrowse-pays per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share (paper: Unbrowse Maintenance Network)",
|
|
242198
|
-
" Privacy https://unbrowse.ai/privacy credentials bound to your wallet by
|
|
242824
|
+
" Privacy https://unbrowse.ai/privacy credentials bound to your wallet by zero-knowledge proof, revealed only under signature (paper: Crypto Was All You Needed)",
|
|
242199
242825
|
" Papers https://unbrowse.ai/papers",
|
|
242200
242826
|
""
|
|
242201
242827
|
];
|
|
@@ -242585,6 +243211,12 @@ async function main() {
|
|
|
242585
243211
|
printHelp();
|
|
242586
243212
|
process.exit(0);
|
|
242587
243213
|
}
|
|
243214
|
+
const flatVerb = flatCommandVerb(command2);
|
|
243215
|
+
if (flatVerb) {
|
|
243216
|
+
const { runV7: runV73 } = await Promise.resolve().then(() => (init_cli_v7(), exports_cli_v7));
|
|
243217
|
+
await runV73([process.argv[0], process.argv[1], flatVerb, command2, ...process.argv.slice(3)]);
|
|
243218
|
+
return;
|
|
243219
|
+
}
|
|
242588
243220
|
const { runV7: runV72 } = await Promise.resolve().then(() => (init_cli_v7(), exports_cli_v7));
|
|
242589
243221
|
await runV72([process.argv[0], process.argv[1], "act", "get", ...process.argv.slice(2)]);
|
|
242590
243222
|
return;
|
|
@@ -242594,6 +243226,7 @@ var init_cli = __esm(async () => {
|
|
|
242594
243226
|
init_infer_write_method();
|
|
242595
243227
|
init_extract_auth_header();
|
|
242596
243228
|
init_kuri_proxy_bridge();
|
|
243229
|
+
init_kind_map();
|
|
242597
243230
|
init_cached_resolution();
|
|
242598
243231
|
init_cardinality();
|
|
242599
243232
|
init_issue();
|
package/runtime/mcp.js
CHANGED
|
@@ -36322,7 +36322,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
36322
36322
|
});
|
|
36323
36323
|
|
|
36324
36324
|
// .tmp-runtime-src/build-info.generated.ts
|
|
36325
|
-
var BUILD_RELEASE_VERSION = "9.9.
|
|
36325
|
+
var BUILD_RELEASE_VERSION = "9.9.1", BUILD_GIT_SHA = "0570b8bfa0b4", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjEiLCJnaXRfc2hhIjoiMDU3MGI4YmZhMGI0IiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUAwNTcwYjhiZmEwYjQiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE5VDAxOjEzOjMxLjQ3NloifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "pO2jO6wBtZ1UZokEAuSzhp4TdwfcYJV59qdg5CIQrQg", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
36326
36326
|
|
|
36327
36327
|
// .tmp-runtime-src/version.ts
|
|
36328
36328
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -146423,7 +146423,29 @@ function lookupKindMap(verb, sub) {
|
|
|
146423
146423
|
const key2 = `${verb} ${sub}`;
|
|
146424
146424
|
return KIND_MAP.find((e) => e.subcommand === key2);
|
|
146425
146425
|
}
|
|
146426
|
-
|
|
146426
|
+
function flatVerbMap() {
|
|
146427
|
+
if (_flatVerbMap)
|
|
146428
|
+
return _flatVerbMap;
|
|
146429
|
+
const m = new Map;
|
|
146430
|
+
for (const e of KIND_MAP) {
|
|
146431
|
+
const parts = e.subcommand.split(" ");
|
|
146432
|
+
if (parts.length !== 2)
|
|
146433
|
+
continue;
|
|
146434
|
+
if (!m.has(parts[1]))
|
|
146435
|
+
m.set(parts[1], e.verb);
|
|
146436
|
+
}
|
|
146437
|
+
for (const [k, v] of Object.entries(FLAT_VERB_OVERRIDES))
|
|
146438
|
+
m.set(k, v);
|
|
146439
|
+
return _flatVerbMap = m;
|
|
146440
|
+
}
|
|
146441
|
+
function flatCommandVerb(name) {
|
|
146442
|
+
if (!name || name.includes(" "))
|
|
146443
|
+
return null;
|
|
146444
|
+
if (name === "build" || name === "act" || name === "eval")
|
|
146445
|
+
return null;
|
|
146446
|
+
return flatVerbMap().get(name) ?? null;
|
|
146447
|
+
}
|
|
146448
|
+
var KIND_MAP, FLAT_VERB_OVERRIDES, _flatVerbMap = null;
|
|
146427
146449
|
var init_kind_map = __esm(() => {
|
|
146428
146450
|
KIND_MAP = [
|
|
146429
146451
|
{
|
|
@@ -147021,6 +147043,9 @@ var init_kind_map = __esm(() => {
|
|
|
147021
147043
|
summary: "Read or write local config keys; local-only."
|
|
147022
147044
|
}
|
|
147023
147045
|
];
|
|
147046
|
+
FLAT_VERB_OVERRIDES = {
|
|
147047
|
+
skill: "eval"
|
|
147048
|
+
};
|
|
147024
147049
|
});
|
|
147025
147050
|
|
|
147026
147051
|
// .tmp-runtime-src/cli-v7/output.ts
|
|
@@ -229527,7 +229552,7 @@ async function handler53(parsed, opts) {
|
|
|
229527
229552
|
docs: {
|
|
229528
229553
|
how_it_pays: "https://unbrowse.ai/how-unbrowse-pays",
|
|
229529
229554
|
economy: "per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share — paper: Unbrowse Maintenance Network",
|
|
229530
|
-
privacy: "credentials are bound to your wallet by
|
|
229555
|
+
privacy: "credentials are bound to your wallet by zero-knowledge proof and revealed only under signature — paper: Crypto Was All You Needed",
|
|
229531
229556
|
papers: "https://unbrowse.ai/papers"
|
|
229532
229557
|
},
|
|
229533
229558
|
audit_emit: auditEmit
|
|
@@ -235248,7 +235273,7 @@ function printHelp() {
|
|
|
235248
235273
|
"",
|
|
235249
235274
|
"Learn more (the WHAT behind the runtime — read the papers for the rest):",
|
|
235250
235275
|
" How it pays https://unbrowse.ai/how-unbrowse-pays per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share (paper: Unbrowse Maintenance Network)",
|
|
235251
|
-
" Privacy https://unbrowse.ai/privacy credentials bound to your wallet by
|
|
235276
|
+
" Privacy https://unbrowse.ai/privacy credentials bound to your wallet by zero-knowledge proof, revealed only under signature (paper: Crypto Was All You Needed)",
|
|
235252
235277
|
" Papers https://unbrowse.ai/papers",
|
|
235253
235278
|
""
|
|
235254
235279
|
];
|
|
@@ -235638,6 +235663,12 @@ async function main() {
|
|
|
235638
235663
|
printHelp();
|
|
235639
235664
|
process.exit(0);
|
|
235640
235665
|
}
|
|
235666
|
+
const flatVerb = flatCommandVerb(command2);
|
|
235667
|
+
if (flatVerb) {
|
|
235668
|
+
const { runV7: runV73 } = await Promise.resolve().then(() => (init_cli_v7(), exports_cli_v7));
|
|
235669
|
+
await runV73([process.argv[0], process.argv[1], flatVerb, command2, ...process.argv.slice(3)]);
|
|
235670
|
+
return;
|
|
235671
|
+
}
|
|
235641
235672
|
const { runV7: runV72 } = await Promise.resolve().then(() => (init_cli_v7(), exports_cli_v7));
|
|
235642
235673
|
await runV72([process.argv[0], process.argv[1], "act", "get", ...process.argv.slice(2)]);
|
|
235643
235674
|
return;
|
|
@@ -235647,6 +235678,7 @@ var init_cli = __esm(async () => {
|
|
|
235647
235678
|
init_infer_write_method();
|
|
235648
235679
|
init_extract_auth_header();
|
|
235649
235680
|
init_kuri_proxy_bridge();
|
|
235681
|
+
init_kind_map();
|
|
235650
235682
|
init_cached_resolution();
|
|
235651
235683
|
init_cardinality();
|
|
235652
235684
|
init_issue();
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"repo_url": "https://github.com/justrach/kuri.git",
|
|
3
3
|
"branch": "adding-extensions",
|
|
4
4
|
"source_sha": "149881254046a20778f642b69f20f0c6468f6fb4",
|
|
5
|
-
"built_at": "2026-06-
|
|
5
|
+
"built_at": "2026-06-19T00:21:56.846Z",
|
|
6
6
|
"binaries": {
|
|
7
7
|
"darwin-arm64": {
|
|
8
8
|
"zig_target": "aarch64-macos",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"linux-x64": {
|
|
23
23
|
"zig_target": "x86_64-linux",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "387fe5bd853ec1abec14c210de1fd5db3ea746663a7478884917d96a4b9712be"
|
|
25
25
|
},
|
|
26
26
|
"win-x64": {
|
|
27
27
|
"zig_target": "x86_64-windows-gnu",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "c02f10a255a9051dc2b6a0ceef46da0006403305f9df039294bc0e9e54e54a13",
|
|
29
29
|
"source": "pre-staged"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
"darwin-arm64": {
|
|
34
34
|
"zig_target": "aarch64-macos",
|
|
35
35
|
"lib": "libkuri_ffi.dylib",
|
|
36
|
-
"sha256": "
|
|
36
|
+
"sha256": "f560bdd70f5cc75a45575298548f120d6bf1145769120e3ff57fa2b38428654a"
|
|
37
37
|
},
|
|
38
38
|
"darwin-x64": {
|
|
39
39
|
"zig_target": "x86_64-macos",
|
|
40
40
|
"lib": "libkuri_ffi.dylib",
|
|
41
|
-
"sha256": "
|
|
41
|
+
"sha256": "2b9dbab735330001456d8c7b982cd55108b35d45c65cd72a43a6277984d3c696"
|
|
42
42
|
},
|
|
43
43
|
"linux-arm64": {
|
|
44
44
|
"zig_target": "aarch64-linux",
|
|
45
45
|
"lib": "libkuri_ffi.so",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "3ddd0fe9cadf42360c87cba7a52794e7ec0ef80785407c426edeb58cbb8d220f"
|
|
47
47
|
},
|
|
48
48
|
"linux-x64": {
|
|
49
49
|
"zig_target": "x86_64-linux",
|
|
50
50
|
"lib": "libkuri_ffi.so",
|
|
51
|
-
"sha256": "
|
|
51
|
+
"sha256": "c88074afbbd171ac67833f10994c6445c9c127869f7f785ed751203c1ca029e3"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
Binary file
|