@jackwener/opencli 1.0.1 → 1.0.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 (253) hide show
  1. package/.github/workflows/build-extension.yml +80 -0
  2. package/.github/workflows/ci.yml +6 -6
  3. package/.github/workflows/docs.yml +52 -0
  4. package/.github/workflows/e2e-headed.yml +2 -2
  5. package/.github/workflows/pkg-pr-new.yml +2 -2
  6. package/.github/workflows/release.yml +2 -5
  7. package/.github/workflows/security.yml +2 -2
  8. package/CDP.md +1 -1
  9. package/CDP.zh-CN.md +1 -1
  10. package/README.md +42 -34
  11. package/README.zh-CN.md +42 -34
  12. package/SKILL.md +3 -5
  13. package/dist/browser/cdp.d.ts +42 -0
  14. package/dist/browser/cdp.js +339 -0
  15. package/dist/browser/daemon-client.d.ts +3 -1
  16. package/dist/browser/daemon-client.js +4 -0
  17. package/dist/browser/dom-helpers.d.ts +20 -0
  18. package/dist/browser/dom-helpers.js +109 -0
  19. package/dist/browser/index.d.ts +3 -0
  20. package/dist/browser/index.js +4 -0
  21. package/dist/browser/mcp.d.ts +1 -0
  22. package/dist/browser/mcp.js +10 -5
  23. package/dist/browser/page.d.ts +7 -0
  24. package/dist/browser/page.js +39 -123
  25. package/dist/browser/utils.d.ts +10 -0
  26. package/dist/browser/utils.js +27 -0
  27. package/dist/browser.test.js +49 -1
  28. package/dist/build-manifest.js +3 -1
  29. package/dist/build-manifest.test.js +34 -0
  30. package/dist/capabilityRouting.d.ts +2 -0
  31. package/dist/capabilityRouting.js +30 -0
  32. package/dist/capabilityRouting.test.d.ts +1 -0
  33. package/dist/capabilityRouting.test.js +42 -0
  34. package/dist/chaoxing.d.ts +58 -0
  35. package/dist/chaoxing.js +225 -0
  36. package/dist/chaoxing.test.d.ts +1 -0
  37. package/dist/chaoxing.test.js +45 -0
  38. package/dist/cli-manifest.json +885 -48
  39. package/dist/cli.d.ts +1 -0
  40. package/dist/cli.js +234 -0
  41. package/dist/clis/antigravity/serve.d.ts +14 -0
  42. package/dist/clis/antigravity/serve.js +263 -0
  43. package/dist/clis/bilibili/download.js +4 -14
  44. package/dist/clis/boss/chatlist.d.ts +1 -0
  45. package/dist/clis/boss/chatlist.js +50 -0
  46. package/dist/clis/boss/chatmsg.d.ts +1 -0
  47. package/dist/clis/boss/chatmsg.js +73 -0
  48. package/dist/clis/boss/resume.d.ts +1 -0
  49. package/dist/clis/boss/resume.js +249 -0
  50. package/dist/clis/boss/send.d.ts +1 -0
  51. package/dist/clis/boss/send.js +176 -0
  52. package/dist/clis/chaoxing/assignments.d.ts +1 -0
  53. package/dist/clis/chaoxing/assignments.js +74 -0
  54. package/dist/clis/chaoxing/exams.d.ts +1 -0
  55. package/dist/clis/chaoxing/exams.js +74 -0
  56. package/dist/clis/chatgpt/ask.js +15 -14
  57. package/dist/clis/chatgpt/ax.d.ts +1 -0
  58. package/dist/clis/chatgpt/ax.js +78 -0
  59. package/dist/clis/chatgpt/read.js +5 -6
  60. package/dist/clis/hf/top.d.ts +1 -0
  61. package/dist/clis/hf/top.js +119 -0
  62. package/dist/clis/jike/comment.d.ts +1 -0
  63. package/dist/clis/jike/comment.js +107 -0
  64. package/dist/clis/jike/create.d.ts +1 -0
  65. package/dist/clis/jike/create.js +106 -0
  66. package/dist/clis/jike/feed.d.ts +1 -0
  67. package/dist/clis/jike/feed.js +67 -0
  68. package/dist/clis/jike/like.d.ts +1 -0
  69. package/dist/clis/jike/like.js +61 -0
  70. package/dist/clis/jike/notifications.d.ts +1 -0
  71. package/dist/clis/jike/notifications.js +169 -0
  72. package/dist/clis/jike/post.yaml +58 -0
  73. package/dist/clis/jike/repost.d.ts +1 -0
  74. package/dist/clis/jike/repost.js +103 -0
  75. package/dist/clis/jike/search.d.ts +1 -0
  76. package/dist/clis/jike/search.js +67 -0
  77. package/dist/clis/jike/shared.d.ts +19 -0
  78. package/dist/clis/jike/shared.js +25 -0
  79. package/dist/clis/jike/topic.yaml +52 -0
  80. package/dist/clis/jike/user.yaml +51 -0
  81. package/dist/clis/smzdm/search.js +28 -39
  82. package/dist/clis/stackoverflow/bounties.yaml +29 -0
  83. package/dist/clis/stackoverflow/hot.yaml +28 -0
  84. package/dist/clis/stackoverflow/search.yaml +32 -0
  85. package/dist/clis/stackoverflow/unanswered.yaml +28 -0
  86. package/dist/clis/twitter/download.js +6 -16
  87. package/dist/clis/twitter/post.js +9 -2
  88. package/dist/clis/twitter/search.js +14 -33
  89. package/dist/clis/xiaohongshu/download.d.ts +1 -1
  90. package/dist/clis/xiaohongshu/download.js +4 -4
  91. package/dist/clis/zhihu/download.js +3 -3
  92. package/dist/doctor.d.ts +7 -0
  93. package/dist/doctor.js +16 -0
  94. package/dist/download/index.d.ts +12 -8
  95. package/dist/download/index.js +11 -3
  96. package/dist/download/index.test.d.ts +1 -0
  97. package/dist/download/index.test.js +14 -0
  98. package/dist/engine.js +25 -14
  99. package/dist/explore.d.ts +1 -0
  100. package/dist/explore.js +48 -103
  101. package/dist/generate.js +1 -0
  102. package/dist/interceptor.js +3 -2
  103. package/dist/main.js +4 -193
  104. package/dist/output.d.ts +2 -1
  105. package/dist/output.js +3 -1
  106. package/dist/pipeline/executor.test.js +1 -0
  107. package/dist/pipeline/steps/download.js +14 -18
  108. package/dist/registry.d.ts +4 -3
  109. package/dist/registry.js +5 -2
  110. package/dist/runtime.d.ts +4 -1
  111. package/dist/runtime.js +2 -2
  112. package/dist/scripts/framework.d.ts +4 -0
  113. package/dist/scripts/framework.js +21 -0
  114. package/dist/scripts/interact.d.ts +4 -0
  115. package/dist/scripts/interact.js +20 -0
  116. package/dist/scripts/store.d.ts +9 -0
  117. package/dist/scripts/store.js +44 -0
  118. package/dist/synthesize.js +1 -1
  119. package/dist/types.d.ts +12 -0
  120. package/dist/verify.d.ts +6 -1
  121. package/dist/verify.js +54 -2
  122. package/docs/.vitepress/config.mts +193 -0
  123. package/docs/adapters/browser/apple-podcasts.md +28 -0
  124. package/docs/adapters/browser/bbc.md +26 -0
  125. package/docs/adapters/browser/bilibili.md +38 -0
  126. package/docs/adapters/browser/boss.md +28 -0
  127. package/docs/adapters/browser/coupang.md +28 -0
  128. package/docs/adapters/browser/ctrip.md +27 -0
  129. package/docs/adapters/browser/github.md +26 -0
  130. package/docs/adapters/browser/hackernews.md +26 -0
  131. package/docs/adapters/browser/linkedin.md +27 -0
  132. package/docs/adapters/browser/reddit.md +41 -0
  133. package/docs/adapters/browser/reuters.md +27 -0
  134. package/docs/adapters/browser/smzdm.md +27 -0
  135. package/docs/adapters/browser/twitter.md +47 -0
  136. package/docs/adapters/browser/v2ex.md +32 -0
  137. package/docs/adapters/browser/weibo.md +27 -0
  138. package/docs/adapters/browser/xiaohongshu.md +32 -0
  139. package/docs/adapters/browser/xiaoyuzhou.md +28 -0
  140. package/docs/adapters/browser/xueqiu.md +32 -0
  141. package/docs/adapters/browser/yahoo-finance.md +26 -0
  142. package/docs/adapters/browser/youtube.md +29 -0
  143. package/docs/adapters/browser/zhihu.md +30 -0
  144. package/docs/adapters/desktop/antigravity.md +46 -0
  145. package/docs/adapters/desktop/chatgpt.md +43 -0
  146. package/docs/adapters/desktop/chatwise.md +38 -0
  147. package/docs/adapters/desktop/codex.md +32 -0
  148. package/docs/adapters/desktop/cursor.md +33 -0
  149. package/docs/adapters/desktop/discord.md +28 -0
  150. package/docs/adapters/desktop/feishu.md +20 -0
  151. package/docs/adapters/desktop/neteasemusic.md +31 -0
  152. package/docs/adapters/desktop/notion.md +29 -0
  153. package/docs/adapters/desktop/wechat.md +28 -0
  154. package/docs/adapters/index.md +49 -0
  155. package/docs/advanced/cdp.md +103 -0
  156. package/docs/advanced/download.md +63 -0
  157. package/docs/advanced/electron.md +125 -0
  158. package/docs/advanced/remote-chrome.md +72 -0
  159. package/docs/developer/ai-workflow.md +66 -0
  160. package/docs/developer/architecture.md +90 -0
  161. package/docs/developer/contributing.md +136 -0
  162. package/docs/developer/testing.md +237 -0
  163. package/docs/developer/ts-adapter.md +87 -0
  164. package/docs/developer/yaml-adapter.md +108 -0
  165. package/docs/guide/browser-bridge.md +38 -0
  166. package/docs/guide/getting-started.md +56 -0
  167. package/docs/guide/installation.md +37 -0
  168. package/docs/guide/troubleshooting.md +56 -0
  169. package/docs/index.md +35 -0
  170. package/docs/zh/adapters/index.md +5 -0
  171. package/docs/zh/advanced/cdp.md +3 -0
  172. package/docs/zh/developer/contributing.md +24 -0
  173. package/docs/zh/guide/browser-bridge.md +25 -0
  174. package/docs/zh/guide/getting-started.md +40 -0
  175. package/docs/zh/guide/installation.md +37 -0
  176. package/docs/zh/index.md +29 -0
  177. package/extension/dist/background.js +386 -438
  178. package/extension/manifest.json +2 -2
  179. package/extension/package-lock.json +1156 -0
  180. package/extension/src/background.test.ts +151 -0
  181. package/extension/src/background.ts +124 -53
  182. package/extension/src/protocol.ts +3 -1
  183. package/package.json +7 -3
  184. package/src/browser/cdp.ts +367 -0
  185. package/src/browser/daemon-client.ts +7 -1
  186. package/src/browser/dom-helpers.ts +116 -0
  187. package/src/browser/index.ts +4 -0
  188. package/src/browser/mcp.ts +14 -6
  189. package/src/browser/page.ts +47 -124
  190. package/src/browser/utils.ts +27 -0
  191. package/src/browser.test.ts +56 -0
  192. package/src/build-manifest.test.ts +36 -0
  193. package/src/build-manifest.ts +2 -1
  194. package/src/capabilityRouting.test.ts +47 -0
  195. package/src/capabilityRouting.ts +28 -0
  196. package/src/chaoxing.test.ts +53 -0
  197. package/src/chaoxing.ts +268 -0
  198. package/src/cli.ts +205 -0
  199. package/src/clis/antigravity/SKILL.md +5 -0
  200. package/src/clis/antigravity/serve.ts +329 -0
  201. package/src/clis/bilibili/download.ts +4 -15
  202. package/src/clis/boss/chatlist.ts +50 -0
  203. package/src/clis/boss/chatmsg.ts +70 -0
  204. package/src/clis/boss/resume.ts +262 -0
  205. package/src/clis/boss/send.ts +193 -0
  206. package/src/clis/chaoxing/README.md +36 -0
  207. package/src/clis/chaoxing/README.zh-CN.md +35 -0
  208. package/src/clis/chaoxing/assignments.ts +88 -0
  209. package/src/clis/chaoxing/exams.ts +88 -0
  210. package/src/clis/chatgpt/ask.ts +14 -15
  211. package/src/clis/chatgpt/ax.ts +81 -0
  212. package/src/clis/chatgpt/read.ts +5 -7
  213. package/src/clis/hf/top.ts +141 -0
  214. package/src/clis/jike/comment.ts +113 -0
  215. package/src/clis/jike/create.ts +113 -0
  216. package/src/clis/jike/feed.ts +74 -0
  217. package/src/clis/jike/like.ts +65 -0
  218. package/src/clis/jike/notifications.ts +185 -0
  219. package/src/clis/jike/post.yaml +58 -0
  220. package/src/clis/jike/repost.ts +114 -0
  221. package/src/clis/jike/search.ts +74 -0
  222. package/src/clis/jike/shared.ts +36 -0
  223. package/src/clis/jike/topic.yaml +52 -0
  224. package/src/clis/jike/user.yaml +51 -0
  225. package/src/clis/smzdm/search.ts +30 -39
  226. package/src/clis/stackoverflow/bounties.yaml +29 -0
  227. package/src/clis/stackoverflow/hot.yaml +28 -0
  228. package/src/clis/stackoverflow/search.yaml +32 -0
  229. package/src/clis/stackoverflow/unanswered.yaml +28 -0
  230. package/src/clis/twitter/download.ts +6 -17
  231. package/src/clis/twitter/post.ts +9 -2
  232. package/src/clis/twitter/search.ts +15 -33
  233. package/src/clis/xiaohongshu/download.ts +4 -4
  234. package/src/clis/zhihu/download.ts +3 -3
  235. package/src/doctor.ts +18 -2
  236. package/src/download/index.test.ts +16 -0
  237. package/src/download/index.ts +22 -4
  238. package/src/engine.ts +20 -13
  239. package/src/explore.ts +54 -103
  240. package/src/generate.ts +1 -0
  241. package/src/interceptor.ts +3 -2
  242. package/src/main.ts +4 -180
  243. package/src/output.ts +15 -13
  244. package/src/pipeline/executor.test.ts +1 -0
  245. package/src/pipeline/steps/download.ts +14 -17
  246. package/src/registry.ts +9 -5
  247. package/src/runtime.ts +3 -2
  248. package/src/scripts/framework.ts +20 -0
  249. package/src/scripts/interact.ts +22 -0
  250. package/src/scripts/store.ts +40 -0
  251. package/src/synthesize.ts +1 -1
  252. package/src/types.ts +9 -0
  253. package/src/verify.ts +64 -3
