New:Socket for Asana Is Now Available.Learn more
Get Started

sk-loadout

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sk-loadout

Terminal skills manager for AI coding assistants.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source
sk-loadout

sk-loadout: Terminal skills manager for AI Agent.

npm Node License: MIT

⚡️ A preset captures your model and skills for one work mode.

🎯 Switch presets and your Agent reconfigures instantly — no manual editing of settings files or symlinks.

✨ Features

  • Hot-swap presets — change AI model + skills in a single command
  • Multi-platform — supports Claude Code, OpenCode, and Codex
  • Symlink-based — skills are mounted without copying files

[!IMPORTANT] sk-loadout is a manager, not an installer. It organizes skills you already have — it does not download, generate, or distribute them.

📦 Installation

npm install -g sk-loadout

Or run once with npx:

npx sk-loadout claude init

🚀 Quick Start

sk claude init                         # bootstrap
sk claude save frontend --desc "UI"    # snapshot current model + skills
sk claude skill                        # toggle skills interactively
sk claude use frontend                 # switch preset
sk claude ls                           # inspect state

[!TIP] After one platform is initialized, sk auto-detects it — omit the platform name and just run sk ls, sk use frontend, or sk save backend --desc "API work".

⌨️ CLI Commands

CommandDescription
initBootstrap or rebuild the sk-loadout environment
skillOpen the interactive skill picker (toggle skills visually)
lsShow active preset, mounted skills, and all presets
saveSave current model + mounted skills as a preset
useSwitch to a preset — applies model config and syncs skills
addMount stored skills to the current preset
rmRemove skills, or delete a preset (-p)
restoreUninstall for one platform and restore managed skills

add only mounts skills that already exist in the store — it does not import files from arbitrary paths. New skills are collected from the platform skills directory by init, ls, save, use, and skill.

See CLI Reference for full options and examples.

🤖 Agent Commands

init generates slash-command helpers so AI agents can manage presets and skills directly in a conversation:

CommandEquivalent
/sk-lssk claude ls
/sk-usesk claude use
/sk-savesk claude save
/sk-addsk claude add
/sk-rmsk claude rm

These work inside Claude Code, OpenCode, and Codex.

[!NOTE] Commands are regenerated on each init. Save customizations before re-initializing.

🧩 Supported Agents

AgentPrefix
Claude Codesk claude
OpenCodesk opencode
Codexsk codex

📖 Example Walkthrough

Start with a fresh Claude Code setup. You have a few skills in ~/.claude/skills/ — some you wrote, some from a third-party repo:

# Bootstrap — adopts existing skills, creates a default "base" preset
sk claude init

# See what was collected
sk claude ls

# The model from settings.json was captured automatically.
# Save it as a named preset with the skills you want:
sk claude skill              # toggle to pick skills for frontend work
sk claude save frontend --desc "Vue + Tailwind + a11y"

# Switch to it — model config and skill symlinks update instantly
sk claude use frontend

# Add another skill from the store (must already exist there)
sk claude add git-push

# Tweak skills and update current preset
sk claude rm git-push

# Create another preset for a different workflow
sk claude use base            # start from clean state
sk claude skill               # pick backend-focused skills
sk claude save backend --desc "API + database + testing"

# Switch preset as needed
sk claude use

# Clean up a preset you no longer need
sk claude rm -p frontend

# Machine-readable output for scripts
sk claude ls --json

# Preview what uninstall would do before committing
sk claude restore --dry-run

🔧 Scripting & CI

Use direct commands with --yes to skip prompts:

sk claude use review-mode
sk claude add vue-helper.md
sk claude rm -p old-preset --yes
sk claude restore --yes
sk claude ls --json

[!NOTE] skill and use require a TTY. Use add / rm / use <name> for automation.

🏗 Architecture

CLI → Commands → Core managers → Platform adapters → Assistant config + skill directories

Preset state lives in ~/.sk-loadout. Skills are mounted via symlinks (junctions on Windows). Model config is written through platform-specific adapters.

📚 Documentation

Keywords

claude-code

FAQs

Package last updated on 15 Jun 2026

Related posts