gm-cc 2.0.303 → 2.0.305
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "AnEntrypoint"
|
|
5
5
|
},
|
|
6
6
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.305",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "State machine agent with hooks, skills, and automated git enforcement"
|
|
10
10
|
},
|
package/package.json
CHANGED
package/plugin.json
CHANGED
package/skills/browser/SKILL.md
CHANGED
|
@@ -10,15 +10,19 @@ allowed-tools: Bash(browser:*), Bash(exec:browser*)
|
|
|
10
10
|
|
|
11
11
|
**Session commands** — use `browser:` prefix via Bash for all browser control.
|
|
12
12
|
|
|
13
|
-
Create a session first, then run commands against it:
|
|
13
|
+
Create a session first, then run commands against it. Use `--direct` for CDP mode (no extension needed — requires Chrome with remote debugging):
|
|
14
14
|
|
|
15
15
|
```
|
|
16
16
|
browser:
|
|
17
|
-
playwriter session new
|
|
17
|
+
playwriter session new --direct
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Returns a numeric session ID (e.g. `1`). Use that ID for all subsequent commands.
|
|
21
21
|
|
|
22
|
+
If `--direct` fails, the user needs Chrome running with debugging enabled:
|
|
23
|
+
- Open `chrome://inspect/#remote-debugging` in Chrome, OR
|
|
24
|
+
- Launch Chrome with `chrome --remote-debugging-port=9222`
|
|
25
|
+
|
|
22
26
|
```
|
|
23
27
|
browser:
|
|
24
28
|
playwriter -s 1 -e 'await page.goto("https://example.com")'
|