@@ -0,0 +1,56 @@
1
+ # Troubleshooting
2
+
3
+ ## Common Issues
4
+
5
+ ### "Extension not connected"
6
+
7
+ - Ensure the opencli Browser Bridge extension is installed and **enabled** in `chrome://extensions`.
8
+ - Run `opencli doctor` to diagnose connectivity.
9
+
10
+ ### Empty data or 'Unauthorized' error
11
+
12
+ - Your login session in Chrome might have expired. Open a normal Chrome tab, navigate to the target site, and log in or refresh the page.
13
+ - Some sites have geographic restrictions (e.g., Bilibili, Zhihu from outside China).
14
+
15
+ ### Node API errors
16
+
17
+ - Make sure you are using **Node.js >= 20**. Some dependencies require modern Node APIs.
18
+ - Run `node --version` to verify.
19
+
20
+ ### Daemon issues
21
+
22
+ ```bash
23
+ # Check daemon status
24
+ curl localhost:19825/status
25
+
26
+ # View extension logs
27
+ curl localhost:19825/logs
28
+
29
+ # Kill and restart daemon
30
+ pkill -f opencli-daemon
31
+ opencli doctor
32
+ ```
33
+
34
+ ### Desktop adapter connection issues
35
+
36
+ For Electron/CDP-based adapters (Cursor, Codex, etc.):
37
+
38
+ 1. Make sure the app is launched with `--remote-debugging-port=XXXX`
39
+ 2. Verify the endpoint is set: `echo $OPENCLI_CDP_ENDPOINT`
40
+ 3. Test the endpoint: `curl http://127.0.0.1:XXXX/json/version`
41
+
42
+ ### Build errors
43
+
44
+ ```bash
45
+ # Clean rebuild
46
+ rm -rf dist/
47
+ npm run build
48
+
49
+ # Type check
50
+ npx tsc --noEmit
51
+ ```
52
+
53
+ ## Getting Help
54
+
55
+ - [GitHub Issues](https://github.com/jackwener/opencli/issues) — Bug reports and feature requests
56
+ - Run `opencli doctor --live` for comprehensive diagnostics
package/docs/index.md ADDED
@@ -0,0 +1,35 @@
1
+ ---
2
+ layout: home
3
+
4
+ hero:
5
+ name: OpenCLI
6
+ text: Make any website or Electron App your CLI
7
+ tagline: Zero risk · Reuse Chrome login · AI-powered discovery · Browser + Desktop automation
8
+ actions:
9
+ - theme: brand
10
+ text: Get Started
11
+ link: /guide/getting-started
12
+ - theme: alt
13
+ text: View on GitHub
14
+ link: https://github.com/jackwener/opencli
15
+
16
+ features:
17
+ - icon: 🖥️
18
+ title: CLI All Electron
19
+ details: Turn ANY Electron application into a CLI tool — Cursor, Codex, Antigravity, ChatGPT, Notion, and more. AI can control itself natively.
20
+ - icon: 🔐
21
+ title: Account Safe
22
+ details: Reuses Chrome's logged-in state. Your credentials never leave the browser — no tokens, no exposed passwords.
23
+ - icon: 🤖
24
+ title: AI Agent Ready
25
+ details: "explore discovers APIs, synthesize generates adapters, cascade finds auth strategies. Built for AI-first workflows."
26
+ - icon: ⚡
27
+ title: Dual-Engine Architecture
28
+ details: Supports both YAML declarative data pipelines and robust browser runtime TypeScript injections for maximum flexibility.
29
+ - icon: 🔧
30
+ title: Self-Healing Setup
31
+ details: "opencli setup verifies Browser Bridge connectivity. opencli doctor diagnoses daemon, extension, and live browser."
32
+ - icon: 📦
33
+ title: Dynamic Loader
34
+ details: Simply drop .ts or .yaml adapters into the clis/ folder for auto-registration. Zero boilerplate.
35
+ ---
@@ -0,0 +1,5 @@
1
+ # 所有适配器
2
+
3
+ 运行 `opencli list` 查看完整命令列表。
4
+
5
+ 详细文档请参考 [英文版本](/adapters/)。
@@ -0,0 +1,3 @@
1
+ # Chrome DevTools Protocol
2
+
3
+ 详细文档请参考 [英文版本](/advanced/cdp)。
@@ -0,0 +1,24 @@
1
+ # 贡献指南
2
+
3
+ 详细贡献指南请参考 [英文版本](/developer/contributing)。
4
+
5
+ ## 快速开始
6
+
7
+ ```bash
8
+ git clone git@github.com:<your-username>/opencli.git
9
+ cd opencli
10
+ npm install
11
+ npm run build
12
+ npx tsc --noEmit
13
+ npx vitest run src/
14
+ ```
15
+
16
+ ## 提交规范
17
+
18
+ 使用 [Conventional Commits](https://www.conventionalcommits.org/):
19
+
20
+ ```
21
+ feat(twitter): add thread command
22
+ fix(browser): handle CDP timeout gracefully
23
+ docs: update CONTRIBUTING.md
24
+ ```
@@ -0,0 +1,25 @@
1
+ # Browser Bridge 设置
2
+
3
+ > **⚠️ 重要**: 浏览器命令复用你的 Chrome 登录会话。运行命令前必须在 Chrome 中登录目标网站。
4
+
5
+ OpenCLI 通过轻量级 **Browser Bridge** Chrome 扩展 + 微守护进程连接浏览器(零配置,自动启动)。
6
+
7
+ ## 扩展安装
8
+
9
+ ### 方法 1:下载预构建版本(推荐)
10
+
11
+ 1. 前往 GitHub [Releases 页面](https://github.com/jackwener/opencli/releases) 下载最新的 `opencli-extension.zip` 或 `opencli-extension.crx`。
12
+ 2. 打开 `chrome://extensions`,启用**开发者模式**。
13
+ 3. 拖放 `.crx` 文件或解压后的文件夹到扩展页面。
14
+
15
+ ### 方法 2:加载源码(开发者)
16
+
17
+ 1. 打开 `chrome://extensions`,启用**开发者模式**。
18
+ 2. 点击**加载已解压的扩展程序**,选择仓库中的 `extension/` 目录。
19
+
20
+ ## 验证
21
+
22
+ ```bash
23
+ opencli doctor # 检查扩展 + 守护进程连接
24
+ opencli doctor --live # 同时测试实时浏览器命令
25
+ ```
@@ -0,0 +1,40 @@
1
+ # 快速开始
2
+
3
+ > **让任何网站或 Electron 应用成为你的 CLI。**
4
+ > 零风险 · 复用 Chrome 登录态 · AI 驱动发现 · 浏览器 + 桌面自动化
5
+
6
+ OpenCLI 将**任何网站**或 **Electron 应用**变成命令行界面 — Bilibili、知乎、小红书、Twitter/X、Reddit、YouTube、Antigravity 等 — 基于浏览器会话复用和 AI 原生发现。
7
+
8
+ ## 安装
9
+
10
+ ```bash
11
+ npm install -g @jackwener/opencli
12
+ ```
13
+
14
+ ## 基本使用
15
+
16
+ ```bash
17
+ opencli list # 查看所有命令
18
+ opencli hackernews top --limit 5 # 公开 API,无需浏览器
19
+ opencli bilibili hot --limit 5 # 浏览器命令
20
+ opencli zhihu hot -f json # JSON 输出
21
+ ```
22
+
23
+ ## 输出格式
24
+
25
+ 所有命令支持 `--format` / `-f`:
26
+
27
+ ```bash
28
+ opencli bilibili hot -f table # 默认:终端表格
29
+ opencli bilibili hot -f json # JSON
30
+ opencli bilibili hot -f yaml # YAML
31
+ opencli bilibili hot -f md # Markdown
32
+ opencli bilibili hot -f csv # CSV
33
+ ```
34
+
35
+ ## 下一步
36
+
37
+ - [安装详情](/zh/guide/installation)
38
+ - [Browser Bridge 设置](/zh/guide/browser-bridge)
39
+ - [所有适配器](/zh/adapters/)
40
+ - [开发者指南](/zh/developer/contributing)
@@ -0,0 +1,37 @@
1
+ # 安装
2
+
3
+ ## 系统要求
4
+
5
+ - **Node.js**: >= 20.0.0
6
+ - **Chrome** 已运行并登录目标网站(浏览器命令需要)
7
+
8
+ ## 通过 npm 安装(推荐)
9
+
10
+ ```bash
11
+ npm install -g @jackwener/opencli
12
+ ```
13
+
14
+ ## 从源码安装
15
+
16
+ ```bash
17
+ git clone git@github.com:jackwener/opencli.git
18
+ cd opencli
19
+ npm install
20
+ npm run build
21
+ npm link
22
+ opencli list
23
+ ```
24
+
25
+ ## 更新
26
+
27
+ ```bash
28
+ npm install -g @jackwener/opencli@latest
29
+ ```
30
+
31
+ ## 验证安装
32
+
33
+ ```bash
34
+ opencli --version
35
+ opencli list
36
+ opencli doctor
37
+ ```
@@ -0,0 +1,29 @@
1
+ ---
2
+ layout: home
3
+
4
+ hero:
5
+ name: OpenCLI
6
+ text: 让任何网站或 Electron 应用成为你的 CLI
7
+ tagline: 零风险 · 复用 Chrome 登录态 · AI 驱动发现 · 浏览器 + 桌面自动化
8
+ actions:
9
+ - theme: brand
10
+ text: 快速开始
11
+ link: /zh/guide/getting-started
12
+ - theme: alt
13
+ text: 在 GitHub 查看
14
+ link: https://github.com/jackwener/opencli
15
+
16
+ features:
17
+ - icon: 🖥️
18
+ title: CLI 所有 Electron 应用
19
+ details: 将任何 Electron 应用变成 CLI 工具 — Cursor、Codex、Antigravity、ChatGPT、Notion 等。AI 可以原生控制自身。
20
+ - icon: 🔐
21
+ title: 账号安全
22
+ details: 复用 Chrome 登录态,凭证永远不会离开浏览器 — 无 token,无密码泄露。
23
+ - icon: 🤖
24
+ title: AI Agent 就绪
25
+ details: explore 发现 API,synthesize 生成适配器,cascade 查找认证策略。为 AI 优先工作流而生。
26
+ - icon: ⚡
27
+ title: 双引擎架构
28
+ details: 同时支持 YAML 声明式数据管道和强大的浏览器运行时 TypeScript 注入。
29
+ ---