@skillkit/agents 1.3.0 → 1.3.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 +53 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# @skillkit/agents
|
|
2
|
+
|
|
3
|
+
Agent adapters for SkillKit - supports 17+ AI coding agents.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @skillkit/agents
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Supported Agents
|
|
12
|
+
|
|
13
|
+
| Agent | Config Format | Skills Directory |
|
|
14
|
+
|-------|--------------|------------------|
|
|
15
|
+
| Claude Code | SKILL.md | `.claude/skills/` |
|
|
16
|
+
| Cursor | .cursorrules, .mdc | `.cursor/skills/` |
|
|
17
|
+
| Codex | SKILL.md | `.codex/skills/` |
|
|
18
|
+
| Gemini CLI | SKILL.md | `.gemini/skills/` |
|
|
19
|
+
| Windsurf | .windsurfrules | `.windsurf/skills/` |
|
|
20
|
+
| GitHub Copilot | Markdown | `.github/copilot-instructions.md` |
|
|
21
|
+
| OpenCode | SKILL.md | `.opencode/skills/` |
|
|
22
|
+
| Antigravity | SKILL.md | `.antigravity/skills/` |
|
|
23
|
+
| Amp | SKILL.md | `.amp/skills/` |
|
|
24
|
+
| Goose | SKILL.md | `.goose/skills/` |
|
|
25
|
+
| Kilo | SKILL.md | `.kilocode/skills/` |
|
|
26
|
+
| Roo | SKILL.md | `.roo/skills/` |
|
|
27
|
+
| Trae | SKILL.md | `.trae/skills/` |
|
|
28
|
+
| And more... | | |
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { getAdapter, detectAgent, listAdapters } from '@skillkit/agents';
|
|
34
|
+
|
|
35
|
+
// Get adapter for specific agent
|
|
36
|
+
const adapter = getAdapter('claude-code');
|
|
37
|
+
console.log(adapter.skillsDir); // .claude/skills/
|
|
38
|
+
|
|
39
|
+
// Detect installed agents
|
|
40
|
+
const detected = detectAgent();
|
|
41
|
+
console.log(detected); // ['claude-code', 'cursor']
|
|
42
|
+
|
|
43
|
+
// List all available adapters
|
|
44
|
+
const adapters = listAdapters();
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Documentation
|
|
48
|
+
|
|
49
|
+
Full documentation: https://github.com/rohitg00/skillkit
|
|
50
|
+
|
|
51
|
+
## License
|
|
52
|
+
|
|
53
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillkit/agents",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Agent adapters for SkillKit - supports 17+ AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@skillkit/core": "1.3.
|
|
18
|
+
"@skillkit/core": "1.3.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^22.10.5",
|