visionclaw 0.1.173-beta.0 → 0.1.173

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## [0.1.173](https://github.com/babelcloud/visionclaw/compare/v0.1.173-beta.0...v0.1.173) (2026-03-29)
2
+
3
+
4
+ ### Features
5
+
6
+ * add default search skill with Google Lens image identification ([627857a](https://github.com/babelcloud/visionclaw/commit/627857ae8f6181f09d30742daa241f3d00e3d156))
7
+ * add machine management service ([1d94b0f](https://github.com/babelcloud/visionclaw/commit/1d94b0f31a75e71e088cae9412b9b44086454d88))
8
+ * enhance delete machine confirmation prompt ([21b477b](https://github.com/babelcloud/visionclaw/commit/21b477b3b2d45a9ce20b1597d8b9f327f51ac130))
9
+ * enhance machine management service with authentication and structured location support ([262136a](https://github.com/babelcloud/visionclaw/commit/262136af944db7c69b1f25d1b2a32a10b607515f))
10
+
11
+
12
+
1
13
  ## [0.1.172](https://github.com/babelcloud/visionclaw/compare/v0.1.171...v0.1.172) (2026-03-28)
2
14
 
3
15
 
@@ -0,0 +1,66 @@
1
+ ---
2
+ description: Use this skill for web search using SerpAPI. Covers general search, image/artwork identification via Google Lens, and other specialized search engines.
3
+ ---
4
+
5
+ # Web Search with SerpAPI
6
+
7
+ You have access to SerpAPI via the `mcp__serpapi__search` tool. It supports many engines — use the right one for the task.
8
+
9
+ ## General Web Search
10
+
11
+ ```json
12
+ {"params": {"q": "your query", "engine": "google_light"}, "mode": "compact"}
13
+ ```
14
+
15
+ Use `google_light` for most searches (faster, cheaper). Use `google` when you need full results including knowledge graph, AI overview, etc.
16
+
17
+ ## Image / Artwork Identification (Google Lens)
18
+
19
+ To identify what's in an image (artwork, object, landmark, product, etc.), use a **two-step** Google Lens flow. This is much more effective than `google_reverse_image`, which only returns visually similar images without identifying the subject.
20
+
21
+ ### Step 1: Google Lens lookup
22
+
23
+ ```json
24
+ {"params": {"engine": "google_lens", "url": "<public_image_url>"}, "mode": "compact"}
25
+ ```
26
+
27
+ - The image URL **must be publicly accessible**. If you only have a local file, upload it first (e.g. to catbox.moe via `curl -F "reqtype=fileupload" -F "fileToUpload=@/path/to/image.jpg" https://catbox.moe/user/api.php`).
28
+ - The response includes `visual_matches` and an `ai_overview` object.
29
+ - Extract `ai_overview.page_token` from the response.
30
+
31
+ ### Step 2: Get full AI Overview
32
+
33
+ ```json
34
+ {"params": {"engine": "google_ai_overview", "page_token": "<token_from_step_1>"}, "mode": "compact"}
35
+ ```
36
+
37
+ This returns the full AI Overview text with detailed identification — artist, title, date, medium, provenance, and context for artworks; species, model, landmark name, etc. for other subjects.
38
+
39
+ ### Example: Identifying a painting
40
+
41
+ ```
42
+ # Step 1
43
+ search(params={"engine": "google_lens", "url": "https://example.com/mystery-painting.jpg"}, mode="compact")
44
+ # Response includes: ai_overview.page_token = "abc123..."
45
+
46
+ # Step 2
47
+ search(params={"engine": "google_ai_overview", "page_token": "abc123..."}, mode="compact")
48
+ # Response: Full identification with artist, title, year, etc.
49
+ ```
50
+
51
+ ## Other Useful Engines
52
+
53
+ | Engine | Use case |
54
+ |--------|----------|
55
+ | `google_light` | General web search (default) |
56
+ | `google` | Full Google search with knowledge graph |
57
+ | `google_lens` | Image identification (step 1) |
58
+ | `google_ai_overview` | AI overview details (step 2) |
59
+ | `google_news` | News search |
60
+ | `google_images` | Image search by text query |
61
+ | `google_shopping` | Product search and price comparison |
62
+ | `google_flights` | Flight search |
63
+ | `google_hotels` | Hotel search |
64
+ | `youtube_search` | YouTube video search |
65
+ | `google_local` | Local business search |
66
+ | `google_jobs` | Job search |
@@ -20333,7 +20333,7 @@ var require_prompts3 = __commonJS({
20333
20333
 
20334
20334
  // dist/utils/version-check.js
20335
20335
  function isBundled() {
20336
- const v10 = "0.1.173-beta.0";
20336
+ const v10 = "0.1.173";
20337
20337
  return typeof v10 === "string" && v10 !== "undefined";
20338
20338
  }
20339
20339
  function getPackageRoot() {
@@ -20350,7 +20350,7 @@ function getInstallationInfo() {
20350
20350
  };
20351
20351
  }
20352
20352
  function getCurrentVersion() {
20353
- const bundledVersion = "0.1.173-beta.0";
20353
+ const bundledVersion = "0.1.173";
20354
20354
  if (bundledVersion && bundledVersion !== "undefined") {
20355
20355
  return bundledVersion;
20356
20356
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "visionclaw",
3
- "version": "0.1.173-beta.0",
3
+ "version": "0.1.173",
4
4
  "description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",