Installation
Install SkillKit and set up your first project
Installation
SkillKit is distributed as an npm package. Current version: v1.8.0
Quick Start (No Install)
# Run without installing
npx skillkit@latest
# Run specific commands
npx skillkit recommend
npx skillkit install anthropics/skillsInstall Globally
npm install -g skillkitThe CLI provides two command aliases: skillkit and sk (shorthand).
Alternative Methods
# pnpm
pnpm add -g skillkit
# yarn
yarn global add skillkit
# bun
bun add -g skillkit
# npx (no install required)
npx skillkit <command>GitHub Packages
npm install -g @rohitg00/skillkit --registry=https://npm.pkg.github.comVerify Installation
skillkit --version
# or
sk --versionRequirements
- Node.js 18.0.0 or higher
- Bun 1.2.0 or higher (for TUI only)
First Run Experience
When you run SkillKit for the first time, it initiates an interactive onboarding that:
- Detects your current AI agent automatically
- Creates necessary project directories
- Gathers user preferences for future sessions
- Displays contextual guidance
Preferences are stored in ~/.skillkit/preferences.json.
Initialize a Project
skillkit initInit Command Options
| Flag | Short | Purpose |
|---|---|---|
--agent | -a | Specify target agent (auto-detected if omitted) |
--list | -l | Display all supported agents |
--quiet | -q | Suppress welcome logo and confirmations |
What Init Creates
| Agent | Skills Directory | Config File |
|---|---|---|
| Claude Code | .claude/skills/ | .claude/config.json |
| Cursor | .cursor/skills/ | .cursor/config.mdc |
| Codex | .codex/skills/ | AGENTS.md |
| GitHub Copilot | .github/skills/ | — |
| Universal | skills/ | AGENTS.md |
Visual Theme
The CLI adapts its logo based on terminal width:
- ≥70 columns - Full ASCII art with block characters
- 50-69 columns - Spaced text display
- less than 50 columns - Minimal format with symbols
Agent Icons
| Agent | Icon |
|---|---|
| Claude Code | ⟁ |
| Cursor | ◫ |
| Codex | ◎ |
| Gemini CLI | ✦ |
| OpenCode | ⬡ |
Non-Interactive Mode
For CI/CD or piped input environments:
skillkit init --quietThis skips the welcome logo, runs agent detection automatically, and produces minimal output.
Next Steps
After installation, continue with:
# Install skills from GitHub
skillkit install anthropics/skills
# Browse marketplace
skillkit marketplace
# Synchronize to agent directories
skillkit sync
# Launch interactive terminal UI
skillkit ui