Skip to content

Commit aeb0e1e

Browse files
committed
Use check emoji for OBU deliverable group
1 parent b40967e commit aeb0e1e

13 files changed

Lines changed: 38 additions & 12 deletions

File tree

apps/chrome-extension/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const DEFAULT_CDP_TIMEOUT_MS = 10_000;
77
const CURSOR_ARRIVAL_TIMEOUT_MS = 1_000;
88
const MAX_USER_TABS = 1000;
99
const DEFAULT_SESSION_GROUP_TITLE = "Task - OBU";
10-
const DELIVERABLE_GROUP_TITLE = "🫪 Open Browser Use";
10+
const DELIVERABLE_GROUP_TITLE = " Open Browser Use";
1111
const LEGACY_SESSION_GROUP_TITLE_PATTERN = /^Open Browser Use [0-9a-f]{8}$/i;
1212

1313
class JsonRpcPeer {

apps/chrome-extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Open Browser Use",
44
"description": "Open Browser Use Chrome automation extension.",
5-
"version": "0.1.25",
5+
"version": "0.1.26",
66
"icons": {
77
"16": "icons/icon-16.png",
88
"32": "icons/icon-32.png",

cmd/open-browser-use/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/spf13/cobra"
2727
)
2828

29-
const version = "0.1.25"
29+
const version = "0.1.26"
3030
const defaultChromeExtensionID = "bgjoihaepiejlfjinojjfgokghnodnhd"
3131
const defaultCLISessionID = "obu-cli"
3232
const defaultMCPSessionID = "obu-mcp"

docs/ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ dot;hyphen 版本 `com.ifuryst.open-computer-use.extension` 会被
158158
MV3 service worker restarts can recover session tab listing semantics.
159159
新 session 的默认任务组名是 `Task - OBU`,上层 runtime 应通过
160160
`nameSession`/`name-session``<short task> - OBU` 设置更具体的任务名;
161-
`deliverable` tabs 统一移动到共享 `🫪 Open Browser Use` tab group,`handoff`
161+
`deliverable` tabs 统一移动到共享 ` Open Browser Use` tab group,`handoff`
162162
tabs 保留在当前任务组。
163163
`turnEnded` and `finalizeTabs` clear active session state when control ends
164164
so download notifications only fire while a browser session is active.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## [2026-05-10 13:18] | Task: Use check emoji for deliverable group
2+
3+
> Open Browser Use deliverable group used a new emoji that rendered as `[?]` in Chrome tab groups; replace it with a green check emoji.
4+
5+
**Scope:** Chrome extension tab group title, Open Browser Use skill display/guidance, architecture and release docs.
6+
7+
## Changes
8+
9+
- **[Extension]**: Changed the shared deliverable tab group title from `🫪 Open Browser Use` to `✅ Open Browser Use`.
10+
- **[Skill]**: Updated the skill display name and cleanup guidance to use the same check emoji title.
11+
- **[Docs]**: Synced architecture and release note wording so repository docs match the runtime title.
12+
- **[Release]**: Bumped Open Browser Use package metadata to `0.1.26` for a patch release.
13+
14+
## Rationale
15+
16+
`🫪` is a newer Unicode emoji and can render as a missing glyph in Chrome tab group UI on systems without matching emoji font support. `` is widely supported and keeps the intended green completion marker.
17+
18+
## Files
19+
20+
- `apps/chrome-extension/background.js`
21+
- `skills/open-browser-use/SKILL.md`
22+
- `skills/open-browser-use/agents/openai.yaml`
23+
- `docs/ARCHITECTURE.md`
24+
- `docs/releases/feature-release-notes.md`
25+
- package/runtime version metadata

docs/releases/feature-release-notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
| 日期 | 功能域 | 用户价值 | 变更摘要 |
66
| --- | --- | --- | --- |
7+
| 2026-05-10 | Deliverable Group Emoji | Chrome tab group 中的 Open Browser Use 交付组不再因为使用过新的 emoji 而显示成 `[?]`,保留绿色分组和清晰的完成标记。 | 发布 `0.1.26` patch 版本,将 shared deliverable group、skill display name 和文档统一改为兼容性更好的 `✅ Open Browser Use`|
78
| 2026-05-10 | Skill Session Hygiene | Agent 使用 Open Browser Use 时会被引导为每个任务或会话使用唯一 session id,并按更严格的 cleanup 规则默认清理无用标签页,减少跨任务复用旧 tab group 的风险。 | 发布 `0.1.25` patch 版本,更新 bundled skill 的 CLI、MCP、SDK 示例,明确不要依赖 fallback `obu-cli` session,补充官方 Chrome skill 0.1.7 参考快照,并收紧 deliverable、handoff、finalize 语义。 |
89
| 2026-05-10 | Skill SDK Guidance | Agent 用户通过 bundled skill 使用 SDK 时,可以直接复制当前 npm/PyPI 发布包的安装和 JS/Python 示例,不会再看到旧 scoped npm 包名或混淆的 client/browser 变量。 | 发布 `0.1.24` patch 版本,补强 `skills/open-browser-use` 的 SDK reference,新增 JS `connectOpenBrowserUse` 高层示例,保留低层 `OpenBrowserUseClient` 示例,并统一说明 `open-browser-use-sdk` distribution 与 Python `open_browser_use` import。 |
910
| 2026-05-10 | SDK Package Publishing | JS/Python SDK 用户可以用同一个包名 `open-browser-use-sdk` 从 npm 或 PyPI 安装,不再只能依赖仓库源码路径。 | JS SDK npm 包从内部 scoped 名改为公开 distribution `open-browser-use-sdk`,Python SDK PyPI distribution 同步改名为 `open-browser-use-sdk` 并保留 `open_browser_use` import;新增 PyPI trusted publishing workflow,并让 npm workflow 同时发布 CLI 和 JS SDK。 |
@@ -14,7 +15,7 @@
1415
| 2026-05-09 | CLI Action Runner | Shell-first agent runtime 和 CI 可以用 `open-browser-use run -c/--file` 编排多步浏览器动作,不必额外引入 JS/Python runtime。 | 发布 `0.1.19` patch 版本,新增 line-oriented action plan、共享 session/turn、默认 tab 传递、`wait-load`/`page-info` 等 action,并补齐 CLI README、skill 指南和 fake socket 测试。 |
1516
| 2026-05-09 | Cursor Overlay Polish | 页面里的 Agent cursor 更接近官方 Codex Chrome 插件表现,尺寸、方向、移动质感和闲置摆动都更自然。 | 发布 `0.1.18` patch 版本,将 cursor overlay 改为 24px 中心锚点结构,补齐弹簧移动、短距离 scoot、长距离 bezier 曲线、移动拉伸和落点后钟摆摆动。 |
1617
| 2026-05-09 | Beta ZIP Naming | 审核期安装只暴露一个可拖入 Chrome 的 release ZIP,避免同时看到普通 zip 和 `-manual.zip` 造成误解。 | 发布 `0.1.17` patch 版本,npm postinstall/Homebrew caveats 改回英文提示,release zip 直接写入稳定 key 并保持 `open-browser-use-chrome-extension-<version>.zip` 文件名,`setup beta` 不再生成 `*-manual.zip`|
17-
| 2026-05-09 | Tab Group Naming | Agent 浏览器任务组和交付组的命名更清楚,当前任务保留在 `<short task> - OBU` 组,最终交付统一移动到 `🫪 Open Browser Use`| 发布 `0.1.16` patch 版本,默认 session group 改为 `Task - OBU`,deliverable group 改为 `🫪 Open Browser Use`,并补齐 legacy group title 迁移和 skill 指南。 |
18+
| 2026-05-09 | Tab Group Naming | Agent 浏览器任务组和交付组的命名更清楚,当前任务保留在 `<short task> - OBU` 组,最终交付统一移动到 ` Open Browser Use`| 发布 `0.1.16` patch 版本,默认 session group 改为 `Task - OBU`,deliverable group 改为 ` Open Browser Use`,并补齐 legacy group title 迁移和 skill 指南。 |
1819
| 2026-05-09 | Beta Setup Guidance | Chrome Web Store 上架前,安装后的下一步只引导用户走 keyed manual-install ZIP 路径,避免 `setup release` / `setup offline` 两套名字造成混淆。 | 发布 `0.1.16` patch 版本,移除 `open-browser-use setup release/offline` 用户入口,保留 `open-browser-use setup``open-browser-use setup beta`,并把 npm postinstall、Homebrew caveats、README、架构、安全和 skill 文档同步到 `setup beta`|
1920
| 2026-05-09 | SDK High-Level Browser API | JS/Python SDK 用户可以保留底层 JSON-RPC/CDP 原子调用,同时用 browser/tab/playwright-like helper 编排常见浏览器自动化流程。 | 发布 `0.1.15` patch 版本,新增 JS `connectOpenBrowserUse` 与 Python `connect_open_browser_use` 高层 browser/tab API;覆盖 `goto`、load-state wait、DOM snapshot 和 Python notification 插队读取。 |
2021
| 2026-05-09 | Homebrew Setup Guidance | Homebrew 安装后的提示文案和当前审核期手动安装路径一致,用户会被引导生成 keyed manual-install ZIP,而不是旧的 Load unpacked 表述。 | 发布 `0.1.14` patch 版本,同步 Homebrew formula caveat 模板,并把 CLI、扩展、SDK 和 npm CLI 包版本提升到 `0.1.14`|

packages/browser-client-rewrite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-browser-use/browser-client-rewrite",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/browser-use-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-browser-use/browser-use-protocol",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"private": true,
55
"description": "Browser Use native pipe framing and JSON-RPC helpers.",
66
"type": "module",

packages/open-browser-use-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-browser-use",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"description": "Open Browser Use native host and CLI binary.",
55
"license": "MIT",
66
"type": "module",

packages/open-browser-use-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-browser-use-sdk",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"description": "JavaScript/TypeScript SDK for Open Browser Use.",
55
"license": "MIT",
66
"type": "module",

0 commit comments

Comments
 (0)