You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@skillkit/core

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@skillkit/core - npm Package Compare versions

Comparing version
1.3.0
to
1.3.1
+47
README.md
# @skillkit/core
Core functionality for SkillKit - skill discovery, parsing, translation, and context management.
## Installation
```bash
npm install @skillkit/core
```
## Features
- **Skill Discovery**: Find and parse SKILL.md files
- **Skill Translation**: Convert between agent formats (Claude Code, Cursor, Windsurf, etc.)
- **Project Context Detection**: Analyze project stack and dependencies
- **Recommendation Engine**: Smart skill suggestions based on project profile
## Usage
```typescript
import {
loadConfig,
getSearchDirs,
translateSkill,
ProjectDetector,
RecommendationEngine
} from '@skillkit/core';
// Load skillkit config
const config = loadConfig();
// Detect project context
const detector = new ProjectDetector();
const profile = await detector.analyze('./my-project');
// Get skill recommendations
const engine = new RecommendationEngine();
const recommendations = await engine.recommend(profile);
```
## Documentation
Full documentation: https://github.com/rohitg00/skillkit
## License
Apache-2.0
+1
-1
{
"name": "@skillkit/core",
"version": "1.3.0",
"version": "1.3.1",
"description": "Core functionality for SkillKit - skill discovery, parsing, and translation",

@@ -5,0 +5,0 @@ "type": "module",