Install SkCC

Get started in seconds. Choose your preferred package manager.

📦 npm (Node.js)

# Global install
npm install -g nexa-skill-compiler

# Verify installation
nsc --version

# Compile a skill for all platforms
nsc build skill.md --all

🦀 Cargo (Rust)

# Install from crates.io
cargo install nexa-skill-cli

# Or build from source
git clone https://github.com/Nexa-Language/Skill-Compiler
cd Skill-Compiler
cargo install --path nexa-skill-cli

⚡ Quick Start

# Compile for all platforms
nsc build skill.md --all

# Target specific framework
nsc build skill.md --target claude

# Validate without emitting
nsc validate skill.md

# Generate routing manifest
nsc index ./skills/

# Initialize a new skill
nsc init my-skill

Requirements

  • Node.js ≥ 14.0 (for npm) or Rust ≥ 1.85 (for Cargo)
  • macOS, Linux, or Windows (WSL2 recommended)
  • • Optional: VS Code with the SkCC extension for syntax highlighting and real-time validation