tab-agent 0.3.3 → 0.3.4

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.
Files changed (2) hide show
  1. package/README.md +8 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,14 +3,12 @@
3
3
  [![npm version](https://img.shields.io/npm/v/tab-agent.svg)](https://www.npmjs.com/package/tab-agent)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- **Give LLMs full control of your browser** — securely, with click-to-activate permission.
7
-
8
- Works with Claude, ChatGPT, Codex, and any AI that can run shell commands.
6
+ **Browser control for Claude Code and Codex** — click-to-activate security.
9
7
 
10
8
  ```
11
9
  ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
12
- │ Claude / GPT │────▶│ Relay Server │────▶│ Extension │
13
- Codex / LLM │◀────│ (background) │◀────│ (Chrome) │
10
+ │ Claude Code │────▶│ Relay Server │────▶│ Extension │
11
+ or Codex │◀────│ (background) │◀────│ (Chrome) │
14
12
  └─────────────────┘ └─────────────────┘ └─────────────────┘
15
13
 
16
14
 
@@ -27,7 +25,7 @@ Works with Claude, ChatGPT, Codex, and any AI that can run shell commands.
27
25
  - **Runs in background** — relay starts automatically, works while you do other things
28
26
  - **Click-to-activate security** — only tabs you explicitly enable, others stay private
29
27
  - **AI-optimized snapshots** — pages converted to text with refs `[e1]`, `[e2]` for easy targeting
30
- - **Works with any LLM** Claude, ChatGPT, Codex, or custom AI agents
28
+ - **Works with Claude Code & Codex** installs skills automatically
31
29
 
32
30
  ## Quick Start
33
31
 
@@ -41,7 +39,7 @@ npx tab-agent setup
41
39
 
42
40
  # 3. Activate & go
43
41
  # Click extension icon on any tab (turns green)
44
- # Ask your AI: "Search Amazon for mechanical keyboards and find the best rated"
42
+ # Ask Claude: "Search Amazon for mechanical keyboards and find the best rated"
45
43
  ```
46
44
 
47
45
  ## Example Tasks
@@ -145,12 +143,12 @@ Your banking, email, and sensitive tabs stay completely isolated unless you expl
145
143
 
146
144
  1. **Chrome Extension** — Injects into activated tabs, captures DOM snapshots
147
145
  2. **Relay Server** — Bridges AI ↔ Extension via Chrome Native Messaging (runs in background)
148
- 3. **CLI** — Simple commands that any LLM can execute
146
+ 3. **CLI** — Simple commands for Claude Code and Codex
149
147
 
150
148
  ```
151
149
  You: "Find cheap flights to Tokyo"
152
150
 
153
- LLM → npx tab-agent navigate "google.com/flights"
151
+ Claude → npx tab-agent navigate "google.com/flights"
154
152
  → npx tab-agent snapshot
155
153
  → npx tab-agent type e5 "Tokyo"
156
154
  → npx tab-agent click e12
@@ -163,4 +161,4 @@ MIT
163
161
 
164
162
  ---
165
163
 
166
- **Keywords:** browser agent, browser automation, AI browser control, Claude browser, ChatGPT browser, LLM web automation, Codex browser, puppeteer alternative, playwright alternative
164
+ **Keywords:** browser automation, claude code, codex, AI browser control, web automation, puppeteer alternative, playwright alternative
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tab-agent",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Give LLMs full control of your browser - secure, click-to-activate automation for Claude, ChatGPT, Codex, and any AI",
5
5
  "bin": {
6
6
  "tab-agent": "./bin/tab-agent.js"