rush-ai 0.17.0 → 0.18.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/README.md +16 -3
- package/dist/index.js +5328 -4116
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ rush-ai task status <id> --json
|
|
|
124
124
|
- **多环境 profile**:在不同 Rush 环境之间切换
|
|
125
125
|
- **shell 补全**:bash / zsh / fish
|
|
126
126
|
- **CI 友好**:`--json` 输出、`--ci` 模式、出错返回非 0 退出码
|
|
127
|
-
- **插件分发**:`marketplace` + `plugin install` 一条命令把 Rush 生态的 skill / command / rule / MCP 装到 Claude Code、Codex、Cursor 三家 IDE
|
|
127
|
+
- **插件分发**:`marketplace` + `plugin install` 一条命令把 Rush 生态的 skill / command / rule / MCP 装到 Claude Code、Codex、Cursor 三家 IDE;marketplace 注册后 Codex 桌面端 Plugins 页直接浏览整个目录(含未装插件)
|
|
128
128
|
|
|
129
129
|
## 命令一览
|
|
130
130
|
|
|
@@ -198,8 +198,9 @@ registry,仍然可以直接使用独立的 `reskill` CLI。
|
|
|
198
198
|
|
|
199
199
|
| 命令 | 说明 |
|
|
200
200
|
|------|------|
|
|
201
|
-
| `marketplace add <source>` | 注册 marketplace(`github:owner/repo`、`directory:/abs/path`、`rush://<host
|
|
202
|
-
| `marketplace
|
|
201
|
+
| `marketplace add <source>` | 注册 marketplace(`github:owner/repo`、`directory:/abs/path`、`rush://<host>`),同时把 catalog 镜像到 Codex 桌面端 |
|
|
202
|
+
| `marketplace sync [<n>]` | 增量刷新 marketplace 镜像;`--all` 全部刷;`--target codex` 指定目标 |
|
|
203
|
+
| `marketplace list` / `remove` / `update` | 管理本地 marketplace 缓存;`remove` 同步清掉 Codex 端注册和镜像 |
|
|
203
204
|
| `plugin install <ref>` | 一条命令同步装到 Claude Code + Codex + Cursor;`--target` 单独装;`--dry-run` / `--force` / `--secret KEY=VALUE` |
|
|
204
205
|
| `plugin list` / `uninstall` / `update` | 对称管理 |
|
|
205
206
|
|
|
@@ -217,6 +218,18 @@ registry,仍然可以直接使用独立的 `reskill` CLI。
|
|
|
217
218
|
- 支持 git-subdir 模式(一个 repo 内多个 plugin)
|
|
218
219
|
- `--force` 重新 clone 最新版本
|
|
219
220
|
|
|
221
|
+
#### Codex 桌面端浏览体验
|
|
222
|
+
|
|
223
|
+
`marketplace add` / `marketplace sync` 完成后,Codex 桌面端 Plugins 页可以
|
|
224
|
+
直接浏览整个 marketplace 目录(含未装的插件)—— 不需要先知道 plugin 名字
|
|
225
|
+
再装。展示形式:
|
|
226
|
+
|
|
227
|
+
- **未装插件**:列表/详情卡片可见,描述里附完整安装命令;点 "添加" 会弹
|
|
228
|
+
toast 失败(避免空壳被错误启用),引导用户走终端安装
|
|
229
|
+
- **已装插件**(通过 `rush-ai plugin install`):UI 显示 "已安装",MCP
|
|
230
|
+
工具可在对话中直接调用
|
|
231
|
+
- **卸载后**:插件回到未装状态,依然在列表里作为重装入口
|
|
232
|
+
|
|
220
233
|
### 认证 / 配置 / 其他
|
|
221
234
|
|
|
222
235
|
| 命令 | 说明 |
|