Get started in seconds. Choose your preferred package manager.
# Global install npm install -g nexa-skill-compiler # Verify installation nsc --version # Compile a skill for all platforms nsc build skill.md --all
# 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
# 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