agentskillsdk 0.3.2 → 0.4.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/package.json +1 -1
- package/src/lib/detect-agent.js +19 -0
package/package.json
CHANGED
package/src/lib/detect-agent.js
CHANGED
|
@@ -22,13 +22,32 @@ function makeAgent(name, folder, { globalFolder, detectFolder } = {}) {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
export const AGENTS = [
|
|
25
|
+
makeAgent('Cline', '.cline'),
|
|
25
26
|
makeAgent('Claude Code', '.claude'),
|
|
27
|
+
makeAgent('CodeBuddy', '.codebuddy'),
|
|
26
28
|
makeAgent('Codex CLI', '.agents', { globalFolder: '.codex' }),
|
|
29
|
+
makeAgent('Command Code', '.commandcode'),
|
|
30
|
+
makeAgent('Continue', '.continue'),
|
|
31
|
+
makeAgent('Crush', '.crush'),
|
|
27
32
|
makeAgent('Cursor', '.cursor'),
|
|
28
33
|
makeAgent('Droid', '.factory'),
|
|
29
34
|
makeAgent('GitHub Copilot', '.github', { detectFolder: '.github/skills' }),
|
|
35
|
+
makeAgent('Goose', '.goose'),
|
|
36
|
+
makeAgent('Kilo Code', '.kilocode'),
|
|
37
|
+
makeAgent('Kiro CLI', '.kiro'),
|
|
38
|
+
makeAgent('MCPJam', '.mcpjam'),
|
|
39
|
+
makeAgent('Mux', '.mux'),
|
|
40
|
+
makeAgent('Neovate', '.neovate'),
|
|
30
41
|
makeAgent('OpenClaw', '.openclaw'),
|
|
31
42
|
makeAgent('OpenCode', '.opencode'),
|
|
43
|
+
makeAgent('OpenHands', '.openhands'),
|
|
44
|
+
makeAgent('Pi', '.pi'),
|
|
45
|
+
makeAgent('Qoder', '.qoder'),
|
|
46
|
+
makeAgent('Qwen Code', '.qwen'),
|
|
47
|
+
makeAgent('Roo Code', '.roo'),
|
|
48
|
+
makeAgent('Trae', '.trae'),
|
|
49
|
+
makeAgent('Windsurf', '.windsurf'),
|
|
50
|
+
makeAgent('Zencoder', '.zencoder'),
|
|
32
51
|
];
|
|
33
52
|
|
|
34
53
|
export function detectAgents(cwd) {
|