@zenalexa/unicli 0.222.3 → 0.223.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.
Files changed (108) hide show
  1. package/AGENTS.md +24 -1
  2. package/README.md +16 -5
  3. package/README.zh-CN.md +2 -2
  4. package/dist/browser/auth-sync.d.ts +32 -0
  5. package/dist/browser/auth-sync.d.ts.map +1 -0
  6. package/dist/browser/auth-sync.js +119 -0
  7. package/dist/browser/auth-sync.js.map +1 -0
  8. package/dist/browser/bridge.d.ts +2 -0
  9. package/dist/browser/bridge.d.ts.map +1 -1
  10. package/dist/browser/bridge.js +4 -3
  11. package/dist/browser/bridge.js.map +1 -1
  12. package/dist/browser/cdp-client.d.ts +5 -0
  13. package/dist/browser/cdp-client.d.ts.map +1 -1
  14. package/dist/browser/cdp-client.js +18 -3
  15. package/dist/browser/cdp-client.js.map +1 -1
  16. package/dist/browser/chrome-policy.d.ts +38 -0
  17. package/dist/browser/chrome-policy.d.ts.map +1 -0
  18. package/dist/browser/chrome-policy.js +261 -0
  19. package/dist/browser/chrome-policy.js.map +1 -0
  20. package/dist/browser/daemon-client.d.ts +3 -0
  21. package/dist/browser/daemon-client.d.ts.map +1 -1
  22. package/dist/browser/daemon-client.js +13 -15
  23. package/dist/browser/daemon-client.js.map +1 -1
  24. package/dist/browser/doctor.d.ts +147 -0
  25. package/dist/browser/doctor.d.ts.map +1 -0
  26. package/dist/browser/doctor.js +784 -0
  27. package/dist/browser/doctor.js.map +1 -0
  28. package/dist/browser/launcher.d.ts +17 -8
  29. package/dist/browser/launcher.d.ts.map +1 -1
  30. package/dist/browser/launcher.js +51 -11
  31. package/dist/browser/launcher.js.map +1 -1
  32. package/dist/browser/local-profiles.d.ts +55 -0
  33. package/dist/browser/local-profiles.d.ts.map +1 -0
  34. package/dist/browser/local-profiles.js +333 -0
  35. package/dist/browser/local-profiles.js.map +1 -0
  36. package/dist/cli.d.ts.map +1 -1
  37. package/dist/cli.js +14 -1
  38. package/dist/cli.js.map +1 -1
  39. package/dist/commands/browser/index.d.ts +2 -2
  40. package/dist/commands/browser/index.d.ts.map +1 -1
  41. package/dist/commands/browser/index.js +195 -14
  42. package/dist/commands/browser/index.js.map +1 -1
  43. package/dist/commands/compute.d.ts.map +1 -1
  44. package/dist/commands/compute.js +116 -11
  45. package/dist/commands/compute.js.map +1 -1
  46. package/dist/commands/doctor-compute.d.ts +3 -1
  47. package/dist/commands/doctor-compute.d.ts.map +1 -1
  48. package/dist/commands/doctor-compute.js +78 -2
  49. package/dist/commands/doctor-compute.js.map +1 -1
  50. package/dist/compute/capture-reference.d.ts +40 -0
  51. package/dist/compute/capture-reference.d.ts.map +1 -0
  52. package/dist/compute/capture-reference.js +285 -0
  53. package/dist/compute/capture-reference.js.map +1 -0
  54. package/dist/compute/capture.d.ts +67 -0
  55. package/dist/compute/capture.d.ts.map +1 -0
  56. package/dist/compute/capture.js +247 -0
  57. package/dist/compute/capture.js.map +1 -0
  58. package/dist/discovery/aliases.d.ts.map +1 -1
  59. package/dist/discovery/aliases.js +13 -0
  60. package/dist/discovery/aliases.js.map +1 -1
  61. package/dist/discovery/core-catalog.d.ts +37 -0
  62. package/dist/discovery/core-catalog.d.ts.map +1 -0
  63. package/dist/discovery/core-catalog.js +352 -0
  64. package/dist/discovery/core-catalog.js.map +1 -0
  65. package/dist/discovery/intents.d.ts.map +1 -1
  66. package/dist/discovery/intents.js +51 -0
  67. package/dist/discovery/intents.js.map +1 -1
  68. package/dist/discovery/search.d.ts +10 -6
  69. package/dist/discovery/search.d.ts.map +1 -1
  70. package/dist/discovery/search.js +21 -102
  71. package/dist/discovery/search.js.map +1 -1
  72. package/dist/engine/executor.d.ts +6 -1
  73. package/dist/engine/executor.d.ts.map +1 -1
  74. package/dist/engine/executor.js +2 -0
  75. package/dist/engine/executor.js.map +1 -1
  76. package/dist/engine/kernel/stages.d.ts.map +1 -1
  77. package/dist/engine/kernel/stages.js +4 -0
  78. package/dist/engine/kernel/stages.js.map +1 -1
  79. package/dist/engine/steps/browser-helpers.d.ts.map +1 -1
  80. package/dist/engine/steps/browser-helpers.js +29 -1
  81. package/dist/engine/steps/browser-helpers.js.map +1 -1
  82. package/dist/fast-path/handlers/discovery.d.ts.map +1 -1
  83. package/dist/fast-path/handlers/discovery.js +80 -1
  84. package/dist/fast-path/handlers/discovery.js.map +1 -1
  85. package/dist/manifest.json +1 -1
  86. package/dist/mcp/handler.d.ts.map +1 -1
  87. package/dist/mcp/handler.js +19 -4
  88. package/dist/mcp/handler.js.map +1 -1
  89. package/dist/mcp/profiles/computer-use.d.ts.map +1 -1
  90. package/dist/mcp/profiles/computer-use.js +106 -4
  91. package/dist/mcp/profiles/computer-use.js.map +1 -1
  92. package/docs/mcp/clients/claude-code.md +8 -7
  93. package/docs/mcp/clients/claude-desktop.md +1 -1
  94. package/docs/mcp/clients/codex.md +1 -1
  95. package/docs/mcp/clients/cursor.md +1 -1
  96. package/docs/mcp/clients/gemini-cli.md +1 -1
  97. package/docs/operate/compute.md +58 -0
  98. package/docs/operate/focus-behavior.md +25 -0
  99. package/package.json +1 -1
  100. package/server.json +2 -2
  101. package/skills/unicli/SKILL.md +54 -38
  102. package/skills/unicli-browser/SKILL.md +56 -10
  103. package/skills/unicli-claude-code/SKILL.md +1 -1
  104. package/skills/unicli-hermes/SKILL.md +1 -1
  105. package/skills/unicli-operate/SKILL.md +1 -1
  106. package/skills/unicli-smart-search/SKILL.md +7 -5
  107. package/skills/unicli-usage/SKILL.md +39 -1
  108. package/src/hub/external-clis.yaml +6 -0
