agent-browser-priv 0.31.1-priv.1 → 0.31.1-priv.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
@@ -491,7 +491,7 @@ agent-browser skills get --all # Output every skill
491
491
  agent-browser skills path [name] # Print skill directory path
492
492
  ```
493
493
 
494
- Serves bundled skill content that always matches the installed CLI version. AI agents use this to get current instructions rather than relying on cached copies. Set `AGENT_BROWSER_SKILLS_DIR` to override the skills directory path.
494
+ Serves bundled skill content that always matches the installed CLI version. AI agents use this to get current instructions rather than relying on cached copies. Binary-only installs hydrate bundled skills into `~/.agent-browser/skills/<version>` when no package directory is available. Set `AGENT_BROWSER_SKILLS_DIR` to override the skills directory path.
495
495
 
496
496
  ### MCP Server
497
497
 
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-browser-priv",
3
- "version": "0.31.1-priv.1",
3
+ "version": "0.31.1-priv.2",
4
4
  "description": "Browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.1.3",
@@ -470,6 +470,8 @@ EOF
470
470
 
471
471
  ## When to load another skill
472
472
 
473
+ `agent-browser skills get ...` serves version-matched bundled content. On binary-only installs such as Homebrew, the CLI may hydrate those files into `~/.agent-browser/skills/<version>` before serving them. Use `agent-browser skills path <name>` when a real filesystem path is needed; do not assume npm-style package directories.
474
+
473
475
  - **Electron desktop app** (VS Code, Slack desktop, Discord, Figma, etc.): `agent-browser skills get electron`
474
476
  - **Slack workspace automation**: `agent-browser skills get slack`
475
477
  - **Exploratory testing / QA / bug hunts**: `agent-browser skills get dogfood`