react-grab 0.1.0-beta.1 → 0.1.0-beta.11
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/README.md +3 -15
- package/dist/chunk-3LWPTWNM.js +100 -0
- package/dist/chunk-TDCDD444.cjs +100 -0
- package/dist/core/index.cjs +1 -1
- package/dist/core/index.d.cts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/dist/{index-BdKhAk4Q.d.ts → index-BUAJ3r2H.d.cts} +4 -0
- package/dist/{index-BdKhAk4Q.d.cts → index-BUAJ3r2H.d.ts} +4 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.global.js +35 -23
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -4
- package/dist/chunk-LDW43FYB.js +0 -88
- package/dist/chunk-PRH54P3S.cjs +0 -88
- package/dist/cli.cjs +0 -2
package/README.md
CHANGED
|
@@ -164,7 +164,7 @@ Or add it manually to your `mcp.json` file:
|
|
|
164
164
|
"mcpServers": {
|
|
165
165
|
"react-grab-browser": {
|
|
166
166
|
"command": "npx",
|
|
167
|
-
"args": ["-y", "
|
|
167
|
+
"args": ["-y", "grab", "browser", "mcp"]
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
}
|
|
@@ -179,26 +179,14 @@ Once configured, your agent has access to:
|
|
|
179
179
|
|
|
180
180
|
## Skill
|
|
181
181
|
|
|
182
|
-
For agents that support skills (like Codex), install the `react-grab
|
|
182
|
+
For agents that support skills (like Codex), install the `react-grab` skill:
|
|
183
183
|
|
|
184
184
|
```bash
|
|
185
185
|
npx -y grab@latest add skill
|
|
186
186
|
# or
|
|
187
|
-
npx -y
|
|
187
|
+
npx -y add-skill aidenybai/react-grab
|
|
188
188
|
```
|
|
189
189
|
|
|
190
|
-
The skill provides browser automation with Playwright using your real browser cookies. See the [skill documentation](https://github.com/aidenybai/react-grab/blob/main/skills/react-grab-browser/SKILL.md) for full details.
|
|
191
|
-
|
|
192
|
-
## Claude Plugin
|
|
193
|
-
|
|
194
|
-
React Grab includes a Claude plugin for Claude Code/Desktop. The plugin is located in `.claude-plugin/` and provides browser automation capabilities.
|
|
195
|
-
|
|
196
|
-
To use it, ensure the plugin files are present:
|
|
197
|
-
- `.claude-plugin/marketplace.json` - Plugin manifest
|
|
198
|
-
- `.claude/skills/react-grab-browser/` - Skill files (SKILL.md, EXAMPLES.md, REFERENCE.md)
|
|
199
|
-
|
|
200
|
-
The plugin triggers on browser-related requests like "browse", "navigate to", "screenshot", "click on", "fill form", etc.
|
|
201
|
-
|
|
202
190
|
## Extending React Grab
|
|
203
191
|
|
|
204
192
|
React Grab uses a plugin system to extend functionality. Check out the [type definitions](https://github.com/aidenybai/react-grab/blob/main/packages/react-grab/src/types.ts) to see all available options.
|