@rudderhq/agent-runtime-gemini-local 0.7.1 → 0.7.2
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": "@rudderhq/agent-runtime-gemini-local",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"typecheck": "tsc --noEmit"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@rudderhq/agent-runtime-utils": "0.7.
|
|
70
|
+
"@rudderhq/agent-runtime-utils": "0.7.2",
|
|
71
71
|
"picocolors": "^1.1.1"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
package/skills/browser/SKILL.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: browser
|
|
3
|
-
description: "Control Rudder's built-in Browser through the separate run-scoped rudder-browser MCP. Use for opening or showing pages, inspecting visible or interactive state, navigating, clicking, typing,
|
|
3
|
+
description: "Control Rudder's built-in Browser through the separate run-scoped rudder-browser MCP, but invoke this skill only when the user explicitly mentions or selects Rudder's built-in Browser, Rudder Browser, or $browser. Use it then for opening or showing pages, inspecting visible or interactive state, navigating, clicking, typing, localhost testing, responsive checks, screenshots, dialogs, downloads, uploads, exports, console logs, clipboard, page assets, or listing tabs already open in Rudder's built-in Browser. Do not invoke it for generic web browsing, URL visits, web research, localhost testing, screenshots, or page interaction when the user has not explicitly chosen Rudder's built-in Browser."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Browser
|
|
7
7
|
|
|
8
|
-
Use
|
|
9
|
-
|
|
10
|
-
Browser
|
|
8
|
+
Use Rudder's built-in Browser only when the user explicitly names or selects
|
|
9
|
+
that surface, for example by saying `Rudder Browser`, `Rudder's built-in
|
|
10
|
+
Browser`, or `$browser`, or by referring to a page or tab already open there.
|
|
11
|
+
The request must identify the Rudder Browser as the intended surface; a generic
|
|
12
|
+
request to browse the web, visit a URL, research a site, test localhost, take a
|
|
13
|
+
screenshot, or interact with a page is not enough to invoke this skill.
|
|
14
|
+
|
|
15
|
+
When explicitly selected, the Browser may share signed-in website state from
|
|
16
|
+
the local Rudder Browser profile. If the user does not explicitly select it,
|
|
17
|
+
do not open, inspect, or interact with Rudder's Browser on the skill's behalf.
|
|
11
18
|
|
|
12
19
|
The Browser is a separate optional integration named `rudder-browser`. Do not
|
|
13
20
|
look for Browser tools inside `rudder-tools`, launch another browser,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "Browser"
|
|
3
3
|
short_description: "Control and test pages in Rudder Browser"
|
|
4
|
-
default_prompt: "Use $browser
|
|
4
|
+
default_prompt: "Use $browser only when the user explicitly requests Rudder's built-in Browser; then inspect this page and interact through safe high-level refs or explicit coordinate CUA."
|
|
5
5
|
|
|
6
6
|
dependencies:
|
|
7
7
|
tools:
|
|
@@ -11,4 +11,4 @@ dependencies:
|
|
|
11
11
|
transport: "stdio"
|
|
12
12
|
|
|
13
13
|
policy:
|
|
14
|
-
allow_implicit_invocation:
|
|
14
|
+
allow_implicit_invocation: false
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"query": "Use Rudder's built-in Browser to open https://example.com and report the page heading.",
|
|
4
|
+
"should_trigger": true
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"query": "Use $browser to inspect the page already open in Rudder and take a screenshot.",
|
|
8
|
+
"should_trigger": true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"query": "Please browse https://example.com and report the page heading.",
|
|
12
|
+
"should_trigger": false
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"query": "Open the local app at http://localhost:4173 and test its login form.",
|
|
16
|
+
"should_trigger": false
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"query": "Take a screenshot of the current webpage and check whether the layout overlaps.",
|
|
20
|
+
"should_trigger": false
|
|
21
|
+
}
|
|
22
|
+
]
|