tabctl 0.6.0-alpha.16 → 0.6.0-alpha.18

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
@@ -25,11 +25,10 @@ cargo install --path rust/crates/tabctl
25
25
 
26
26
  ## Agent Skill
27
27
 
28
- Give your coding agent eyes into the browser. One command and it learns the protocol.
28
+ Give your coding agent eyes into the browser. Install the tabctl skill via the Skills CLI:
29
29
 
30
30
  ```bash
31
- tabctl skill
32
- # or: npx skills add https://github.com/ekroon/tabctl --skill tabctl -a opencode -a github-copilot -a claude-code
31
+ npx skills add https://github.com/ekroon/tabctl --skill tabctl -a opencode -a github-copilot -a claude-code
33
32
  ```
34
33
 
35
34
  ## Safety
@@ -181,24 +180,16 @@ tabctl inspect --tab <id> --signal selector --selector "link=a[href]" --selector
181
180
 
182
181
  ## Agent skills
183
182
 
184
- Install the tabctl skill for agents (OpenCode, Claude Code, Codex, etc.) via the bundled command (uses the Skills CLI under the hood):
183
+ Install the tabctl skill for agents (OpenCode, Claude Code, Codex, etc.) via the Skills CLI:
185
184
 
186
- <!-- test: "skill install creates project skill link" -->
187
185
  ```bash
188
- tabctl skill
189
- ```
190
-
191
- This writes a project-local skill to `.opencode/skills/tabctl/SKILL.md`. You can also install globally:
192
-
193
- <!-- test: "skill install supports global scope" -->
194
- ```bash
195
- tabctl skill --global
186
+ npx skills add https://github.com/ekroon/tabctl --skill tabctl -a opencode
196
187
  ```
197
188
 
198
- To install into a specific agent toolchain with `skills`:
189
+ Install globally:
199
190
 
200
191
  ```bash
201
- npx skills add https://github.com/ekroon/tabctl --skill tabctl -a opencode
192
+ npx skills add https://github.com/ekroon/tabctl --skill tabctl --global -a opencode
202
193
  ```
203
194
 
204
195
  ## Policy (protect tabs)
@@ -702,7 +702,11 @@
702
702
  groupTitle: group ? group.title : null,
703
703
  groupColor: group ? group.color : null,
704
704
  groupCollapsed: group ? group.collapsed : null,
705
- lastFocusedAt: state.lastFocused[String(tab.id)] || null
705
+ lastFocusedAt: state.lastFocused[String(tab.id)] || null,
706
+ favIconUrl: tab.favIconUrl || null,
707
+ status: tab.status || null,
708
+ discarded: tab.discarded || false,
709
+ audible: tab.audible || false
706
710
  };
707
711
  });
708
712
  const windowGroups = groups.filter((group) => group.windowId === win.id).map((group) => ({
@@ -19,5 +19,5 @@
19
19
  "background": {
20
20
  "service_worker": "background.js"
21
21
  },
22
- "version_name": "0.6.0-alpha.16"
22
+ "version_name": "0.6.0-alpha.18"
23
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabctl",
3
- "version": "0.6.0-alpha.16",
3
+ "version": "0.6.0-alpha.18",
4
4
  "description": "CLI tool to manage and analyze browser tabs",
5
5
  "license": "MIT",
6
6
  "repository": {