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 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", "@react-grab/cli", "browser", "mcp"]
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-browser` skill:
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 openskills install aidenybai/react-grab -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.