@@ -1 +1 @@
1
- {"version":3,"file":"computer-use.js","sourceRoot":"","sources":["../../../src/mcp/profiles/computer-use.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"computer-use.js","sourceRoot":"","sources":["../../../src/mcp/profiles/computer-use.ts"],"names":[],"mappings":"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"}
@@ -7,12 +7,13 @@ claude mcp add computer-use \
7
7
  -- npx -y @zenalexa/unicli mcp serve --profile computer-use
8
8
  ```
9
9
 
10
- The profile exposes only the 15 local computer-control tools:
11
- `computer-use.apps`, `computer-use.windows`, `computer-use.snapshot`,
12
- `computer-use.find`, `computer-use.click`, `computer-use.type`,
13
- `computer-use.press`, `computer-use.scroll`, `computer-use.launch`,
14
- `computer-use.screenshot`, `computer-use.attach`, `computer-use.evaluate`,
15
- `computer-use.wait`, `computer-use.observe`, and `computer-use.assert`.
10
+ The profile exposes only the 16 local computer-control tools:
11
+ `computer-use.apps`, `computer-use.windows`, `computer-use.capture`,
12
+ `computer-use.snapshot`, `computer-use.find`, `computer-use.click`,
13
+ `computer-use.type`, `computer-use.press`, `computer-use.scroll`,
14
+ `computer-use.launch`, `computer-use.screenshot`, `computer-use.attach`,
15
+ `computer-use.evaluate`, `computer-use.wait`, `computer-use.observe`, and
16
+ `computer-use.assert`.
16
17
 
17
18
  ## Permissions
18
19
 
@@ -26,4 +27,4 @@ the UIA and AT-SPI sidecars respectively.
26
27
  npx -y @zenalexa/unicli mcp serve --profile computer-use
27
28
  ```
28
29
 
29
- The server banner should report `15 tools registered, mode=computer-use`.
30
+ The server banner should report `16 tools registered, mode=computer-use`.
@@ -44,4 +44,4 @@ Run this outside Claude first:
44
44
  npx -y @zenalexa/unicli mcp serve --profile computer-use
45
45
  ```
46
46
 
47
- The server banner should report `15 tools registered, mode=computer-use`.
47
+ The server banner should report `16 tools registered, mode=computer-use`.
@@ -26,4 +26,4 @@ Linux require the platform accessibility services used by UIA and AT-SPI.
26
26
  npx -y @zenalexa/unicli mcp serve --profile computer-use
27
27
  ```
28
28
 
29
- The server banner should report `15 tools registered, mode=computer-use`.
29
+ The server banner should report `16 tools registered, mode=computer-use`.
@@ -35,4 +35,4 @@ UIA and AT-SPI sidecars.
35
35
  npx -y @zenalexa/unicli mcp serve --profile computer-use
36
36
  ```
37
37
 
38
- The server banner should report `15 tools registered, mode=computer-use`.
38
+ The server banner should report `16 tools registered, mode=computer-use`.
@@ -35,4 +35,4 @@ UIA and AT-SPI sidecars respectively.
35
35
  npx -y @zenalexa/unicli mcp serve --profile computer-use
36
36
  ```
37
37
 
38
- The server banner should report `15 tools registered, mode=computer-use`.
38
+ The server banner should report `16 tools registered, mode=computer-use`.
@@ -32,6 +32,49 @@ refs preserve it, and `compute find --text <text>` can match that value. This is
32
32
  useful for calculator displays, address fields, editors, and status labels
33
33
  whose value is not part of the accessible name.
34
34
 
35
+ ## Capture Context
36
+
37
+ `compute capture` combines a structured snapshot and screenshot evidence into
38
+ one reusable context packet for agents. Use it when the next step needs both
39
+ addressable refs and pixels, or when you want to hand a compact state packet to
40
+ another tool without making it re-read the app.
41
+
42
+ ```bash
43
+ unicli compute capture --app Calculator --format compact
44
+ unicli compute capture --app Figma --include snapshot,screenshot --screenshot-path /tmp/figma.png
45
+ unicli compute capture --app Calculator --save-reference
46
+ unicli compute capture --app Calculator --copy-reference
47
+ unicli compute capture --app Calculator --reference-root /tmp/captures --save-reference
48
+ ```
49
+
50
+ The command reuses the same `compute snapshot` and `compute screenshot` cascade
51
+ paths, so it inherits the platform transport order, ref persistence, and
52
+ structured error envelopes. The packet succeeds when at least one requested part
53
+ is captured and records per-part errors when the other part is unavailable.
54
+ When screenshot bytes are available, the screenshot part includes `image`
55
+ metadata with byte count, SHA-256, dimensions, and an image-pixel coordinate
56
+ space whose origin is the top-left corner. Packets also include a replayable
57
+ trajectory listing the `compute_snapshot` and `compute_screenshot` actions,
58
+ params, ordering, and per-step success state that produced the packet.
59
+ `--save-reference` writes a local artifact directory under
60
+ `~/.unicli/app-shots` and returns `[app-shots ...]` markup with image, content,
61
+ and metadata file paths. Use `--reference-root` to choose a different artifact
62
+ root for CI, handoff directories, or isolated experiments. `--copy-reference`
63
+ saves the same artifact and copies the markup to the host clipboard. The
64
+ content and metadata files are optimized for agent handoff: element refs remain,
65
+ but geometry strings and raw accessibility object pointers are stripped from
66
+ the text copy so the packet does not encourage coordinate-string matching.
67
+
68
+ The compute family is also part of the normal command discovery surface. Agents
69
+ can find it without knowing the exact subcommand:
70
+
71
+ ```bash
72
+ unicli search "Appshots"
73
+ unicli search "local computer use capture"
74
+ unicli list --site compute
75
+ unicli describe compute capture
76
+ ```
77
+
35
78
  ## Commands
36
79
 
37
80
  | Command | Purpose |
@@ -39,6 +82,8 @@ whose value is not part of the accessible name.
39
82
  | `compute apps` | List running apps |
40
83
  | `compute windows --app <name>` | List windows |
41
84
  | `compute snapshot --app <name> --format compact` | Capture a compact/tree/json accessibility snapshot |
85
+ | `compute capture --app <name>` | Capture snapshot refs and screenshot evidence |
86
+ | `compute capture --copy-reference` | Save and copy `[app-shots ...]` handoff markup |
42
87
  | `compute find --role <role> --name/--text <text>` | Find matching refs by label or value |
43
88
  | `compute click <ref>` | Click a ref |
44
89
  | `compute type <ref> <text>` | Set or type text |
@@ -105,6 +150,19 @@ cross-OS smoke artifacts keep enough evidence for repair. `--output` writes the
105
150
  same schema-versioned report to disk for CI artifacts or manual release
106
151
  evidence.
107
152
 
153
+ ## Provider Discovery
154
+
155
+ `doctor compute --providers` adds non-blocking discovery checks for optional
156
+ local computer-use provider commands and configured visual-model backends. These
157
+ checks are reported as `ok`, `warn`, or `skip` and do not make the base doctor
158
+ fail. Set `UNICLI_COMPUTE_PROVIDER_COMMAND` or the platform-specific
159
+ `UNICLI_<PLATFORM>_COMPUTE_PROVIDER_COMMAND` environment variable when you want
160
+ Uni-CLI to probe an installed provider.
161
+
162
+ ```bash
163
+ unicli doctor compute --providers
164
+ ```
165
+
108
166
  ## Focus Stealing
109
167
 
110
168
  Actuating commands prefer background mode: `compute click`, `compute type`,
@@ -5,6 +5,15 @@ verbs. Use `--focus` or `focus: true` only when the target app must be brought
5
5
  forward before the action can succeed. The visual fallback is treated as
6
6
  focus-taking when the cascade reaches it.
7
7
 
8
+ The browser bridge follows the same rule. Daemon commands send
9
+ `windowFocused: false` by default, extension session/doctor probes are
10
+ read-only and must not create `about:blank` placeholder tabs, and headed local
11
+ Chrome launches use `--no-startup-window` unless the caller explicitly opts
12
+ into foreground startup with `unicli browser --focus start`. Chrome/CDP
13
+ launches use Uni-CLI-owned automation profiles under `~/.unicli/`; logged-in
14
+ state is reused by importing cookies from the selected local browser profile
15
+ instead of launching CDP against Chrome's default user-data-dir.
16
+
8
17
  ## Defaults
9
18
 
10
19
  | Verb | desktop-ax (macOS) | desktop-uia (Windows) | desktop-atspi (Linux) | cdp-browser | visual fallback |
@@ -20,6 +29,22 @@ focus-taking when the cascade reaches it.
20
29
  - `compute click`, `compute type`, `compute press`, and `compute scroll` pass
21
30
  `focus: false` to AX, UIA, AT-SPI, and CDP unless the caller sets `--focus`
22
31
  or `focus: true`.
32
+ - `browser open`, `browser state`, `browser click`, `browser type`,
33
+ `browser screenshot`, and daemon-backed browser commands pass
34
+ `windowFocused: false` unless `--focus` or `UNICLI_WINDOW_FOCUSED=1` is set.
35
+ `browser doctor` and `browser sessions` inspect existing sessions without
36
+ allocating a placeholder window.
37
+ - Chrome 136+ disables remote debugging for the browser's default
38
+ user-data-dir. Treat a process with `--remote-debugging-port` but no listening
39
+ port as a default-profile launch defect, not a retryable CDP race. The
40
+ correct repair is an automation profile plus cookie import from
41
+ `unicli browser profiles --json`. `unicli browser doctor --json` reports this
42
+ as the `default profile CDP trap` check, and `unicli browser doctor --repair`
43
+ starts the safe Uni-CLI automation CDP profile when needed. The
44
+ `chrome_remote_debugging` section also reports `RemoteDebuggingAllowed`:
45
+ `false` blocks every local CDP path until the managed Chrome policy is
46
+ removed or set true, while `true` still does not bypass the Chrome 136+
47
+ default-directory restriction.
23
48
  - macOS background input is not a global HID path. It resolves a running app
24
49
  and on-screen window, installs per-process event taps for the previous and
25
50
  target apps, sends an AppKit activation primer plus a center primer only when
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenalexa/unicli",
3
- "version": "0.222.3",
3
+ "version": "0.223.1",
4
4
  "description": "Operations substrate for agents that use real software: web, browsers, desktop apps, local tools, MCP, policy, evidence, and self-repair.",
5
5
  "packageManager": "npm@11.14.0",
6
6
  "type": "module",
package/server.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
3
3
  "name": "io.github.olo-dot-io/Uni-CLI",
4
4
  "description": "Self-repairing CLI catalog that exposes 282 websites, desktop apps, and external CLIs as one MCP server. 949 declarative YAML adapters and 1686 commands; structured error envelopes let agents fix failing adapters at runtime and retry.",
5
- "version": "0.222.3",
5
+ "version": "0.223.1",
6
6
  "repository": {
7
7
  "url": "https://github.com/olo-dot-io/Uni-CLI",
8
8
  "source": "github"
@@ -13,7 +13,7 @@
13
13
  "registryType": "npm",
14
14
  "registryBaseUrl": "https://registry.npmjs.org",
15
15
  "identifier": "@zenalexa/unicli",
16
- "version": "0.222.3",
16
+ "version": "0.223.1",
17
17
  "transport": {
18
18
  "type": "stdio"
19
19
  },
@@ -3,7 +3,7 @@ name: unicli
3
3
  description: >
4
4
  Comprehensive guide to using Uni-CLI — the universal CLI for AI agents.
5
5
  Trigger when the user needs to fetch data from websites (Twitter, Bilibili,
6
- HackerNews, GitHub, Reddit, Bloomberg, Zhihu, WeChat, and 230+ more);
6
+ HackerNews, GitHub, Reddit, Bloomberg, Zhihu, WeChat, and hundreds more);
7
7
  interact with news, finance, social, academic, shopping, or video platforms;
8
8
  control macOS desktop apps (Blender, GIMP, Figma, VS Code, Cursor, Terminal,
9
9
  Discord, Slack, etc.) via AppleScript or Accessibility API; automate browser
@@ -11,7 +11,7 @@ description: >
11
11
  major platform; run desktop workflows or system tasks; or when the user says
12
12
  "unicli", "scrape", "fetch from", "get trending", "check [site]", "find on
13
13
  [platform]", "获取", "查询", "抓取".
14
- version: 0.222.3
14
+ version: 0.223.1
15
15
  category: core
16
16
  depends-on:
17
17
  - talk-normal
@@ -39,10 +39,12 @@ triggers:
39
39
 
40
40
  # Uni-CLI — Agent Usage Guide
41
41
 
42
- unicli converts 237 websites, 2,000+ desktop apps, and macOS system tools into
43
- deterministic CLI commands. Each command is a ≤20-line YAML pipeline: fetch data,
44
- transform it, emit a v2 AgentEnvelope. When a command breaks, read the structured
45
- error, edit the YAML adapter, and it stays fixed for all future calls.
42
+ unicli is the default structured substrate before raw browser automation, legacy
43
+ OpenCLI, curl, or computer-use. It covers websites, logged-in browser sessions,
44
+ desktop apps, macOS system state, local tools, external CLIs, and MCP surfaces
45
+ through deterministic commands. Commands emit a v2 AgentEnvelope; when a command
46
+ breaks, read the structured error and run the repair path instead of inventing a
47
+ one-off workaround.
46
48
 
47
49
  **Install** (once): `npm install -g @zenalexa/unicli`
48
50
 
@@ -51,7 +53,8 @@ error, edit the YAML adapter, and it stays fixed for all future calls.
51
53
  ## Five-Command Quick Start
52
54
 
53
55
  ```bash
54
- unicli list # browse all 3,319 commands
56
+ unicli search "intent" # discover the right command
57
+ unicli list # browse all commands
55
58
  unicli list --site hackernews # commands for one site
56
59
  unicli hackernews top --limit 5 # run a command
57
60
  unicli hackernews top --limit 5 -f json # machine-readable JSON envelope
@@ -64,26 +67,21 @@ unicli describe hackernews top # full schema + example payload
64
67
 
65
68
  ### Find by site
66
69
 
67
- ```bash
68
- unicli list --site <site> # all commands for a site
69
- unicli describe <site> <command> # args, output columns, example
70
- ```
71
-
72
- ### Search by keyword
73
-
74
70
  ```bash
75
71
  unicli search "trending" # semantic search across all commands
76
72
  unicli search "hot stock" # natural language
73
+ unicli list --site <site> # all commands for a site
74
+ unicli describe <site> <command> # args, output columns, example
77
75
  ```
78
76
 
79
77
  ### Browse by type
80
78
 
81
79
  ```bash
82
- unicli list --type web-api # REST API adapters (1,138 commands)
83
- unicli list --type desktop # desktop app control (2,068 commands)
84
- unicli list --type browser # browser automation (23 commands)
85
- unicli list --type service # local/remote services (43 commands)
86
- unicli list --type bridge # passthrough CLI bridges (47 commands)
80
+ unicli list --type web-api # REST API adapters
81
+ unicli list --type desktop # desktop app control
82
+ unicli list --type browser # browser automation
83
+ unicli list --type service # local/remote services
84
+ unicli list --type bridge # passthrough CLI bridges
87
85
  ```
88
86
 
89
87
  ### Check if a site exists
@@ -153,7 +151,7 @@ unicli reddit hot --limit 25 --cursor <token> -f json
153
151
  ## Step 3 — Read the Output
154
152
 
155
153
  Every command emits a **v2 AgentEnvelope**. Learn the shape once; it applies to
156
- all 3,319 commands.
154
+ every command.
157
155
 
158
156
  ### JSON structure
159
157
 
@@ -212,13 +210,23 @@ automatically.
212
210
 
213
211
  ### Strategy ladder
214
212
 
215
- | Strategy | Auth needed | How to set up |
216
- | ----------- | --------------------- | ------------------------------------------------------ |
217
- | `public` | None | Works out of the box |
218
- | `cookie` | Browser login | `unicli auth setup <site>` → log in once in browser |
219
- | `header` | Cookie + CSRF | Same as `cookie`; auto-extracted per request |
220
- | `intercept` | Browser session | `unicli browser start` then `unicli auth setup <site>` |
221
- | `ui` | Browser + interaction | Same; unicli clicks through login flow |
213
+ | Strategy | Auth needed | How to set up |
214
+ | ----------- | --------------------- | ----------------------------------------------------------------------------------- |
215
+ | `public` | None | Works out of the box |
216
+ | `cookie` | Browser login | `unicli auth setup <site>` → log in once in browser |
217
+ | `header` | Cookie + CSRF | Same as `cookie`; auto-extracted per request |
218
+ | `intercept` | Browser session | `unicli browser doctor --repair` then `unicli auth import <site> --domain <domain>` |
219
+ | `ui` | Browser + interaction | Same; unicli clicks through login flow |
220
+
221
+ For robust logged-in reuse, prefer the explicit current browser paths:
222
+
223
+ ```bash
224
+ unicli browser profiles --json
225
+ unicli auth import <site> --domain <domain>
226
+ unicli browser cookies <domain> --profile-id <id>
227
+ unicli browser doctor --json
228
+ unicli browser doctor --repair
229
+ ```
222
230
 
223
231
  ### Auth setup workflow
224
232
 
@@ -245,16 +253,16 @@ directly; use `unicli auth`.
245
253
 
246
254
  ### Exit code → action (primary decision tree)
247
255
 
248
- | Code | Meaning | Action |
249
- | ---- | ---------------------- | -------------------------------------------------- |
250
- | 0 | Success | Read `data` |
251
- | 1 | Generic error | Read `error.reason` + `error.suggestion` |
252
- | 2 | Usage error | Fix arg syntax; run `unicli describe <site> <cmd>` |
253
- | 66 | Empty result | Try different query terms or `--limit` |
254
- | 69 | Service unavailable | `unicli browser start` then retry |
255
- | 75 | Temp failure / timeout | Retry once; if persists → load `unicli-repair` |
256
- | 77 | Auth required | `unicli auth setup <site>` then retry |
257
- | 78 | Config error | Read `error.suggestion`; check `~/.unicli/` config |
256
+ | Code | Meaning | Action |
257
+ | ---- | ---------------------- | ------------------------------------------------------ |
258
+ | 0 | Success | Read `data` |
259
+ | 1 | Generic error | Read `error.reason` + `error.suggestion` |
260
+ | 2 | Usage error | Fix arg syntax; run `unicli describe <site> <cmd>` |
261
+ | 66 | Empty result | Try different query terms or `--limit` |
262
+ | 69 | Service unavailable | `unicli browser doctor --json`, then `doctor --repair` |
263
+ | 75 | Temp failure / timeout | Retry once; if persists → load `unicli-repair` |
264
+ | 77 | Auth required | `unicli auth import` or explicit browser cookies |
265
+ | 78 | Config error | Read `error.suggestion`; check `~/.unicli/` config |
258
266
 
259
267
  ### Failure envelope fields
260
268
 
@@ -293,7 +301,10 @@ Use browser mode when: a site requires JavaScript rendering, login-gated access,
293
301
  interaction (click/type/scroll), or the API adapter returns exit 69.
294
302
 
295
303
  ```bash
296
- unicli browser start # launch Chrome with CDP (required first)
304
+ unicli browser doctor --json # read default_path/checks/self_repair
305
+ unicli browser doctor --repair # safe local CDP self-repair
306
+ unicli browser start # launch Chrome with CDP without foreground startup
307
+ unicli browser --focus start # opt into foreground only for interactive login
297
308
  unicli browser status # confirm CDP is alive + session state
298
309
  unicli browser open <url> # navigate to page
299
310
  unicli browser state # DOM accessibility tree with [ref] IDs
@@ -306,6 +317,11 @@ unicli browser screenshot # capture to file
306
317
 
307
318
  For a guided browser automation workflow, load skill `unicli-browser`.
308
319
 
320
+ Browser commands are background-first on macOS and desktop systems:
321
+ daemon-backed commands send `windowFocused: false` by default, doctor/session
322
+ probes do not allocate `about:blank` placeholder tabs, and local headed Chrome
323
+ startup uses `--no-startup-window` unless `--focus` is explicit.
324
+
309
325
  ---
310
326
 
311
327
  ## Composition Patterns
@@ -21,8 +21,12 @@ Use `unicli browser` for both browser lifecycle and direct page interaction.
21
21
  ## Quick Start
22
22
 
23
23
  ```bash
24
- unicli browser start # Launch Chrome with CDP
24
+ unicli browser start # Launch Chrome with CDP without a foreground startup window
25
+ unicli browser doctor --repair # Safe repair: start Uni-CLI automation CDP if needed
26
+ unicli browser --focus start # Foreground only for explicit interactive login
25
27
  unicli browser status # Check CDP + daemon/session status
28
+ unicli browser doctor --json # Machine-readable reliability report
29
+ unicli browser profiles --json # Discover local logged-in profiles
26
30
  unicli browser open <url> # Navigate to a page
27
31
  unicli browser state # DOM accessibility tree with [ref] numbers
28
32
  unicli browser screenshot # Visual capture to file
@@ -33,25 +37,50 @@ unicli browser extract # Chunked long-form text extraction
33
37
  ## Browser Lifecycle
34
38
 
35
39
  ```bash
36
- unicli browser start # Spawn Chrome + daemon (port 19825)
40
+ unicli browser start # Spawn Chrome + daemon in background-safe mode
41
+ unicli browser doctor --repair # Safe self-repair for local automation CDP
42
+ unicli browser --focus start # Opt into a foreground startup window
37
43
  unicli browser status # Connection health check
38
44
  unicli daemon status # Daemon process info
39
45
  unicli daemon stop # Stop daemon
40
46
  unicli daemon restart # Restart daemon
41
47
  ```
42
48
 
43
- The daemon auto-exits after idle timeout. Chrome reuses your existing login sessions.
49
+ The daemon auto-exits after idle timeout. Chrome/CDP uses Uni-CLI-owned
50
+ automation profiles under `~/.unicli/` rather than the browser's default
51
+ user-data-dir. Logged-in state is reused by importing cookies from the selected
52
+ local profile into the automation profile. Browser commands default to
53
+ `windowFocused: false`; use `--focus` only when a real interactive login step
54
+ must bring Chrome forward.
44
55
 
45
56
  ## Authentication
46
57
 
47
58
  ```bash
48
59
  unicli auth setup <site> # Show required cookies + file template
60
+ unicli auth import <site> --domain <domain> # Direct import from local browser DB
61
+ unicli browser profiles --json # Pick a logged-in Chrome/Arc/Brave/Edge profile
62
+ unicli browser cookies <domain> --profile-id <id> # Explicit cookie export
49
63
  unicli auth check <site> # Validate cookie file
50
64
  unicli auth list # List configured sites
51
65
  ```
52
66
 
53
67
  Cookie files: `~/.unicli/cookies/<site>.json` with format `{ "KEY": "value" }`.
54
68
 
69
+ Chrome 136+ blocks remote debugging when Chrome is launched against its default
70
+ profile directory. Do not tell users to run CDP on
71
+ `~/Library/Application Support/Google/Chrome` or equivalent, and do not suggest
72
+ unstable feature-flag bypasses. `RemoteDebuggingAllowed=false` in
73
+ `chrome://policy` blocks local CDP entirely; removing that managed policy or
74
+ setting it true is a user/admin action. Even when the policy is true, it does
75
+ not make default-profile CDP supported again. Use the automation profile plus
76
+ cookie import path instead:
77
+
78
+ ```bash
79
+ unicli browser profiles --json
80
+ unicli auth import twitter --domain x.com
81
+ unicli twitter trending -f json
82
+ ```
83
+
55
84
  ## Strategies Requiring Browser
56
85
 
57
86
  | Strategy | How it works |
@@ -67,7 +96,9 @@ Cookie files: `~/.unicli/cookies/<site>.json` with format `{ "KEY": "value" }`.
67
96
 
68
97
  There are two browser paths:
69
98
 
70
- 1. `browser start` / `browser cookies` use local Chrome + CDP directly.
99
+ 1. `browser start` uses local Chrome + CDP with a Uni-CLI automation profile.
100
+ `browser cookies` first tries direct local profile cookie import, then only
101
+ reuses a recorded CDP port if that port is already live.
71
102
  2. `browser open/state/click/...` use:
72
103
  CLI -> daemon-client -> HTTP/WS -> daemon -> Browser Bridge extension -> Chrome tabs
73
104
 
@@ -82,6 +113,21 @@ unicli browser --isolated open https://example.com
82
113
  unicli browser --background open https://example.com
83
114
  ```
84
115
 
116
+ `unicli browser doctor --json` and `unicli browser sessions` are read-only
117
+ probes: they inspect daemon/session state without allocating an `about:blank`
118
+ placeholder tab.
119
+
120
+ The doctor report is the routing source of truth for agents:
121
+
122
+ - `default_path`: whether a command can run now, and which runtime mode will
123
+ carry it (`local-cdp-automation-profile`, `remote-cdp`, or daemon extension).
124
+ - `chrome_remote_debugging`: official Chrome 136+ default-directory truth and
125
+ `RemoteDebuggingAllowed` policy state.
126
+ - `checks[*].next_step`: exact next command for each missing capability.
127
+ - `self_repair.safe_command`: safe automated repair. Today this is
128
+ `unicli browser doctor --repair`, which starts only Uni-CLI's automation CDP
129
+ profile and never launches CDP against the user's default Chrome profile.
130
+
85
131
  ## Diagnostics
86
132
 
87
133
  ```bash
@@ -91,9 +137,9 @@ UNICLI_DIAGNOSTIC=1 unicli <site> <cmd> # Enhanced error context
91
137
 
92
138
  ## Troubleshooting
93
139
 
94
- | Problem | Fix |
95
- | ----------------------- | ------------------------------------- |
96
- | "Browser not connected" | `unicli browser start` |
97
- | Exit 69 (unavailable) | `unicli browser start` then retry |
98
- | Exit 77 (auth) | `unicli auth setup <site>` then retry |
99
- | CDP connection dropped | `unicli daemon restart` |
140
+ | Problem | Fix |
141
+ | ----------------------- | ---------------------------------------------------------------------------------------------------- |
142
+ | "Browser not connected" | `unicli browser doctor --json`, then `unicli browser doctor --repair` |
143
+ | Exit 69 (unavailable) | `unicli browser doctor --repair` then retry |
144
+ | Exit 77 (auth) | `unicli auth import <site> --domain <domain>` or `unicli browser cookies <domain> --profile-id <id>` |
145
+ | CDP connection dropped | `unicli daemon restart` |
@@ -6,7 +6,7 @@ description: >
6
6
  newlines, or inline JSON — shell-quoted invocations hit TC0 circuit
7
7
  limits and drop to <50% success above ICS=4. Also covers --describe
8
8
  introspection and next_actions-driven navigation.
9
- version: 0.222.3
9
+ version: 0.223.1
10
10
  depends-on:
11
11
  - talk-normal
12
12
  triggers:
@@ -4,7 +4,7 @@ description: >
4
4
  Use Uni-CLI to interact with 237 websites, desktop apps, and system tools.
5
5
  Trigger when: user asks to check a website, fetch data, control a desktop app,
6
6
  or interact with social media, news, finance, or AI platforms.
7
- version: 0.222.3
7
+ version: 0.223.1
8
8
  depends-on:
9
9
  - talk-normal
10
10
  triggers:
@@ -107,7 +107,7 @@ unicli operate network # See captured JSON APIs
107
107
 
108
108
  | Problem | Fix |
109
109
  | ---------------------- | --------------------------------------- |
110
- | Browser not connected | `unicli browser start` |
110
+ | Browser not connected | `unicli browser doctor --repair` |
111
111
  | Element not found | `scroll down` then `state` |
112
112
  | Stale refs after click | `state` to refresh |
113
113
  | eval returns undefined | Wrap: `"(function(){ return ...; })()"` |
@@ -22,7 +22,8 @@ Commands return a v2 AgentEnvelope; pass `-f json` when you need JSON for parsin
22
22
  ## Pre-Check
23
23
 
24
24
  ```bash
25
- unicli <site> --help # Verify subcommands exist
25
+ unicli search "<intent>" # Discover from live registry first
26
+ unicli list --site <site> # Verify subcommands exist
26
27
  unicli <site> <command> --help # Check args and output columns
27
28
  ```
28
29
 
@@ -64,15 +65,16 @@ unicli hackernews search "startup" --limit 10
64
65
  ## Output Handling
65
66
 
66
67
  ```bash
67
- unicli hackernews top --limit 5 | jq '.[].title'
68
- unicli xueqiu hot | jq '.[] | {name, change}'
68
+ unicli hackernews top --limit 5 -f json | jq '.data[].title'
69
+ unicli xueqiu hot -f json | jq '.data[] | {name, change}'
69
70
  ```
70
71
 
71
72
  ## Fallback
72
73
 
73
- - Exit 77 -> `unicli auth setup <site>` then retry
74
- - Exit 69 -> `unicli browser start` then retry
74
+ - Exit 77 -> `unicli auth import <site> --domain <domain>` or `unicli browser cookies <domain> --profile-id <id>` then retry
75
+ - Exit 69 -> `unicli browser doctor --json`, `unicli browser doctor --repair`, then retry
75
76
  - Exit 66 -> try different query terms
77
+ - Adapter failure -> read stderr envelope and run `unicli repair <site> <command>`
76
78
  - Site down -> switch to alternative from routing table
77
79
 
78
80
  ## Budget