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.
- package/README.md +8 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,14 +3,12 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/tab-agent)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
**
|
|
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
|
|
13
|
-
│
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
164
|
+
**Keywords:** browser automation, claude code, codex, AI browser control, web automation, puppeteer alternative, playwright alternative
|
package/package.json
CHANGED