@skillkit/core 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 +47 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# @skillkit/core
|
|
2
|
+
|
|
3
|
+
Core functionality for SkillKit - skill discovery, parsing, translation, and context management.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @skillkit/core
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **Skill Discovery**: Find and parse SKILL.md files
|
|
14
|
+
- **Skill Translation**: Convert between agent formats (Claude Code, Cursor, Windsurf, etc.)
|
|
15
|
+
- **Project Context Detection**: Analyze project stack and dependencies
|
|
16
|
+
- **Recommendation Engine**: Smart skill suggestions based on project profile
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import {
|
|
22
|
+
loadConfig,
|
|
23
|
+
getSearchDirs,
|
|
24
|
+
translateSkill,
|
|
25
|
+
ProjectDetector,
|
|
26
|
+
RecommendationEngine
|
|
27
|
+
} from '@skillkit/core';
|
|
28
|
+
|
|
29
|
+
// Load skillkit config
|
|
30
|
+
const config = loadConfig();
|
|
31
|
+
|
|
32
|
+
// Detect project context
|
|
33
|
+
const detector = new ProjectDetector();
|
|
34
|
+
const profile = await detector.analyze('./my-project');
|
|
35
|
+
|
|
36
|
+
// Get skill recommendations
|
|
37
|
+
const engine = new RecommendationEngine();
|
|
38
|
+
const recommendations = await engine.recommend(profile);
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Documentation
|
|
42
|
+
|
|
43
|
+
Full documentation: https://github.com/rohitg00/skillkit
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
Apache-2.0
|