@weavetab/mcp 2.5.0-beta.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.
Files changed (281) hide show
  1. package/AGENTS.md +48 -0
  2. package/ARCHITECTURE.md +590 -0
  3. package/LICENSE +631 -0
  4. package/README.md +909 -0
  5. package/SECURITY.md +196 -0
  6. package/TROUBLESHOOTING.md +365 -0
  7. package/dist/anticaptcha/detector.d.ts +49 -0
  8. package/dist/anticaptcha/detector.js +465 -0
  9. package/dist/anticaptcha/integration.d.ts +36 -0
  10. package/dist/anticaptcha/integration.js +123 -0
  11. package/dist/anticaptcha/solver.d.ts +27 -0
  12. package/dist/anticaptcha/solver.js +552 -0
  13. package/dist/audit/logger.d.ts +13 -0
  14. package/dist/audit/logger.js +177 -0
  15. package/dist/audit/telemetry.d.ts +36 -0
  16. package/dist/audit/telemetry.js +162 -0
  17. package/dist/cdp/bridge.d.ts +16 -0
  18. package/dist/cdp/bridge.js +826 -0
  19. package/dist/cdp/confirm.d.ts +26 -0
  20. package/dist/cdp/confirm.js +79 -0
  21. package/dist/cdp/connector.d.ts +37 -0
  22. package/dist/cdp/connector.js +661 -0
  23. package/dist/cdp/extension.d.ts +36 -0
  24. package/dist/cdp/extension.js +118 -0
  25. package/dist/cdp/finder.d.ts +1 -0
  26. package/dist/cdp/finder.js +2 -0
  27. package/dist/cdp/helpers.d.ts +11 -0
  28. package/dist/cdp/helpers.js +195 -0
  29. package/dist/cdp/label_cache.d.ts +12 -0
  30. package/dist/cdp/label_cache.js +51 -0
  31. package/dist/cdp/lock.d.ts +33 -0
  32. package/dist/cdp/lock.js +206 -0
  33. package/dist/cdp/omni_broker.d.ts +17 -0
  34. package/dist/cdp/omni_broker.js +119 -0
  35. package/dist/cdp/profiles.d.ts +1 -0
  36. package/dist/cdp/profiles.js +87 -0
  37. package/dist/cdp/pruner.d.ts +41 -0
  38. package/dist/cdp/pruner.js +263 -0
  39. package/dist/cdp/ref_cache.d.ts +101 -0
  40. package/dist/cdp/ref_cache.js +234 -0
  41. package/dist/cdp/retry.d.ts +5 -0
  42. package/dist/cdp/retry.js +39 -0
  43. package/dist/cdp/retry_enhanced.d.ts +44 -0
  44. package/dist/cdp/retry_enhanced.js +102 -0
  45. package/dist/cdp/security.d.ts +50 -0
  46. package/dist/cdp/security.js +237 -0
  47. package/dist/cdp/verify.d.ts +39 -0
  48. package/dist/cdp/verify.js +143 -0
  49. package/dist/cdp/walker.d.ts +91 -0
  50. package/dist/cdp/walker.js +896 -0
  51. package/dist/cdp/walker.test.d.ts +2 -0
  52. package/dist/cdp/walker.test.js +172 -0
  53. package/dist/cdp/websocket_transport.d.ts +15 -0
  54. package/dist/cdp/websocket_transport.js +118 -0
  55. package/dist/cli/plugin.d.ts +9 -0
  56. package/dist/cli/plugin.js +1134 -0
  57. package/dist/cli/updater.d.ts +1 -0
  58. package/dist/cli/updater.js +72 -0
  59. package/dist/config/loader.d.ts +120 -0
  60. package/dist/config/loader.js +704 -0
  61. package/dist/index.d.ts +2 -0
  62. package/dist/index.js +1248 -0
  63. package/dist/intelligence/hints.d.ts +11 -0
  64. package/dist/intelligence/hints.js +39 -0
  65. package/dist/intelligence/intent.d.ts +33 -0
  66. package/dist/intelligence/intent.js +171 -0
  67. package/dist/intelligence/sessionMemory.d.ts +66 -0
  68. package/dist/intelligence/sessionMemory.js +284 -0
  69. package/dist/intelligence/sessionMemory.test.d.ts +2 -0
  70. package/dist/intelligence/sessionMemory.test.js +62 -0
  71. package/dist/intelligence/trail.d.ts +64 -0
  72. package/dist/intelligence/trail.js +233 -0
  73. package/dist/intelligence/trail.test.d.ts +2 -0
  74. package/dist/intelligence/trail.test.js +110 -0
  75. package/dist/intelligence/vision.d.ts +24 -0
  76. package/dist/intelligence/vision.js +151 -0
  77. package/dist/lifecycle/mission_manager.d.ts +16 -0
  78. package/dist/lifecycle/mission_manager.js +44 -0
  79. package/dist/overlay/bubble.d.ts +16 -0
  80. package/dist/overlay/bubble.js +37 -0
  81. package/dist/overlay/ghost.d.ts +35 -0
  82. package/dist/overlay/ghost.js +508 -0
  83. package/dist/overlay/injector.d.ts +22 -0
  84. package/dist/overlay/injector.js +198 -0
  85. package/dist/plugin/interface.d.ts +134 -0
  86. package/dist/plugin/interface.js +1 -0
  87. package/dist/plugin/loader.d.ts +18 -0
  88. package/dist/plugin/loader.js +155 -0
  89. package/dist/plugin/registry.d.ts +50 -0
  90. package/dist/plugin/registry.js +234 -0
  91. package/dist/security/blacklist.d.ts +24 -0
  92. package/dist/security/blacklist.js +80 -0
  93. package/dist/security/filter.d.ts +2 -0
  94. package/dist/security/filter.js +20 -0
  95. package/dist/security/guard.d.ts +8 -0
  96. package/dist/security/guard.js +35 -0
  97. package/dist/security/ratelimit.d.ts +11 -0
  98. package/dist/security/ratelimit.js +57 -0
  99. package/dist/security/secrets.d.ts +75 -0
  100. package/dist/security/secrets.js +365 -0
  101. package/dist/sensors/actionability.d.ts +81 -0
  102. package/dist/sensors/actionability.js +303 -0
  103. package/dist/sensors/guard.d.ts +25 -0
  104. package/dist/sensors/guard.js +168 -0
  105. package/dist/sensors/mutations.d.ts +23 -0
  106. package/dist/sensors/mutations.js +93 -0
  107. package/dist/sensors/network.d.ts +67 -0
  108. package/dist/sensors/network.js +193 -0
  109. package/dist/sensors/operation_monitor.d.ts +80 -0
  110. package/dist/sensors/operation_monitor.js +203 -0
  111. package/dist/sensors/pacing.d.ts +44 -0
  112. package/dist/sensors/pacing.js +111 -0
  113. package/dist/sensors/thoughts.d.ts +2 -0
  114. package/dist/sensors/thoughts.js +59 -0
  115. package/dist/sensors/wait.d.ts +12 -0
  116. package/dist/sensors/wait.js +44 -0
  117. package/dist/server.d.ts +7 -0
  118. package/dist/server.js +1687 -0
  119. package/dist/state/agent.d.ts +36 -0
  120. package/dist/state/agent.js +101 -0
  121. package/dist/state/cache.d.ts +16 -0
  122. package/dist/state/cache.js +92 -0
  123. package/dist/state/cache.test.d.ts +2 -0
  124. package/dist/state/cache.test.js +76 -0
  125. package/dist/state/delta.d.ts +71 -0
  126. package/dist/state/delta.js +234 -0
  127. package/dist/state/delta.test.d.ts +2 -0
  128. package/dist/state/delta.test.js +279 -0
  129. package/dist/state/groups.d.ts +15 -0
  130. package/dist/state/groups.js +80 -0
  131. package/dist/state/session.d.ts +30 -0
  132. package/dist/state/session.js +155 -0
  133. package/dist/tools/accessibility.d.ts +14 -0
  134. package/dist/tools/accessibility.js +32 -0
  135. package/dist/tools/ask.d.ts +14 -0
  136. package/dist/tools/ask.js +49 -0
  137. package/dist/tools/automation.d.ts +36 -0
  138. package/dist/tools/automation.js +218 -0
  139. package/dist/tools/browser_detect.d.ts +13 -0
  140. package/dist/tools/browser_detect.js +73 -0
  141. package/dist/tools/burst.d.ts +35 -0
  142. package/dist/tools/burst.js +344 -0
  143. package/dist/tools/canvas.d.ts +25 -0
  144. package/dist/tools/canvas.js +132 -0
  145. package/dist/tools/captcha.d.ts +38 -0
  146. package/dist/tools/captcha.js +209 -0
  147. package/dist/tools/click.d.ts +36 -0
  148. package/dist/tools/click.js +561 -0
  149. package/dist/tools/click_and_wait.d.ts +33 -0
  150. package/dist/tools/click_and_wait.js +149 -0
  151. package/dist/tools/clipboard.d.ts +29 -0
  152. package/dist/tools/clipboard.js +279 -0
  153. package/dist/tools/console.d.ts +21 -0
  154. package/dist/tools/console.js +107 -0
  155. package/dist/tools/cookies.d.ts +67 -0
  156. package/dist/tools/cookies.js +121 -0
  157. package/dist/tools/design_extract.d.ts +109 -0
  158. package/dist/tools/design_extract.js +641 -0
  159. package/dist/tools/dialog.d.ts +24 -0
  160. package/dist/tools/dialog.js +109 -0
  161. package/dist/tools/drag.d.ts +15 -0
  162. package/dist/tools/drag.js +29 -0
  163. package/dist/tools/emulation.d.ts +33 -0
  164. package/dist/tools/emulation.js +69 -0
  165. package/dist/tools/eval.d.ts +20 -0
  166. package/dist/tools/eval.js +92 -0
  167. package/dist/tools/fill.d.ts +41 -0
  168. package/dist/tools/fill.js +667 -0
  169. package/dist/tools/find.d.ts +30 -0
  170. package/dist/tools/find.js +60 -0
  171. package/dist/tools/geo.d.ts +19 -0
  172. package/dist/tools/geo.js +29 -0
  173. package/dist/tools/github/analyze.d.ts +4 -0
  174. package/dist/tools/github/analyze.js +113 -0
  175. package/dist/tools/github/cache.d.ts +21 -0
  176. package/dist/tools/github/cache.js +28 -0
  177. package/dist/tools/github/index.d.ts +4 -0
  178. package/dist/tools/github/index.js +4 -0
  179. package/dist/tools/github/issues.d.ts +9 -0
  180. package/dist/tools/github/issues.js +88 -0
  181. package/dist/tools/github/pr.d.ts +5 -0
  182. package/dist/tools/github/pr.js +88 -0
  183. package/dist/tools/github/rateLimiter.d.ts +4 -0
  184. package/dist/tools/github/rateLimiter.js +46 -0
  185. package/dist/tools/github/read.d.ts +34 -0
  186. package/dist/tools/github/read.js +74 -0
  187. package/dist/tools/github/repoContext.d.ts +20 -0
  188. package/dist/tools/github/repoContext.js +129 -0
  189. package/dist/tools/highlight.d.ts +20 -0
  190. package/dist/tools/highlight.js +140 -0
  191. package/dist/tools/hover.d.ts +19 -0
  192. package/dist/tools/hover.js +57 -0
  193. package/dist/tools/inspect.d.ts +17 -0
  194. package/dist/tools/inspect.js +125 -0
  195. package/dist/tools/integration.test.d.ts +2 -0
  196. package/dist/tools/integration.test.js +96 -0
  197. package/dist/tools/key.d.ts +25 -0
  198. package/dist/tools/key.js +173 -0
  199. package/dist/tools/macro_compiler.d.ts +7 -0
  200. package/dist/tools/macro_compiler.js +82 -0
  201. package/dist/tools/mouse.d.ts +21 -0
  202. package/dist/tools/mouse.js +62 -0
  203. package/dist/tools/navigate.d.ts +16 -0
  204. package/dist/tools/navigate.js +188 -0
  205. package/dist/tools/network_intercept.d.ts +17 -0
  206. package/dist/tools/network_intercept.js +151 -0
  207. package/dist/tools/office/index.d.ts +9 -0
  208. package/dist/tools/office/index.js +7 -0
  209. package/dist/tools/office/list.d.ts +15 -0
  210. package/dist/tools/office/list.js +41 -0
  211. package/dist/tools/office/parse.d.ts +20 -0
  212. package/dist/tools/office/parse.js +172 -0
  213. package/dist/tools/pdf.d.ts +22 -0
  214. package/dist/tools/pdf.js +42 -0
  215. package/dist/tools/performance.d.ts +12 -0
  216. package/dist/tools/performance.js +47 -0
  217. package/dist/tools/performance_test.d.ts +70 -0
  218. package/dist/tools/performance_test.js +128 -0
  219. package/dist/tools/plan.d.ts +39 -0
  220. package/dist/tools/plan.js +161 -0
  221. package/dist/tools/pointer.d.ts +35 -0
  222. package/dist/tools/pointer.js +522 -0
  223. package/dist/tools/read.d.ts +30 -0
  224. package/dist/tools/read.js +488 -0
  225. package/dist/tools/recording.d.ts +45 -0
  226. package/dist/tools/recording.js +124 -0
  227. package/dist/tools/response.d.ts +129 -0
  228. package/dist/tools/response.js +5 -0
  229. package/dist/tools/scrape.d.ts +24 -0
  230. package/dist/tools/scrape.js +140 -0
  231. package/dist/tools/screenshot.d.ts +40 -0
  232. package/dist/tools/screenshot.js +79 -0
  233. package/dist/tools/scroll.d.ts +23 -0
  234. package/dist/tools/scroll.js +196 -0
  235. package/dist/tools/select.d.ts +13 -0
  236. package/dist/tools/select.js +217 -0
  237. package/dist/tools/snapshot.d.ts +27 -0
  238. package/dist/tools/snapshot.js +99 -0
  239. package/dist/tools/storage.d.ts +18 -0
  240. package/dist/tools/storage.js +29 -0
  241. package/dist/tools/tabs.d.ts +77 -0
  242. package/dist/tools/tabs.js +342 -0
  243. package/dist/tools/thought.d.ts +16 -0
  244. package/dist/tools/thought.js +79 -0
  245. package/dist/tools/type.d.ts +65 -0
  246. package/dist/tools/type.js +1061 -0
  247. package/dist/tools/type_secret.d.ts +23 -0
  248. package/dist/tools/type_secret.js +229 -0
  249. package/dist/tools/upload.d.ts +19 -0
  250. package/dist/tools/upload.js +103 -0
  251. package/dist/tools/video_compiler.d.ts +24 -0
  252. package/dist/tools/video_compiler.js +199 -0
  253. package/dist/tools/viewport.d.ts +44 -0
  254. package/dist/tools/viewport.js +230 -0
  255. package/dist/tools/wait.d.ts +19 -0
  256. package/dist/tools/wait.js +202 -0
  257. package/dist/tools/wait_for.d.ts +23 -0
  258. package/dist/tools/wait_for.js +30 -0
  259. package/dist/tools/windows.d.ts +22 -0
  260. package/dist/tools/windows.js +57 -0
  261. package/dist/ui/index.d.ts +1 -0
  262. package/dist/ui/index.js +12 -0
  263. package/docs/DEV_MODE.md +68 -0
  264. package/docs/DOCUMENTATION.md +532 -0
  265. package/docs/PLUGINS.md +538 -0
  266. package/docs/TOOLS.md +104 -0
  267. package/docs/dev_plugin.md +310 -0
  268. package/ext-dist/background.js +467 -0
  269. package/ext-dist/content.js +3089 -0
  270. package/ext-dist/dashboard.html +583 -0
  271. package/ext-dist/hud/hud.js +73 -0
  272. package/ext-dist/hud/index.html +20 -0
  273. package/ext-dist/manifest.json +77 -0
  274. package/ext-dist/sidepanel/sidepanel.js +25 -0
  275. package/ext-dist/sidepanel.html +547 -0
  276. package/ext-dist/styles.css +218 -0
  277. package/icon.png +0 -0
  278. package/mcp.json +796 -0
  279. package/package.json +113 -0
  280. package/server.json +23 -0
  281. package/smithery.yaml +11 -0
