skill-forger 0.1.1 → 0.1.2
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 +22 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,7 +32,11 @@ npx skill-forger add anthropics/skills:skill-creator
|
|
|
32
32
|
<img src="./assets/add.svg" alt="Install preview">
|
|
33
33
|
</p>
|
|
34
34
|
|
|
35
|
-
This creates a `skills.json` file:
|
|
35
|
+
This creates a `skills.json` file that you commit to your repo — so your whole team shares the same skills:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
git add skills.json
|
|
39
|
+
```
|
|
36
40
|
|
|
37
41
|
```json
|
|
38
42
|
{
|
|
@@ -123,6 +127,23 @@ npx skill-forger install --global
|
|
|
123
127
|
npx skill-forger install --agent claude-code --agent cursor
|
|
124
128
|
```
|
|
125
129
|
|
|
130
|
+
### Supported Agents
|
|
131
|
+
|
|
132
|
+
skill-forger passes the `--agent` flag to the underlying [skills CLI](https://github.com/vercel-labs/skills). Supported agents include:
|
|
133
|
+
|
|
134
|
+
- `claude-code` (default)
|
|
135
|
+
- `cursor`
|
|
136
|
+
- `codex`
|
|
137
|
+
- `github-copilot`
|
|
138
|
+
|
|
139
|
+
```sh
|
|
140
|
+
# Install for a specific agent
|
|
141
|
+
npx skill-forger install --agent cursor
|
|
142
|
+
|
|
143
|
+
# Install for multiple agents
|
|
144
|
+
npx skill-forger install --agent claude-code --agent cursor
|
|
145
|
+
```
|
|
146
|
+
|
|
126
147
|
<details>
|
|
127
148
|
|
|
128
149
|
<summary>local development</summary>
|