@skillkit/agents 1.7.6 → 1.7.8

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 CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@skillkit/agents.svg)](https://www.npmjs.com/package/@skillkit/agents)
4
4
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5
5
 
6
- **Agent adapters for SkillKit** - configuration and detection for 17 AI coding agents.
6
+ **Agent adapters for SkillKit** - configuration and detection for 32 AI coding agents.
7
7
 
8
8
  ## Installation
9
9
 
@@ -11,7 +11,7 @@
11
11
  npm install @skillkit/agents
12
12
  ```
13
13
 
14
- ## Supported Agents (17)
14
+ ## Supported Agents (32)
15
15
 
16
16
  | Agent | Config Format | Project Skills | Global Skills |
17
17
  |-------|--------------|----------------|---------------|
@@ -20,18 +20,33 @@ npm install @skillkit/agents
20
20
  | Codex | SKILL.md | `.codex/skills/` | `~/.codex/skills/` |
21
21
  | Gemini CLI | SKILL.md | `.gemini/skills/` | `~/.gemini/skills/` |
22
22
  | OpenCode | SKILL.md | `.opencode/skills/` | `~/.config/opencode/skills/` |
23
- | Antigravity | SKILL.md | `.antigravity/skills/` | `~/.gemini/antigravity/skills/` |
24
- | Amp | SKILL.md | `.agents/skills/` | `~/.config/agents/skills/` |
25
- | Clawdbot | SKILL.md | `skills/` | `~/.clawdbot/skills/` |
26
- | Droid (Factory) | SKILL.md | `.factory/skills/` | `~/.factory/skills/` |
27
- | GitHub Copilot | Markdown | `.github/skills/` | `~/.copilot/skills/` |
28
- | Goose | SKILL.md | `.goose/skills/` | `~/.config/goose/skills/` |
23
+ | Antigravity | SKILL.md | `.antigravity/skills/` | - |
24
+ | Amp | SKILL.md | `.amp/skills/` | - |
25
+ | Clawdbot | SKILL.md | `.clawdbot/skills/` | - |
26
+ | Cline | SKILL.md | `.cline/skills/` | - |
27
+ | CodeBuddy | SKILL.md | `.codebuddy/skills/` | - |
28
+ | CommandCode | SKILL.md | `.commandcode/skills/` | - |
29
+ | Continue | SKILL.md | `.continue/skills/` | `~/.continue/skills/` |
30
+ | Crush | SKILL.md | `.crush/skills/` | - |
31
+ | Droid (Factory) | SKILL.md | `.factory/skills/` | - |
32
+ | Factory | SKILL.md | `.factory/skills/` | - |
33
+ | GitHub Copilot | Markdown | `.github/skills/` | - |
34
+ | Goose | SKILL.md | `.goose/skills/` | `~/.goose/skills/` |
29
35
  | Kilo Code | SKILL.md | `.kilocode/skills/` | `~/.kilocode/skills/` |
30
36
  | Kiro CLI | SKILL.md | `.kiro/skills/` | `~/.kiro/skills/` |
37
+ | MCPJam | SKILL.md | `.mcpjam/skills/` | - |
38
+ | Mux | SKILL.md | `.mux/skills/` | - |
39
+ | Neovate | SKILL.md | `.neovate/skills/` | - |
40
+ | OpenHands | SKILL.md | `.openhands/skills/` | - |
41
+ | Pi | SKILL.md | `.pi/skills/` | - |
42
+ | Qoder | SKILL.md | `.qoder/skills/` | - |
43
+ | Qwen | SKILL.md | `.qwen/skills/` | - |
31
44
  | Roo Code | SKILL.md | `.roo/skills/` | `~/.roo/skills/` |
32
- | Trae | SKILL.md | `.trae/skills/` | `~/.trae/skills/` |
45
+ | Trae | SKILL.md | `.trae/skills/` | - |
46
+ | Vercel | SKILL.md | `.vercel/skills/` | - |
33
47
  | Windsurf | Markdown | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
34
- | Universal | SKILL.md | `skills/` | `~/.agent/skills/` |
48
+ | Zencoder | SKILL.md | `.zencoder/skills/` | - |
49
+ | Universal | SKILL.md | `skills/` | - |
35
50
 
36
51
  ## Usage
37
52
 
@@ -155,14 +170,29 @@ type AgentType =
155
170
  | 'antigravity'
156
171
  | 'amp'
157
172
  | 'clawdbot'
173
+ | 'cline'
174
+ | 'codebuddy'
175
+ | 'commandcode'
176
+ | 'continue'
177
+ | 'crush'
158
178
  | 'droid'
179
+ | 'factory'
159
180
  | 'github-copilot'
160
181
  | 'goose'
161
182
  | 'kilo'
162
183
  | 'kiro-cli'
184
+ | 'mcpjam'
185
+ | 'mux'
186
+ | 'neovate'
187
+ | 'openhands'
188
+ | 'pi'
189
+ | 'qoder'
190
+ | 'qwen'
163
191
  | 'roo'
164
192
  | 'trae'
193
+ | 'vercel'
165
194
  | 'windsurf'
195
+ | 'zencoder'
166
196
  | 'universal';
167
197
  ```
168
198
 
package/dist/index.d.ts CHANGED
@@ -112,6 +112,17 @@ declare class DroidAdapter implements AgentAdapter {
112
112
  isDetected(): Promise<boolean>;
113
113
  }
114
114
 
115
+ declare class FactoryAdapter implements AgentAdapter {
116
+ readonly type: AgentType;
117
+ readonly name = "Factory";
118
+ readonly skillsDir: string;
119
+ readonly configFile: string;
120
+ generateConfig(skills: Skill[]): string;
121
+ parseConfig(content: string): string[];
122
+ getInvokeCommand(skillName: string): string;
123
+ isDetected(): Promise<boolean>;
124
+ }
125
+
115
126
  declare class GitHubCopilotAdapter implements AgentAdapter {
116
127
  readonly type: AgentType;
117
128
  readonly name = "GitHub Copilot";
@@ -802,4 +813,4 @@ declare function getAdapter(type: AgentType): AgentAdapter;
802
813
  declare function getAllAdapters(): AgentAdapter[];
803
814
  declare function detectAgent(): Promise<AgentType>;
804
815
 
805
- export { ALL_MODES, type AgentAdapter, type AgentCapabilities, type AgentDefinition, type AgentFeatures, type AgentMode, AmpAdapter, AntigravityAdapter, type BootstrapFile, type BootstrapFileType, BootstrapManager, COMMON_PATTERNS, ClaudeCodeAdapter, ClawdbotAdapter, CodexAdapter, type ContextDefinition, CursorAdapter, DroidAdapter, type FeatureGenerationOptions, type FeatureValidationResult, GeminiCliAdapter, GitHubCopilotAdapter, type GlobConfig, GlobMatcher, GooseAdapter, type IdentityDefinition, KiloAdapter, KiroCliAdapter, type ModeChangeListener, type ModeConfig, ModeManager, OpenCodeAdapter, type PermissionConfig, type PermissionLevel, PermissionManager, type PermissionPattern, RooAdapter, type SkillPackageConfig, type SoulDefinition, type ToolDefinition, type ToolWhitelistConfig, TraeAdapter, UniversalAdapter, WindsurfAdapter, createBootstrapManager, createBootstrapSet, createDefaultModeManager, createGlobMatcher, createModeManager, createPermissionManager, createSkillXml, detectAgent, escapeXml, fromCommonPatterns, getAdapter, getAllAdapters, getDefaultModeConfig, isAllowed, isDenied, matchPattern, needsConfirmation, parseGlobsFromMDC };
816
+ export { ALL_MODES, type AgentAdapter, type AgentCapabilities, type AgentDefinition, type AgentFeatures, type AgentMode, AmpAdapter, AntigravityAdapter, type BootstrapFile, type BootstrapFileType, BootstrapManager, COMMON_PATTERNS, ClaudeCodeAdapter, ClawdbotAdapter, CodexAdapter, type ContextDefinition, CursorAdapter, DroidAdapter, FactoryAdapter, type FeatureGenerationOptions, type FeatureValidationResult, GeminiCliAdapter, GitHubCopilotAdapter, type GlobConfig, GlobMatcher, GooseAdapter, type IdentityDefinition, KiloAdapter, KiroCliAdapter, type ModeChangeListener, type ModeConfig, ModeManager, OpenCodeAdapter, type PermissionConfig, type PermissionLevel, PermissionManager, type PermissionPattern, RooAdapter, type SkillPackageConfig, type SoulDefinition, type ToolDefinition, type ToolWhitelistConfig, TraeAdapter, UniversalAdapter, WindsurfAdapter, createBootstrapManager, createBootstrapSet, createDefaultModeManager, createGlobMatcher, createModeManager, createPermissionManager, createSkillXml, detectAgent, escapeXml, fromCommonPatterns, getAdapter, getAllAdapters, getDefaultModeConfig, isAllowed, isDenied, matchPattern, needsConfirmation, parseGlobsFromMDC };