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

Core functionality for SkillKit - skill discovery, parsing, and translation

npmnpm
Version
1.3.1
Version published
Weekly downloads
240
-23.08%
Maintainers
1
Weekly downloads
 
Created
Source

@skillkit/core

Core functionality for SkillKit - skill discovery, parsing, translation, and context management.

Installation

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

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

FAQs

Package last updated on 23 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts