@tikomni/skills 0.1.0 → 0.1.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 +40 -6
- package/README.zh-CN.md +40 -6
- package/bin/tikomni-skills.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,22 +88,56 @@ They matter, but they do not define the full capability boundary of this reposit
|
|
|
88
88
|
|
|
89
89
|
### 2. Install skills
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
Install directly from npm.
|
|
92
|
+
|
|
93
|
+
First, list the currently available skills:
|
|
92
94
|
|
|
93
95
|
```bash
|
|
94
96
|
npx @tikomni/skills list
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Install into Codex:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
# Install all skills
|
|
95
103
|
npx @tikomni/skills install codex all
|
|
104
|
+
|
|
105
|
+
# Install one specific skill
|
|
106
|
+
npx @tikomni/skills install codex single-work-analysis
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
Default target: `$CODEX_HOME/skills`, default `~/.codex/skills`
|
|
110
|
+
|
|
111
|
+
Install into Claude Code:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
# Install all skills
|
|
115
|
+
npx @tikomni/skills install claude-code all
|
|
116
|
+
|
|
117
|
+
# Install only the creator-analysis skill
|
|
96
118
|
npx @tikomni/skills install claude-code creator-analysis
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Default target: `~/.claude/skills`
|
|
122
|
+
|
|
123
|
+
Install into OpenClaw:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
# Install all skills
|
|
127
|
+
npx @tikomni/skills install openclaw all
|
|
128
|
+
|
|
129
|
+
# Install into a custom directory
|
|
97
130
|
npx @tikomni/skills install openclaw meta-capability --dir "/custom/skills"
|
|
98
131
|
```
|
|
99
132
|
|
|
100
|
-
Default
|
|
133
|
+
Default target: prefers `~/.openclaw/workspace/skills`, otherwise `~/.openclaw/skills`
|
|
134
|
+
|
|
135
|
+
Common flags:
|
|
101
136
|
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
- `openclaw` -> prefers `~/.openclaw/workspace/skills`, otherwise `~/.openclaw/skills`
|
|
137
|
+
- `--dir <path>`: override the target `skills` directory
|
|
138
|
+
- `--force`: overwrite an existing installed skill directory
|
|
105
139
|
|
|
106
|
-
If you
|
|
140
|
+
If you do not want to use npm, you can also copy the target skill folder into the runtime's `skills` directory manually.
|
|
107
141
|
|
|
108
142
|
### 3. Configure environment variables
|
|
109
143
|
|
package/README.zh-CN.md
CHANGED
|
@@ -88,22 +88,56 @@
|
|
|
88
88
|
|
|
89
89
|
### 2. 安装 Skills
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
使用 npm 直接安装。
|
|
92
|
+
|
|
93
|
+
先查看当前可安装的 Skills:
|
|
92
94
|
|
|
93
95
|
```bash
|
|
94
96
|
npx @tikomni/skills list
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
安装到 Codex:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
# 安装全部 Skills
|
|
95
103
|
npx @tikomni/skills install codex all
|
|
104
|
+
|
|
105
|
+
# 只安装一个 Skill
|
|
106
|
+
npx @tikomni/skills install codex single-work-analysis
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
默认目录:`$CODEX_HOME/skills`,默认值 `~/.codex/skills`
|
|
110
|
+
|
|
111
|
+
安装到 Claude Code:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
# 安装全部 Skills
|
|
115
|
+
npx @tikomni/skills install claude-code all
|
|
116
|
+
|
|
117
|
+
# 只安装创作者分析 Skill
|
|
96
118
|
npx @tikomni/skills install claude-code creator-analysis
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
默认目录:`~/.claude/skills`
|
|
122
|
+
|
|
123
|
+
安装到 OpenClaw:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
# 安装全部 Skills
|
|
127
|
+
npx @tikomni/skills install openclaw all
|
|
128
|
+
|
|
129
|
+
# 安装到自定义目录
|
|
97
130
|
npx @tikomni/skills install openclaw meta-capability --dir "/custom/skills"
|
|
98
131
|
```
|
|
99
132
|
|
|
100
|
-
|
|
133
|
+
默认目录:优先 `~/.openclaw/workspace/skills`,否则 `~/.openclaw/skills`
|
|
134
|
+
|
|
135
|
+
常用参数:
|
|
101
136
|
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
- `openclaw` -> 优先 `~/.openclaw/workspace/skills`,否则 `~/.openclaw/skills`
|
|
137
|
+
- `--dir <path>`:显式指定目标 `skills` 目录
|
|
138
|
+
- `--force`:覆盖已存在的同名 Skill 目录
|
|
105
139
|
|
|
106
|
-
|
|
140
|
+
如果你不想使用 npm,也可以手动把目标 Skill 目录复制到对应运行时的 `skills` 目录。
|
|
107
141
|
|
|
108
142
|
### 3. 配置环境变量
|
|
109
143
|
|
package/bin/tikomni-skills.js
CHANGED
|
File without changes
|
package/package.json
CHANGED