@sightmap/sightkick 0.4.0 → 0.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sightmap/sightkick",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "sightkick — compile a .sightkick/ tool layer + sightmap corpus into WebMCP tool IR, and install the sightkick agent skills (native binary, no Go toolchain required)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://sightmap.org",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@sightmap/sightkick-darwin-arm64": "0.
|
|
38
|
-
"@sightmap/sightkick-darwin-x64": "0.
|
|
39
|
-
"@sightmap/sightkick-linux-arm64": "0.
|
|
40
|
-
"@sightmap/sightkick-linux-x64": "0.
|
|
41
|
-
"@sightmap/sightkick-win32-arm64": "0.
|
|
42
|
-
"@sightmap/sightkick-win32-x64": "0.
|
|
37
|
+
"@sightmap/sightkick-darwin-arm64": "0.5.0",
|
|
38
|
+
"@sightmap/sightkick-darwin-x64": "0.5.0",
|
|
39
|
+
"@sightmap/sightkick-linux-arm64": "0.5.0",
|
|
40
|
+
"@sightmap/sightkick-linux-x64": "0.5.0",
|
|
41
|
+
"@sightmap/sightkick-win32-arm64": "0.5.0",
|
|
42
|
+
"@sightmap/sightkick-win32-x64": "0.5.0"
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -45,8 +45,11 @@ sightmap session, and persist-inject the runtime + tools:
|
|
|
45
45
|
```sh
|
|
46
46
|
sightkick browser <CORPUS_DIR>
|
|
47
47
|
# auto-opens the corpus's home-view URL (or pass --url URL)
|
|
48
|
-
# --webmcp expose the native document.modelContext
|
|
49
|
-
#
|
|
48
|
+
# --webmcp expose the native document.modelContext AND auto-load the
|
|
49
|
+
# bundled WebMCP inspector (+ sightmap's overlay) — open it
|
|
50
|
+
# from Chrome's side panel to drive the tools with Gemini
|
|
51
|
+
# --no-inspector with --webmcp, skip the inspector (native surface only)
|
|
52
|
+
# --extensions P load EXTRA unpacked extensions, merged with the above
|
|
50
53
|
# --profile/--cdp-port/--chrome-flag passed through to sightmap
|
|
51
54
|
# --no-start inject into an already-running session (e.g. after editing the corpus)
|
|
52
55
|
```
|
|
@@ -94,11 +97,18 @@ sightmap browser start --detach --url <SITE_URL> --profile /tmp/sk-dbg
|
|
|
94
97
|
### Mode B — inspector/Gemini-driven (native WebMCP surface)
|
|
95
98
|
Turn on the blink flags so Chrome exposes the real `document.modelContext`, and
|
|
96
99
|
load the **WebMCP inspector** (a drive-with-Gemini sidebar). Our tools register on
|
|
97
|
-
the native surface, so the inspector reads them like any site's own.
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
the native surface, so the inspector reads them like any site's own.
|
|
101
|
+
|
|
102
|
+
The easy path is `sightkick browser <CORPUS_DIR> --webmcp`: it flips the blink
|
|
103
|
+
flags **and** auto-loads the bundled inspector (plus sightmap's overlay). The
|
|
104
|
+
inspector is vendored from upstream
|
|
105
|
+
([`beaufortfrancois/model-context-tool-inspector`](https://github.com/beaufortfrancois/model-context-tool-inspector),
|
|
106
|
+
Apache-2.0) and embedded in the CLI, so nothing to install — open it from Chrome's
|
|
107
|
+
side panel. Add `--no-inspector` for the native surface without it.
|
|
108
|
+
|
|
109
|
+
To do it by hand instead (finer control, or a non-sightkick session), point
|
|
110
|
+
`<INSPECTOR_DIR>` at an unpacked copy of the inspector — the repo's
|
|
111
|
+
`vendor/webmcp-tool/unpacked` (see its `NOTES.md`) or a Chrome-Web-Store install:
|
|
102
112
|
|
|
103
113
|
```sh
|
|
104
114
|
sightmap browser start --detach --url <SITE_URL> --profile /tmp/sk-dbg \
|