react-grab 0.0.84 → 0.0.85
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 +25 -7
- package/dist/{chunk-4RMN66RZ.js → chunk-EVTBFQDA.js} +2 -2
- package/dist/{chunk-KH3NPZ2C.cjs → chunk-GQE4KUP2.cjs} +2 -2
- package/dist/cli.cjs +1 -1
- package/dist/core.cjs +1 -1
- package/dist/core.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.global.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -120,13 +120,14 @@ if (process.env.NODE_ENV === "development") {
|
|
|
120
120
|
}
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
## Coding agent integration
|
|
123
|
+
## Coding agent integration
|
|
124
124
|
|
|
125
125
|
React Grab can send selected element context directly to your coding agent. This enables a workflow where you select a UI element and an agent automatically makes changes to your codebase.
|
|
126
126
|
|
|
127
127
|
This means **no copying and pasting** - just select the element and let the agent do the rest. [Learn more →](https://react-grab.com/blog/agent)
|
|
128
128
|
|
|
129
|
-
|
|
129
|
+
<details>
|
|
130
|
+
<summary><strong>Claude Code</strong></summary>
|
|
130
131
|
|
|
131
132
|
#### Server Setup
|
|
132
133
|
|
|
@@ -176,7 +177,10 @@ export default function RootLayout({ children }) {
|
|
|
176
177
|
}
|
|
177
178
|
```
|
|
178
179
|
|
|
179
|
-
|
|
180
|
+
</details>
|
|
181
|
+
|
|
182
|
+
<details>
|
|
183
|
+
<summary><strong>Cursor CLI</strong></summary>
|
|
180
184
|
|
|
181
185
|
You must have the [`cursor-agent` CLI](https://cursor.com/docs/cli/overview) installed.
|
|
182
186
|
|
|
@@ -228,7 +232,10 @@ export default function RootLayout({ children }) {
|
|
|
228
232
|
}
|
|
229
233
|
```
|
|
230
234
|
|
|
231
|
-
|
|
235
|
+
</details>
|
|
236
|
+
|
|
237
|
+
<details>
|
|
238
|
+
<summary><strong>OpenCode</strong></summary>
|
|
232
239
|
|
|
233
240
|
#### Server Setup
|
|
234
241
|
|
|
@@ -280,7 +287,10 @@ export default function RootLayout({ children }) {
|
|
|
280
287
|
}
|
|
281
288
|
```
|
|
282
289
|
|
|
283
|
-
|
|
290
|
+
</details>
|
|
291
|
+
|
|
292
|
+
<details>
|
|
293
|
+
<summary><strong>Codex</strong></summary>
|
|
284
294
|
|
|
285
295
|
#### Server Setup
|
|
286
296
|
|
|
@@ -332,7 +342,10 @@ export default function RootLayout({ children }) {
|
|
|
332
342
|
}
|
|
333
343
|
```
|
|
334
344
|
|
|
335
|
-
|
|
345
|
+
</details>
|
|
346
|
+
|
|
347
|
+
<details>
|
|
348
|
+
<summary><strong>Gemini</strong></summary>
|
|
336
349
|
|
|
337
350
|
#### Server Setup
|
|
338
351
|
|
|
@@ -384,7 +397,10 @@ export default function RootLayout({ children }) {
|
|
|
384
397
|
}
|
|
385
398
|
```
|
|
386
399
|
|
|
387
|
-
|
|
400
|
+
</details>
|
|
401
|
+
|
|
402
|
+
<details>
|
|
403
|
+
<summary><strong>Amp</strong></summary>
|
|
388
404
|
|
|
389
405
|
#### Server Setup
|
|
390
406
|
|
|
@@ -436,6 +452,8 @@ export default function RootLayout({ children }) {
|
|
|
436
452
|
}
|
|
437
453
|
```
|
|
438
454
|
|
|
455
|
+
</details>
|
|
456
|
+
|
|
439
457
|
## Extending React Grab
|
|
440
458
|
|
|
441
459
|
React Grab provides an public customization API. Check out the [type definitions](https://github.com/aidenybai/react-grab/blob/main/packages/react-grab/src/types.ts) to see all available options for extending React Grab.
|