package/mcp.json ADDED
@@ -0,0 +1,796 @@
1
+ {
2
+ "name": "@weavetab/mcp",
3
+ "mcpName": "io.github.weavetab/mcp",
4
+ "version": "2.5.0-beta.0",
5
+ "description": "Weavetab MCP — Production-grade browser automation MCP server with direct Chrome DevTools Protocol (CDP) control. Direct socket transport, zero WebDriver/Node.js wrapper overhead, deterministic state execution.",
6
+ "icon": "icon.png",
7
+ "author": "fy2ne",
8
+ "license": "AGPL-3.0-only",
9
+ "homepage": "https://weavetab.dev",
10
+ "repository": "https://github.com/weavetab/mcp",
11
+ "keywords": [
12
+ "weavetab",
13
+ "mcp",
14
+ "model context protocol",
15
+ "browser automation",
16
+ "chrome devtools protocol",
17
+ "cdp",
18
+ "ai agent",
19
+ "claude mcp",
20
+ "cursor mcp",
21
+ "autonomous agent",
22
+ "browser control",
23
+ "tab management",
24
+ "web automation"
25
+ ],
26
+ "runtime": {
27
+ "command": "node",
28
+ "args": [
29
+ "dist/index.js"
30
+ ],
31
+ "env": {
32
+ "NODE_ENV": "production"
33
+ }
34
+ },
35
+ "capabilities": {
36
+ "tools": {
37
+ "browser_map": {
38
+ "category": "vision",
39
+ "description": "Snapshot interactive DOM with stable ref IDs (w:NN). For complex SPAs, use scope or query to constrain tokens. Supports delta temporal diffing (up to 97% token reduction), semantic pruning (dropping hidden elements), AX tree fallback (Shadow DOM traversal), scope filtering, query filtering, and forced rebuilds.",
40
+ "features": [
41
+ "Semantic DOM pruning (up to 97% token reduction with delta)",
42
+ "Per-tab snapshot temporal diffing (delta mode)",
43
+ "Shadow DOM / AX tree fallback parsing",
44
+ "Scope and query filtering for complex SPAs",
45
+ "Framework auto-detection injection"
46
+ ]
47
+ },
48
+ "browser_navigate": {
49
+ "category": "navigation",
50
+ "description": "Navigate to a URL. Enforces domain security policies and rate limits prior to navigation. Waits for network idle and DOM readiness. Supports internal protocol schemes (e.g. weavetab://).",
51
+ "features": [
52
+ "Domain policy engine and blocklist enforcement",
53
+ "Deterministic DOM stability and network idle waiting",
54
+ "weavetab:// internal protocol support",
55
+ "Targeted tab navigation via tab_id"
56
+ ]
57
+ },
58
+ "browser_click": {
59
+ "category": "input",
60
+ "description": "Click a DOM element. Physical click engine incorporating Bézier curve trajectory kinematics (Ghost Cursor). Multi-stage targeting fallback: ref ID -> selector -> label -> intent -> coordinates -> backendNodeId.",
61
+ "features": [
62
+ "Bézier curve trajectory kinematics",
63
+ "Humanized acceleration and velocity curves",
64
+ "Multi-stage fallback targeting resolution",
65
+ "Intent-based historical strategy resolution",
66
+ "Single-call post-click page map retrieval (include_map)",
67
+ "Shadow DOM element targeting"
68
+ ]
69
+ },
70
+ "browser_type": {
71
+ "category": "input",
72
+ "description": "Type text into a single input field. Keystroke dispatch engine with per-character temporal jitter and burst profiling. Real-time DOM-diffing monitors stuck input state. Supports atomic clearFirst and clipboard paste modes.",
73
+ "features": [
74
+ "Per-character temporal jitter simulation",
75
+ "Burst keystroke profiling",
76
+ "Stuck-typing loop detection via DOM diffing",
77
+ "Atomic input value resetting (clearFirst)",
78
+ "Clipboard paste injection for long text"
79
+ ]
80
+ },
81
+ "browser_type_secret": {
82
+ "category": "input",
83
+ "description": "Inject a secret from an environment variable / secrets.json. Blind Injection: securely injects credentials without exposing sensitive values to the LLM context. Permanently masked as [REDACTED] in DOM maps and logs.",
84
+ "features": [
85
+ "Zero LLM context exposure for credentials",
86
+ "Domain-scoped authorization checks",
87
+ "Shadow DOM input isolation",
88
+ "Permanent [REDACTED] masking across logs and snapshots"
89
+ ]
90
+ },
91
+ "browser_key": {
92
+ "category": "input",
93
+ "description": "Press a keyboard key. Dispatches native hardware key events with modifier key support (Ctrl, Shift, Alt, Meta) to focused elements.",
94
+ "features": [
95
+ "Native key code and key identifier mapping",
96
+ "Modifier key combination handling",
97
+ "Per-tab keyboard focus targeting"
98
+ ]
99
+ },
100
+ "browser_scroll": {
101
+ "category": "input",
102
+ "description": "Scroll the page or targeted element. Smooth scrolling engine via CDP Input.dispatchMouseEvent wheel events. Supports directional delta scrolling and element-relative scroll centering.",
103
+ "features": [
104
+ "Directional scrolling (up, down, left, right)",
105
+ "Configurable pixel scroll distance",
106
+ "Element-relative scroll targeting via ref ID or label"
107
+ ]
108
+ },
109
+ "browser_dialog": {
110
+ "category": "dialog_and_interaction",
111
+ "description": "Accept or dismiss JS dialogs (alert, confirm, prompt) via CDP Page.handleJavaScriptDialog.",
112
+ "features": [
113
+ "Handling of alert, confirm, and prompt modal types",
114
+ "Accept and dismiss actions",
115
+ "Prompt response text payload submission"
116
+ ]
117
+ },
118
+ "browser_burst": {
119
+ "category": "mission_execution",
120
+ "description": "Chain multiple tool calls in one round-trip. High-throughput macro execution engine executing serial action pipelines in a single MCP request, bypassing JSON-RPC serialization overhead. Supports macro steps: type_and_send, navigate_and_read, click_and_wait, scroll_and_read, fill_form, drag_and_drop (ref -> end_ref), and hover_and_read.",
121
+ "features": [
122
+ "Single-request multi-action pipeline execution",
123
+ "Compound macro step abstractions (type_and_send, navigate_and_read, click_and_wait, scroll_and_read, fill_form, drag_and_drop, hover_and_read)",
124
+ "Automatic loop counter reset on execution start"
125
+ ]
126
+ },
127
+ "browser_tabs": {
128
+ "category": "tabs",
129
+ "description": "Manage browser tabs (open, switch, close, list, consolidate, heal, list_windows, focus_window). Full CRUD lifecycle management for tabs and windows.",
130
+ "features": [
131
+ "Single and batch tab operations",
132
+ "Duplicate tab consolidation",
133
+ "Crash session recovery (heal)",
134
+ "Background tab targeting",
135
+ "URL tab reuse prevention"
136
+ ]
137
+ },
138
+ "browser_wait": {
139
+ "category": "navigation",
140
+ "description": "Pause until a condition is met ('element', 'text', 'url', 'stable', 'network', 'auto'). Deterministic wait engine for asynchronous web state synchronization.",
141
+ "features": [
142
+ "Element, text, URL, DOM stability, and network idle conditions",
143
+ "Configurable timeout thresholds",
144
+ "Per-tab asynchronous execution target",
145
+ "Heuristic auto-condition resolution"
146
+ ]
147
+ },
148
+ "browser_thoughts": {
149
+ "category": "dialog_and_interaction",
150
+ "description": "Agent-to-user communication layer rendered as a Shadow DOM overlay. Supports 'question' mode (two-way blocking prompt) and 'feedback' mode (one-way green sticky status update). Consolidates former ask/feedback tools.",
151
+ "features": [
152
+ "Shadow DOM HUD thought bubble overlay",
153
+ "Feedback mode (asynchronous status notification)",
154
+ "Question mode (blocking interactive user response)",
155
+ "Sentence and paragraph user input modes",
156
+ "Configurable response timeout"
157
+ ]
158
+ },
159
+ "browser_pointer": {
160
+ "category": "input",
161
+ "description": "Advanced pointer control (hover, click, double_click, drag_and_drop) with Bézier curve kinematics. Supports waitForChild pattern for dynamic flyout menus.",
162
+ "features": [
163
+ "Hover, click, double_click, and drag_and_drop actions",
164
+ "Bézier curve cursor motion",
165
+ "waitForChild trigger menu resolution",
166
+ "Configurable hold duration (holdMs)"
167
+ ]
168
+ },
169
+ "browser_select": {
170
+ "category": "input",
171
+ "description": "Select an option from a native dropdown by visible text or value. Utilizes native property setters and dispatches input/change events for framework compatibility (React, Vue, Angular).",
172
+ "features": [
173
+ "Option matching by visible text or value",
174
+ "Framework-safe prototype property setter invocation",
175
+ "Synthetic input and change event dispatch"
176
+ ]
177
+ },
178
+ "browser_fill": {
179
+ "category": "input",
180
+ "description": "Smart multi-field form-filling. Evaluates field control types (text, select, checkbox, radio, contenteditable) and processes inputs sequentially with atomic verification.",
181
+ "features": [
182
+ "Multi-field batch input execution",
183
+ "Automatic control type classification",
184
+ "Per-field post-input verification",
185
+ "Optional form submission click step"
186
+ ]
187
+ },
188
+ "browser_plan": {
189
+ "category": "mission_execution",
190
+ "description": "Create or update a live task panel in the browser. Renders a real-time task dashboard within a Shadow DOM overlay displaying goal progress and step status.",
191
+ "features": [
192
+ "Real-time task state and progress display",
193
+ "Isolated Shadow DOM layout structure",
194
+ "Structured task state tracking (pending, in-progress, done, failed)"
195
+ ]
196
+ },
197
+ "browser_highlight": {
198
+ "category": "canvas_and_visual",
199
+ "description": "Highlight an element with a colored overlay. Renders temporary visual CDP overlay highlights over target elements without DOM tree mutations.",
200
+ "features": [
201
+ "CDP visual overlay highlighting",
202
+ "Configurable overlay color and duration",
203
+ "Targeting via ref ID, selector, or nodeId"
204
+ ]
205
+ },
206
+ "browser_upload": {
207
+ "category": "input",
208
+ "description": "Upload files to a file input. Bypasses OS native file pickers via CDP DOM.setFileInputFiles directly targeting file input node IDs using absolute file paths.",
209
+ "features": [
210
+ "Direct CDP file payload injection",
211
+ "Multi-file payload support",
212
+ "Zero OS file picker interaction required"
213
+ ]
214
+ },
215
+ "browser_find": {
216
+ "category": "vision",
217
+ "description": "Sub-5ms CDP text search. Zero token waste. Best for locating specific keywords/text on page without a full DOM walk.",
218
+ "features": [
219
+ "Native CDP search (zero DOM walk overhead)",
220
+ "Sub-5ms execution latency",
221
+ "Exact keyword matching and match indexing"
222
+ ]
223
+ },
224
+ "browser_storage": {
225
+ "category": "storage_and_cookies",
226
+ "description": "Manage localStorage and sessionStorage. Reads, writes, and clears key-value pairs for the active origin.",
227
+ "features": [
228
+ "localStorage and sessionStorage scope targeting",
229
+ "Atomic key-value retrieval and mutation",
230
+ "Origin storage purging"
231
+ ]
232
+ },
233
+ "browser_network_intercept": {
234
+ "category": "network",
235
+ "description": "Intercept/stub network responses (mock APIs, block tracking) and capture raw protocol network telemetry (TLS/SSL certificate metadata, microsecond timing breakdown, and OS-level network failure reasons).",
236
+ "features": [
237
+ "URL glob pattern matching and response mocking",
238
+ "TLS/SSL Certificate security metadata (issuer, protocol, validity, cipher)",
239
+ "Microsecond Network Timing breakdown (DNS, TCP, SSL, send, TTFB, download)",
240
+ "OS-level network failure diagnostics (net::ERR_* codes, blocked reasons)"
241
+ ]
242
+ },
243
+ "browser_console": {
244
+ "category": "vision",
245
+ "description": "1-5ms latency access to buffered browser console messages, JS exceptions, and network errors tracked via CDP Runtime.consoleAPICalled.",
246
+ "features": [
247
+ "Buffered console output stream retrieval",
248
+ "Buffer clearance actions",
249
+ "Runtime exception stack capture",
250
+ "Timestamped severity logging"
251
+ ]
252
+ },
253
+ "browser_pdf": {
254
+ "category": "output",
255
+ "description": "Print the current page to a PDF file via CDP Page.printToPDF with configurable orientation, scale, and page ranges.",
256
+ "features": [
257
+ "Landscape and portrait orientation options",
258
+ "Print scale factor adjustment",
259
+ "Page range subset printing",
260
+ "Direct filesystem destination output"
261
+ ]
262
+ },
263
+ "browser_eval": {
264
+ "category": "evaluation",
265
+ "description": "Run arbitrary JS via CDP in page context via CDP Runtime.evaluate. Supports asynchronous evaluation and structured JSON serialization.",
266
+ "features": [
267
+ "Page JS context execution",
268
+ "Async/await promise resolution",
269
+ "Structured JSON return serialization",
270
+ "Role-based authorization checks"
271
+ ]
272
+ },
273
+ "browser_cookies": {
274
+ "category": "storage_and_cookies",
275
+ "description": "Manage browser cookies. Full CRUD management for HTTP and document cookies via CDP Network domain.",
276
+ "features": [
277
+ "Cookie property retrieval, setting, and deletion",
278
+ "Domain and path attribute scoping"
279
+ ]
280
+ },
281
+ "browser_canvas": {
282
+ "category": "canvas_and_visual",
283
+ "description": "For ALL canvas content (charts, games, graphs). Use get_image to read pixel data as Base64 PNG, draw to simulate programmatic coordinate gesture paths.",
284
+ "features": [
285
+ "Base64 PNG pixel buffer export",
286
+ "Programmatic gesture path drawing",
287
+ "Canvas node targeting via ref ID or selector"
288
+ ]
289
+ },
290
+ "browser_scrape": {
291
+ "category": "vision",
292
+ "description": "Sub-5ms latency, zero waste extraction via CSS or XPath selectors in a single CDP evaluation step. Returns structured text/attribute arrays.",
293
+ "features": [
294
+ "CSS and XPath query evaluation",
295
+ "Targeted attribute extraction",
296
+ "Single-step execution (high throughput)",
297
+ "Single-element and array extraction modes"
298
+ ]
299
+ },
300
+ "browser_snapshot": {
301
+ "category": "vision",
302
+ "description": "Capture or restore an MHTML snapshot (DOM + inline assets). Facilitates offline state serialization, replay verification, and compliance auditing.",
303
+ "features": [
304
+ "Full DOM and asset stream serialization",
305
+ "Atomic capture and restore operations",
306
+ "Offline state audit capability"
307
+ ]
308
+ },
309
+ "browser_screenshot": {
310
+ "category": "vision",
311
+ "description": "95-135ms capture latency via CDP Page.captureScreenshot. Supports PNG and JPEG formats, full-page rendering, and clip region bounding boxes.",
312
+ "features": [
313
+ "Full-page and viewport bounding box capture",
314
+ "PNG and JPEG format encoding",
315
+ "Custom clip region bounding box support",
316
+ "In-memory Base64 data URL output (zero disk I/O)"
317
+ ]
318
+ },
319
+ "browser_viewport": {
320
+ "category": "device_and_environment",
321
+ "description": "Set viewport dimensions and device emulation (width, height, DPR, mobile, geolocation, timezone, locale, color scheme).",
322
+ "features": [
323
+ "Viewport width, height, and DPR emulation",
324
+ "Mobile viewport and touch event emulation",
325
+ "Geolocation coordinate override",
326
+ "IANA timezone and locale override",
327
+ "Color scheme preference override (light/dark)"
328
+ ]
329
+ },
330
+ "browser_clipboard": {
331
+ "category": "dialog_and_interaction",
332
+ "description": "Read or write to the system clipboard (plaintext or Base64 image payload data).",
333
+ "features": [
334
+ "Read and write data operations",
335
+ "Plaintext and Base64 image payload format support"
336
+ ]
337
+ },
338
+ "browser_inspect": {
339
+ "category": "vision",
340
+ "description": "15-35ms latency, zero waste. Deep DOM inspection returning computed styles, inline styles, box model dimensions, and attached event listener types.",
341
+ "features": [
342
+ "Computed CSS style property inspection",
343
+ "Event listener type registration enumeration",
344
+ "Box model geometry verification",
345
+ "Targeting via ref ID, selector, or nodeId"
346
+ ]
347
+ },
348
+ "browser_extract_design": {
349
+ "category": "vision",
350
+ "description": "Extract design tokens (colors, typography, spacing, shadows, CSS variables), semantic HTML layouts, and clean CSS into structured files and an LLM design blueprint. Ideal for cloning websites, UI components, and design systems with 100% pixel fidelity.",
351
+ "features": [
352
+ "CSS custom properties and design token harvesting",
353
+ "Palette extraction and typography hierarchy mapping",
354
+ "Semantic clean DOM extraction with inline SVGs preserved",
355
+ "Automatic file persistence into configurable designDir (~/.weavetab/designs/)",
356
+ "Tailwind CSS theme.extend preset generation",
357
+ "Compact LLM summary preventing context window bloat"
358
+ ]
359
+ },
360
+ "browser_automation": {
361
+ "category": "mission_execution",
362
+ "description": "Inject self-running background script for monitoring/polling. Inject persistent scripts into the page context for continuous event tracking.",
363
+ "features": [
364
+ "Background script context injection",
365
+ "Named automation script management",
366
+ "Decoupled event monitoring lifecycle"
367
+ ]
368
+ },
369
+ "browser_recording": {
370
+ "category": "output",
371
+ "description": "Record video screencasts of browser sessions. Automatically compiles captured frames into animated video files (.webp, .gif, .webm, .mp4) using native Node processing or system ffmpeg.",
372
+ "features": [
373
+ "Native WebP/GIF animation compilation in pure Node",
374
+ "Configurable FPS and frame limits",
375
+ "FFmpeg fallback for WebM/MP4 encoding",
376
+ "Automated raw frame cleanup"
377
+ ]
378
+ },
379
+ "browser_reset_loop_counter": {
380
+ "category": "wait_and_timing",
381
+ "description": "Reset the loop detection strike counter to zero when legitimate repetitive actions flag automated safeguards.",
382
+ "features": [
383
+ "Atomic strike counter reset",
384
+ "Explicit reset reason logging"
385
+ ]
386
+ },
387
+ "browser_detect": {
388
+ "category": "tabs",
389
+ "description": "Detect available browsers on the machine and report CDP feature coverage per engine (Chromium, Firefox, WebKit).",
390
+ "features": [
391
+ "Local browser engine discovery",
392
+ "Engine CDP API coverage analysis",
393
+ "Tool compatibility reporting per browser engine"
394
+ ]
395
+ },
396
+ "browser_performance": {
397
+ "category": "performance",
398
+ "description": "Retrieve page performance metrics. Collects Core Web Vitals (FCP, LCP, CLS) and detailed network resource timing distributions.",
399
+ "features": [
400
+ "First Contentful Paint (FCP) and Largest Contentful Paint (LCP) capture",
401
+ "Cumulative Layout Shift (CLS) tracking",
402
+ "Resource loading timing distributions"
403
+ ]
404
+ },
405
+ "browser_macro_compile": {
406
+ "category": "macro",
407
+ "description": "Compile a recent action trail into a reusable browser_burst macro sequence for deterministic replay.",
408
+ "features": [
409
+ "Interaction trail analysis and compilation",
410
+ "Reusable macro structure generation",
411
+ "Full compatibility with browser_burst engine"
412
+ ]
413
+ },
414
+ "github_analyze": {
415
+ "category": "github",
416
+ "description": "Analyze a GitHub repository structure, file tree, and README snippet directly via raw endpoints without API key rate limits.",
417
+ "features": [
418
+ "Repository metadata parsing",
419
+ "Directory tree listing",
420
+ "README payload extraction",
421
+ "Zero GitHub API token requirement"
422
+ ]
423
+ },
424
+ "github_read": {
425
+ "category": "github",
426
+ "description": "Read file contents from a GitHub repository via raw content endpoints.",
427
+ "features": [
428
+ "Raw file content retrieval",
429
+ "Branch, tag, and commit ref targeting",
430
+ "Line range subset reading"
431
+ ]
432
+ },
433
+ "github_issues": {
434
+ "category": "github",
435
+ "description": "Interact with GitHub issues. List, search, and fetch issue details with comment threads.",
436
+ "features": [
437
+ "Issue state filtering (open, closed, all)",
438
+ "Full-text issue search",
439
+ "Comment thread extraction"
440
+ ]
441
+ },
442
+ "github_get_pr": {
443
+ "category": "github",
444
+ "description": "Interact with GitHub pull requests. Retrieve metadata, changed files, diff summaries, and review comments.",
445
+ "features": [
446
+ "Pull request metadata parsing",
447
+ "Changed file list enumeration",
448
+ "Review comment thread extraction"
449
+ ]
450
+ }
451
+ },
452
+ "resources": {
453
+ "session_memory": {
454
+ "description": "Per-domain persistent profile store (~/.weavetab-system/memory/) tracking detected web frameworks, Shadow DOM utilization, and interaction strategies across sessions.",
455
+ "features": [
456
+ "Framework detection (React, Vue, Angular, Lit, Svelte, Next, Nuxt, Gatsby)",
457
+ "Successful selector strategy caching",
458
+ "Interaction history accumulation"
459
+ ]
460
+ },
461
+ "knowledge_hints": {
462
+ "description": "Domain-specific hint storage (~/.weavetab/knowledge/[domain].md) injecting context notes into session prompts.",
463
+ "features": [
464
+ "Domain quirk notes",
465
+ "Timestamped entry tracking",
466
+ "Prompt context injection budget (20 tokens)"
467
+ ]
468
+ },
469
+ "trail_log": {
470
+ "description": "Rolling 50-action window (~/.weavetab-system/sessions/context.json) powering strike-based loop detection algorithms.",
471
+ "features": [
472
+ "50-action rolling window tracking",
473
+ "Strike-based loop detection heuristics",
474
+ "Auto-reset triggers on navigation, tab switch, or burst start"
475
+ ]
476
+ },
477
+ "network_telemetry": {
478
+ "description": "Real-time network event tracking via CDP Network domain measuring request/response timing and HTTP error rates.",
479
+ "features": [
480
+ "Request and response latency tracking",
481
+ "Resource classification",
482
+ "HTTP status code tracking"
483
+ ]
484
+ },
485
+ "mutation_observer": {
486
+ "description": "CDP-driven DOM mutation tracking measuring dynamic subtree changes for SPA stabilization.",
487
+ "features": [
488
+ "Attribute mutation tracking",
489
+ "Node insertion/removal events",
490
+ "Subtree modification tracking"
491
+ ]
492
+ }
493
+ },
494
+ "intelligence": {
495
+ "semantic_delta_engine": {
496
+ "description": "Per-tab DOM state diffing engine returning strictly modified elements between snapshots, cutting prompt token consumption up to 97%.",
497
+ "features": [
498
+ "Per-tab baseline snapshot storage",
499
+ "Property-level change detection (label, value, state, class)",
500
+ "Action recommendation generation"
501
+ ]
502
+ },
503
+ "semantic_dom_pruner": {
504
+ "description": "AST-based DOM compression algorithm executed before snapshot returns. Removes non-interactive hidden elements and converts SVG icons to tokens.",
505
+ "features": [
506
+ "Hidden element pruning",
507
+ "SVG icon compression",
508
+ "Interactive tree preservation"
509
+ ]
510
+ },
511
+ "vision_fallback": {
512
+ "description": "Local pixel analysis pipeline utilizing sharp for visual layout evaluation when accessibility trees return zero nodes.",
513
+ "pipeline": "AX Tree Check -> Screenshot -> Grayscale -> 4x4 Grid Heatmap -> Text Density -> Clickable Region Analysis",
514
+ "features": [
515
+ "Local execution (zero external API dependencies)",
516
+ "4x4 visual density grid heatmap",
517
+ "Clickable zone classification"
518
+ ]
519
+ },
520
+ "loop_detection": {
521
+ "description": "Strike-based loop detection algorithm over rolling 50-action windows with automated escalation.",
522
+ "thresholds": {
523
+ "0-4 strikes": "Normal execution",
524
+ "5-9 strikes": "Warning notification in HUD",
525
+ "10+ strikes": "Stuck state classification and auto-recovery activation"
526
+ },
527
+ "features": [
528
+ "Rolling action window evaluation",
529
+ "Escalating alert tiers",
530
+ "Manual reset via browser_reset_loop_counter"
531
+ ]
532
+ },
533
+ "framework_detection": {
534
+ "description": "Heuristic detection of web application frameworks via CDP Runtime.evaluate probes.",
535
+ "detectedFrameworks": [
536
+ "React",
537
+ "Vue",
538
+ "Angular",
539
+ "Lit",
540
+ "Svelte",
541
+ "Next",
542
+ "Nuxt",
543
+ "Gatsby"
544
+ ],
545
+ "features": [
546
+ "Zero-overhead runtime probing",
547
+ "Shadow DOM usage identification",
548
+ "Domain memory persistence"
549
+ ]
550
+ },
551
+ "intent_resolution": {
552
+ "description": "Semantic element resolution resolving natural language action descriptions to DOM ref IDs using session memory scoring.",
553
+ "features": [
554
+ "Natural language intent scoring",
555
+ "Historical selector memory integration",
556
+ "Live DOM context matching"
557
+ ]
558
+ }
559
+ },
560
+ "security": {
561
+ "rbac": {
562
+ "description": "Role-Based Access Control enforcing tool execution boundaries based on configured session role.",
563
+ "roles": {
564
+ "admin": "Full access to all 42 tools and system operations",
565
+ "system": "Full tool access excluding system-level operations",
566
+ "viewer": "Read-only access (browser_map, browser_find, browser_scrape, browser_screenshot, browser_inspect, browser_snapshot, browser_console, browser_pdf, browser_storage, browser_cookies, browser_tabs, browser_wait, github_*)",
567
+ "automation": "Restricted execution set for non-interactive automated workflows"
568
+ }
569
+ },
570
+ "domain_policy": {
571
+ "description": "Domain-level access control policy engine configured via ~/.weavetab/policy.json with enforced security domain blocklists.",
572
+ "modes": {
573
+ "allow": "Unrestricted tool access",
574
+ "read-only": "Mutation tool execution blocked",
575
+ "deny": "Navigation and interaction blocked",
576
+ "audit": "Unrestricted access with enhanced audit logging"
577
+ }
578
+ },
579
+ "rate_limiting": {
580
+ "description": "Mutex-guarded rate limiter enforcing maximum action frequencies.",
581
+ "features": [
582
+ "Configurable action per minute threshold (default 60)",
583
+ "Mutex lock enforcement",
584
+ "Clear rate limit exception messaging"
585
+ ]
586
+ },
587
+ "blind_injection": {
588
+ "description": "Credential injection via browser_type_secret. Resolves secret values server-side from secrets.json without context exposure to the LLM.",
589
+ "secretsFormat": {
590
+ "KEY_NAME": {
591
+ "value": "secret-value",
592
+ "domains": [
593
+ "example.com"
594
+ ],
595
+ "description": "Secret description"
596
+ }
597
+ },
598
+ "resolutionOrder": [
599
+ "./.weavetab/secrets.json (project)",
600
+ "~/.weavetab/secrets.json (global)"
601
+ ]
602
+ },
603
+ "input_filter": {
604
+ "description": "Sanitizes DOM snapshots before context return by stripping prompt injection patterns and invisible characters.",
605
+ "features": [
606
+ "Prompt injection pattern filtering",
607
+ "Control character stripping",
608
+ "Excessive label length truncation"
609
+ ]
610
+ },
611
+ "additional_mechanisms": {
612
+ "localhost_binding": "CDP WebSocket connection restricted strictly to 127.0.0.1",
613
+ "root_guard": "Startup execution block for root/superuser processes (Unix)",
614
+ "storage_blocker": "Configurable nullification of web storage and document.cookie",
615
+ "atomic_config_writes": "Atomic configuration file writes via temporary file renaming",
616
+ "path_traversal_protection": "Strict validation of download and profile directories against path traversal",
617
+ "two_factor_lock_validation": "Browser lock verification via PID liveness and TCP port checks"
618
+ }
619
+ },
620
+ "transport": {
621
+ "stdio": {
622
+ "description": "Standard JSON-RPC over stdio streams. Default mode for MCP clients.",
623
+ "default": true,
624
+ "cli": "weavetab"
625
+ },
626
+ "websocket": {
627
+ "description": "JSON-RPC over WebSocket for distributed agent pipelines.",
628
+ "default": false,
629
+ "configurable": true
630
+ }
631
+ },
632
+ "overlay": {
633
+ "hud": {
634
+ "description": "Shadow DOM HUD overlay injected into browser tabs displaying execution state and thoughts.",
635
+ "features": [
636
+ "Mission status display",
637
+ "Thought bubble rendering",
638
+ "Task plan visualization",
639
+ "Shadow DOM isolation"
640
+ ]
641
+ },
642
+ "ghost_cursor": {
643
+ "description": "Visual pointer trajectory overlay displaying humanized Bézier motion during interaction.",
644
+ "features": [
645
+ "Bézier trajectory visualization",
646
+ "Acceleration curve rendering",
647
+ "Target element highlight overlay"
648
+ ]
649
+ }
650
+ },
651
+ "plugins": {
652
+ "description": "Dynamic plugin system discovering any npm package containing weavetab.json and @weavetab/plugin-* packages at startup.",
653
+ "manifest": "weavetab.json",
654
+ "features": [
655
+ "Automatic package discovery",
656
+ "Native MCP tool registration",
657
+ "Unified security pipeline integration"
658
+ ]
659
+ },
660
+ "skills": {
661
+ "description": "Optional companion package (@weavetab/skills) providing mission templates.",
662
+ "package": "@weavetab/skills",
663
+ "repository": "https://github.com/weavetab/skills",
664
+ "install": "npm install -g @weavetab/skills",
665
+ "availableSkills": [
666
+ "Multi-step Form Automation",
667
+ "E-commerce Checkout",
668
+ "Data Extraction Pipelines",
669
+ "Content Management Systems",
670
+ "API Testing & Validation"
671
+ ]
672
+ }
673
+ },
674
+ "configuration": {
675
+ "configLocations": {
676
+ "global": "~/.weavetab/config.json",
677
+ "project": ".weavetab/config.json (precedes global)"
678
+ },
679
+ "options": {
680
+ "browserType": {
681
+ "type": "string",
682
+ "default": "chromium",
683
+ "options": [
684
+ "chromium",
685
+ "firefox",
686
+ "webkit"
687
+ ],
688
+ "description": "Browser engine target"
689
+ },
690
+ "headless": {
691
+ "type": "boolean",
692
+ "default": false,
693
+ "description": "Headless mode toggle"
694
+ },
695
+ "devMode": {
696
+ "type": "boolean",
697
+ "default": false,
698
+ "description": "Verbose CDP logging and HUD overlay toggle"
699
+ },
700
+ "maxActionsPerMinute": {
701
+ "type": "number",
702
+ "default": 60,
703
+ "description": "Action rate limit threshold"
704
+ },
705
+ "role": {
706
+ "type": "string",
707
+ "default": "admin",
708
+ "options": [
709
+ "admin",
710
+ "system",
711
+ "viewer",
712
+ "automation"
713
+ ],
714
+ "description": "Session RBAC role"
715
+ },
716
+ "telemetry": {
717
+ "type": "boolean",
718
+ "default": false,
719
+ "description": "Opt-in anonymous usage telemetry toggle"
720
+ },
721
+ "attachPort": {
722
+ "type": "number",
723
+ "default": 0,
724
+ "description": "Chrome DevTools Protocol attach port"
725
+ },
726
+ "disableExtensions": {
727
+ "type": "boolean",
728
+ "default": false,
729
+ "description": "Disable Weavetab Chrome extension integration"
730
+ },
731
+ "maxTabs": {
732
+ "type": "number",
733
+ "default": 10,
734
+ "description": "Maximum tracked tab count"
735
+ },
736
+ "navigationTimeout": {
737
+ "type": "number",
738
+ "default": 3600,
739
+ "description": "Navigation timeout in seconds"
740
+ },
741
+ "actionabilityTimeoutMs": {
742
+ "type": "number",
743
+ "default": 500,
744
+ "description": "Element actionability wait timeout in ms"
745
+ }
746
+ },
747
+ "domainPolicy": {
748
+ "location": "~/.weavetab/policy.json",
749
+ "format": {
750
+ "policies": [
751
+ {
752
+ "pattern": "*.example.com",
753
+ "mode": "allow | read-only | deny | audit"
754
+ }
755
+ ]
756
+ }
757
+ },
758
+ "secretsManagement": {
759
+ "locations": [
760
+ ".weavetab/secrets.json (project-scoped)",
761
+ "~/.weavetab/secrets.json (global default)"
762
+ ],
763
+ "cli": [
764
+ "weavetab secrets set KEY_NAME",
765
+ "weavetab secrets list",
766
+ "weavetab secrets rm KEY_NAME",
767
+ "weavetab secrets init --project"
768
+ ],
769
+ "format": {
770
+ "KEY_NAME": {
771
+ "value": "secret-value",
772
+ "domains": [
773
+ "example.com"
774
+ ],
775
+ "description": "Secret description"
776
+ }
777
+ }
778
+ }
779
+ },
780
+ "metadata": {
781
+ "total_tools": 42,
782
+ "tool_categories": 15,
783
+ "latency": "3-8ms mean",
784
+ "token_efficiency": "Up to 97% reduction via semantic delta engine + DOM pruner",
785
+ "architecture": "Direct CDP WebSocket (Layer 0) — zero WebDriver, Playwright, or Puppeteer wrapper overhead",
786
+ "security": "Domain blacklist + RBAC (4 roles) + rate limiting + Blind Injection (secrets.json)",
787
+ "session_memory": "Persistent per-domain profiles with framework detection and strategy caching",
788
+ "loop_detection": "Strike-based (50-action window), auto-recovery at 10+ strikes",
789
+ "plugin_system": "Dynamic universal weavetab.json & @weavetab/plugin-* auto-discovery",
790
+ "skills_package": "@weavetab/skills — https://github.com/weavetab/skills",
791
+ "transport": "stdio (default) or WebSocket (--ws)",
792
+ "binary": [
793
+ "weavetab"
794
+ ]
795
+ }
796
+ }