skillfish 1.0.34 → 1.0.35
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 +3 -2
- package/dist/lib/agents.js +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,9 +124,9 @@ Skills can be pinned to a specific ref (tag, branch, or commit) using `@ref` syn
|
|
|
124
124
|
|
|
125
125
|
## Supported Agents
|
|
126
126
|
|
|
127
|
-
Works with
|
|
127
|
+
Works with 33 agents including:
|
|
128
128
|
|
|
129
|
-
**Claude Code** · **Cursor** · **Windsurf** · **Codex** · **GitHub Copilot** · **Gemini CLI** · **OpenCode** · **Goose** · **Amp** · **Roo Code** · **Kiro CLI** · **Kilo Code** · **Trae** · **Cline** · **Antigravity** · **Droid** · **Augment** · **OpenClaw** · **CodeBuddy** · **Command Code** · **Crush** · **Kode** · **Mistral Vibe** · **Mux** · **OpenClaude IDE** · **OpenHands** · **Qoder** · **Qwen Code** · **Replit** · **Trae CN** · **Neovate** · **AdaL**
|
|
129
|
+
**Claude Code** · **Cursor** · **Windsurf** · **Codex** · **GitHub Copilot** · **Gemini CLI** · **OpenCode** · **Goose** · **Amp** · **Roo Code** · **Kiro CLI** · **Kimi CLI** · **Kilo Code** · **Trae** · **Cline** · **Antigravity** · **Droid** · **Augment** · **OpenClaw** · **CodeBuddy** · **Command Code** · **Crush** · **Kode** · **Mistral Vibe** · **Mux** · **OpenClaude IDE** · **OpenHands** · **Qoder** · **Qwen Code** · **Replit** · **Trae CN** · **Neovate** · **AdaL**
|
|
130
130
|
|
|
131
131
|
<details>
|
|
132
132
|
<summary>All supported agents</summary>
|
|
@@ -144,6 +144,7 @@ Works with 32 agents including:
|
|
|
144
144
|
| Amp | `~/.agents/skills/` |
|
|
145
145
|
| Roo Code | `~/.roo/skills/` |
|
|
146
146
|
| Kiro CLI | `~/.kiro/skills/` |
|
|
147
|
+
| Kimi CLI | `~/.kimi/skills/` |
|
|
147
148
|
| Kilo Code | `~/.kilocode/skills/` |
|
|
148
149
|
| Trae | `~/.trae/skills/` |
|
|
149
150
|
| Cline | `~/.cline/skills/` |
|
package/dist/lib/agents.js
CHANGED
|
@@ -80,6 +80,12 @@ export const AGENT_CONFIGS = [
|
|
|
80
80
|
homePaths: ['.kiro'],
|
|
81
81
|
cwdPaths: ['.kiro'],
|
|
82
82
|
},
|
|
83
|
+
{
|
|
84
|
+
name: 'Kimi CLI',
|
|
85
|
+
dir: '.kimi/skills',
|
|
86
|
+
homePaths: ['.kimi/kimi.json', '.kimi/config.toml', '.kimi'],
|
|
87
|
+
cwdPaths: ['.kimi'],
|
|
88
|
+
},
|
|
83
89
|
{
|
|
84
90
|
name: 'Kilo Code',
|
|
85
91
|
dir: '.kilocode/skills',
|
package/package.json
CHANGED