You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs: rewrite documentation with clean, concise style
Rewrote all core docs pages (index, installation, quickstart, rest-api,
mcp-server, python-client) with problem/solution framing, progressive
code examples, and conversational tone. Updated OpenAPI descriptions
and api.html meta tags to match. 366 additions vs 722 deletions.
* docs(mcp): remove stale skill count, add list_categories tool name
Replace hard-coded "15,000+" with non-specific wording and explicitly
name the list_categories tool in the Browse categories section.
description: Universal CLI for managing AI agent skills across 32 coding platforms
2
+
title: SkillKit
3
+
description: Universal skill management for AI coding agents
4
4
---
5
5
6
6
# SkillKit
7
7
8
-
SkillKit is a universal command-line interface (CLI) and programmatic toolkit for managing AI agent skills across **32 AI coding platforms**.
8
+
Skills make AI coding agents smarter. But every agent uses a different format — Claude Code wants `.claude/skills/`, Cursor uses `.mdc`, Copilot expects `.github/skills/`. You end up rewriting the same skill three times, or locking into one platform.
9
9
10
-
**Current Version:** v1.12.0
10
+
SkillKit fixes this. Write a skill once, deploy it to all 32 agents.
11
11
12
-
## The Problem
13
-
14
-
Each AI coding agent uses different skill formats and directory structures:
15
-
- Claude Code uses `.claude/skills/` with SKILL.md
16
-
- Cursor uses `.cursor/skills/` with .mdc format
17
-
- GitHub Copilot uses `.github/skills/`
18
-
19
-
Without SkillKit, you either rewrite skills for each agent, lock into one platform, or abandon skills entirely.
20
-
21
-
## The Solution
22
-
23
-
SkillKit provides a **"write once, deploy everywhere"** platform. Maintain a single skill definition that automatically translates across all 32 platforms.
24
-
25
-
## Quick Install
12
+
## Get Started
26
13
27
14
```bash
28
-
# Run instantly with npx (no install required)
29
15
npx skillkit@latest
16
+
```
17
+
18
+
That's it. No global install needed. Or if you prefer:
30
19
31
-
# Or install globally for frequent use
20
+
```bash
32
21
npm install -g skillkit
33
22
skillkit init
34
23
skillkit install anthropics/skills
35
24
skillkit sync
36
25
```
37
26
38
-
## Core Features
39
-
40
-
| Feature | Description |
41
-
|---------|-------------|
42
-
|**Cross-Platform Translation**| Automatic conversion between 32 agent formats |
43
-
|**Smart Recommendations**| AI-powered skill suggestions based on your tech stack |
44
-
|**Session Memory**| Persistent learning that survives across sessions |
45
-
|**Primer**| Auto-generate agent instructions from your codebase |
46
-
|**Mesh Network**| Multi-machine agent distribution with encrypted P2P |
47
-
|**Inter-Agent Messaging**| Send messages between AI agents across your network |
48
-
|**Team Collaboration**| Git-based `.skills` manifest for sharing |
49
-
|**Workflow Orchestration**| Compose skills into multi-step automated workflows |
50
-
|**Skill Testing**| Built-in test framework with assertions |
51
-
|**CI/CD Integration**| GitHub Actions, GitLab CI, and pre-commit hooks |
52
-
|**REST API Server**| Runtime skill discovery via HTTP on port 3737 |
53
-
|**MCP Server**| Agent-native discovery for Claude Desktop, Cursor |
54
-
|**Python Client**| Async Python SDK for the REST API |
55
-
|**TypeScript API**| Full programmatic access to all features |
56
-
|**Interactive TUI**| Beautiful terminal interface with real-time updates |
57
-
58
-
## Advanced Capabilities
27
+
Four commands. Your agents now have skills for PDF processing, code review, and more.
59
28
60
-
### Session Memory System
29
+
##What Can You Do?
61
30
62
-
Your AI agents learn patterns during sessions—then forget everything. SkillKit captures these learnings and makes them permanent.
31
+
### Install skills from anywhere
63
32
64
33
```bash
65
-
skillkit memory compress# Compress learnings
66
-
skillkit memory search auth# Search knowledge
67
-
skillkit memory export auth-patterns # Export as skill
34
+
skillkit install anthropics/skills# GitHub
35
+
skillkit install gitlab:team/skills # GitLab
36
+
skillkit install ./my-local-skills # Local
68
37
```
69
38
70
-
[Learn more →](/docs/memory)
39
+
### Translate between agents
71
40
72
-
### Primer - Auto-Generate Instructions
73
-
74
-
Automatically generate CLAUDE.md, .cursorrules, and agent instructions by analyzing your codebase.
41
+
Write for Claude, deploy to Cursor:
75
42
76
43
```bash
77
-
skillkit primer # Analyze project
78
-
skillkit primer --all-agents # Generate for all 32 agents
44
+
skillkit translate my-skill --to cursor
45
+
skillkit translate --all --to windsurf # All skills at once
79
46
```
80
47
81
-
[Learn more →](/docs/primer)
82
-
83
-
### Mesh Network
48
+
### Get smart recommendations
84
49
85
-
Run agents across multiple machines with encrypted P2P communication.
50
+
SkillKit reads your `package.json`, detects your stack, and suggests relevant skills:
0 commit comments