c456-cli 0.6.0 → 0.7.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 +5 -19
- package/dist/index.js +1767 -15197
- package/package.json +1 -1
- package/skills/c456-cli/SKILL.md +9 -11
package/README.md
CHANGED
|
@@ -35,30 +35,16 @@ npx c456-cli --help
|
|
|
35
35
|
bunx c456-cli --help
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
### Agent 技能(`c456
|
|
38
|
+
### Agent 技能(`c456 skill install`)
|
|
39
39
|
|
|
40
|
-
已全局安装 **c456-cli** 且本机可用 **`npx`**
|
|
40
|
+
已全局安装 **c456-cli** 且本机可用 **`npx`** 后,在目标项目根执行 `c456 skill install`。交互终端下为多选(含 **取消安装**);传技能 id 或加 **`--with-wiki`** 则不经菜单。常用参数:**`-C`**、**`-g`**、**`-a`**、**`--copy`**(与 `skills add` 一致)。私人知识库三件套见 [private-knowledge-base.md §3](./docs/private-knowledge-base.md)。
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
c456
|
|
43
|
+
c456 skill install
|
|
44
|
+
c456 skill install c456-signal-product-vs c456-signal-researcher
|
|
45
|
+
c456 skill install --with-wiki
|
|
44
46
|
```
|
|
45
47
|
|
|
46
|
-
封装 **`npx skills add`** 从网络拉取技能。**`c456-cli` 始终会安装**;在交互终端下会弹出**多选菜单**(固定可选项 **karpathy-wiki**;其余来自本包随 npm 发布的 **`skills/`** 目录下的 **`c456-*`** 技能清单)。也可显式指定技能 id(免菜单),例如:
|
|
47
|
-
|
|
48
|
-
```bash
|
|
49
|
-
c456 skills install c456-signal-product-vs c456-signal-researcher
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
**`--with-wiki`** 会依次装 **karpathy-wiki**、**c456-llm-wiki** 与 **c456-cli**,适合私人知识库一条命令装齐(见 [private-knowledge-base.md §3](./docs/private-knowledge-base.md))。
|
|
53
|
-
|
|
54
|
-
常用参数(透传给 `skills add`):
|
|
55
|
-
|
|
56
|
-
- **`--with-wiki`**:私人知识库三件套(不经菜单)
|
|
57
|
-
- **`-C, --cwd <path>`**:在哪个目录下解析「项目级」安装(默认当前目录;具体路径由 skills CLI 决定)
|
|
58
|
-
- **`-g, --global`**:用户级技能目录
|
|
59
|
-
- **`-a, --agent`**:目标 Agent(如 `cursor`、`claude-code` 等),默认 `cursor`;与 `skills add` 一致
|
|
60
|
-
- **`--copy`**:复制文件而非 symlink
|
|
61
|
-
|
|
62
48
|
## 配置
|
|
63
49
|
|
|
64
50
|
### API Key
|