@recapt/mcp 0.0.42 → 0.0.44
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/dist/index.js +215 -33
- package/dist/tools/catalog/anthropicToolCatalog.json +87 -239
- package/dist/tools/catalog/toolCatalog.json +1686 -4517
- package/package.json +1 -1
- package/skills/regression-hunt.md +16 -16
- package/skills/self-improvement.md +341 -127
package/package.json
CHANGED
|
@@ -47,7 +47,7 @@ Investigate the specific issue:
|
|
|
47
47
|
|
|
48
48
|
- Search: "console errors" → `get_console_errors` (often the culprit)
|
|
49
49
|
- Search: "dead clicks" → `get_dead_clicks` (broken interactions)
|
|
50
|
-
- Search: "investigate issue"
|
|
50
|
+
- Search: "investigate issue" to discover available investigation tools
|
|
51
51
|
|
|
52
52
|
### 5. Examine Sessions
|
|
53
53
|
|
|
@@ -103,18 +103,18 @@ Once you've identified the cause:
|
|
|
103
103
|
|
|
104
104
|
## Tool Discovery Reference
|
|
105
105
|
|
|
106
|
-
| Phase | Search Query | Tools
|
|
107
|
-
| ---------- | ------------------- |
|
|
108
|
-
| Detect | "regressions" | `detect_regressions`
|
|
109
|
-
| Detect | "anomalies" | `get_anomalies`
|
|
110
|
-
| Detect | "drift" | `detect_drift`
|
|
111
|
-
| Timeline | "trends" | `get_page_trends`
|
|
112
|
-
| Timeline | "compare periods" | `compare_periods`
|
|
113
|
-
| Scope | "page analysis" | `get_page_metrics`
|
|
114
|
-
| Scope | "element friction" | `get_element_friction`
|
|
115
|
-
| Root cause | "console errors" | `get_console_errors`
|
|
116
|
-
| Root cause | "dead clicks" | `get_dead_clicks`
|
|
117
|
-
| Root cause | "investigate issue" | `
|
|
118
|
-
| Sessions | "session details" | `search_sessions`, `get_session_details`
|
|
119
|
-
| Fix | "propose fix" | `propose_fix`
|
|
120
|
-
| Track | "deployment" | `confirm_deployment`, `evaluate_fix`
|
|
106
|
+
| Phase | Search Query | Tools |
|
|
107
|
+
| ---------- | ------------------- | -------------------------------------------------- |
|
|
108
|
+
| Detect | "regressions" | `detect_regressions` |
|
|
109
|
+
| Detect | "anomalies" | `get_anomalies` |
|
|
110
|
+
| Detect | "drift" | `detect_drift` |
|
|
111
|
+
| Timeline | "trends" | `get_page_trends` |
|
|
112
|
+
| Timeline | "compare periods" | `compare_periods` |
|
|
113
|
+
| Scope | "page analysis" | `get_page_metrics` |
|
|
114
|
+
| Scope | "element friction" | `get_element_friction` |
|
|
115
|
+
| Root cause | "console errors" | `get_console_errors` |
|
|
116
|
+
| Root cause | "dead clicks" | `get_dead_clicks` |
|
|
117
|
+
| Root cause | "investigate issue" | Use `search_tools` to discover investigation tools |
|
|
118
|
+
| Sessions | "session details" | `search_sessions`, `get_session_details` |
|
|
119
|
+
| Fix | "propose fix" | `propose_fix` |
|
|
120
|
+
| Track | "deployment" | `confirm_deployment`, `evaluate_fix` |
|