@flrande/browserctl 0.1.0 → 0.2.0-dev.12.1
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/INSTALL-CN.md +28 -0
- package/INSTALL.md +28 -0
- package/README-CN.md +27 -1131
- package/README.md +27 -1131
- package/apps/browserctl/src/commands/command-wrappers.test.ts +386 -0
- package/apps/browserctl/src/commands/network-wait-for.test.ts +90 -0
- package/apps/browserctl/src/e2e.test.ts +9 -5
- package/apps/browserctl/src/main.dispatch.test.ts +256 -0
- package/apps/browserctl/src/smoke.e2e.test.ts +97 -0
- package/apps/browserctl/src/test-port.ts +26 -0
- package/apps/browserd/src/chrome-relay-extension-bridge.test.ts +6 -31
- package/apps/browserd/src/container.ts +12 -10
- package/apps/browserd/src/main.test.ts +81 -46
- package/apps/browserd/src/test-port.ts +26 -0
- package/apps/browserd/src/tool-matrix.test.ts +398 -0
- package/extensions/chrome-relay/README-CN.md +39 -0
- package/extensions/chrome-relay/README.md +3 -0
- package/package.json +6 -4
- package/apps/browserctl/src/smoke.test.ts +0 -16
- package/apps/browserctl/src/smoke.ts +0 -5
- package/scripts/smoke.ps1 +0 -127
package/INSTALL-CN.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# 安装 browserctl Skills
|
|
2
|
+
|
|
3
|
+
[English](INSTALL.md) | 简体中文
|
|
4
|
+
|
|
5
|
+
本仓库发布一个默认可安装 skill:
|
|
6
|
+
|
|
7
|
+
- `skills/browserctl`
|
|
8
|
+
|
|
9
|
+
## 给 Agent 的主提示词
|
|
10
|
+
|
|
11
|
+
把下面文本贴给 agent:
|
|
12
|
+
|
|
13
|
+
```text
|
|
14
|
+
请抓取并遵循 https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/INSTALL.md 中的安装说明。
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 平台安装入口
|
|
18
|
+
|
|
19
|
+
- Codex:`https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.codex/INSTALL.md`
|
|
20
|
+
- Claude Code:`https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.claude-plugin/INSTALL.md`
|
|
21
|
+
- Cursor:`https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.cursor-plugin/INSTALL.md`
|
|
22
|
+
- OpenCode:`https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.opencode/INSTALL.md`
|
|
23
|
+
|
|
24
|
+
## 兜底约定
|
|
25
|
+
|
|
26
|
+
如果平台安装入口不可用,agent 应直接抓取并遵循:
|
|
27
|
+
|
|
28
|
+
- `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/skills/browserctl/SKILL.md`
|
package/INSTALL.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Install browserctl Skills
|
|
2
|
+
|
|
3
|
+
English | [简体中文](INSTALL-CN.md)
|
|
4
|
+
|
|
5
|
+
This repository publishes one default installable skill:
|
|
6
|
+
|
|
7
|
+
- `skills/browserctl`
|
|
8
|
+
|
|
9
|
+
## Primary Agent Prompt
|
|
10
|
+
|
|
11
|
+
Paste this to your agent:
|
|
12
|
+
|
|
13
|
+
```text
|
|
14
|
+
Fetch and follow instructions from https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/INSTALL.md
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Platform Guides
|
|
18
|
+
|
|
19
|
+
- Codex: `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.codex/INSTALL.md`
|
|
20
|
+
- Claude Code: `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.claude-plugin/INSTALL.md`
|
|
21
|
+
- Cursor: `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.cursor-plugin/INSTALL.md`
|
|
22
|
+
- OpenCode: `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/.opencode/INSTALL.md`
|
|
23
|
+
|
|
24
|
+
## Fallback Contract
|
|
25
|
+
|
|
26
|
+
If platform-specific install is unavailable, agents should fetch and follow:
|
|
27
|
+
|
|
28
|
+
- `https://raw.githubusercontent.com/Flrande/browserctl/refs/heads/master/skills/browserctl/SKILL.md`
|