agent-browser 0.4.1 → 0.4.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/README.md
CHANGED
|
@@ -436,15 +436,15 @@ Core workflow:
|
|
|
436
436
|
For Claude Code, a [skill](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices) provides richer context:
|
|
437
437
|
|
|
438
438
|
```bash
|
|
439
|
-
cp -r node_modules/agent-browser/skills/
|
|
439
|
+
cp -r node_modules/agent-browser/skills/agent-browser .claude/skills/
|
|
440
440
|
```
|
|
441
441
|
|
|
442
442
|
Or download:
|
|
443
443
|
|
|
444
444
|
```bash
|
|
445
|
-
mkdir -p .claude/skills/
|
|
446
|
-
curl -o .claude/skills/
|
|
447
|
-
https://raw.githubusercontent.com/vercel-labs/agent-browser/main/skills/
|
|
445
|
+
mkdir -p .claude/skills/agent-browser
|
|
446
|
+
curl -o .claude/skills/agent-browser/SKILL.md \
|
|
447
|
+
https://raw.githubusercontent.com/vercel-labs/agent-browser/main/skills/agent-browser/SKILL.md
|
|
448
448
|
```
|
|
449
449
|
|
|
450
450
|
## License
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: agent-browser
|
|
3
3
|
description: Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
|
|
4
4
|
---
|
|
5
5
|
|