KS
Killer-Skills
Universal Registry

Killer-Skills Platform
The Open Standard for AI Agent Skills

A centralized registry of 1000+ capabilities for your AI agents. Discover, share, and integrate skills into Cursor, Windsurf, and Claude Code. // Note: The CLI tool is optional. You can use skills directly via npx without installing anything.

$ npx killer-skills install <skill>
View Documentation

Why Killer-Skills CLI?

Feature
Killer-Skills CLI
Manual Prompting
1-Click Install to 17+ IDEs
Auto-Invoke (Zero Context Window Wasted)
Runtime Skill Discovery (MCP)
Verified Secure Skills Registry
CLI_ENGINE — STABLE_v1.7.0
~/projects/my-agent $ killer login
LOGIN_SUCCESS :: authenticated via github flow
~/projects/my-agent $ killer sync --all
[INIT] detecting ide environments...
CURSOR .cursorrules
CLAUDE CLAUDE.md
VSCODE copilot-instructions.md
21_SKILLS_SYNCED to 4 targets
~/projects/my-agent $ killer do "generate pdf"
Intelligent Match AUTO_INVOKED: pdf.skill
>>> [PROC] EXECUTING SKILL INSTRUCTIONS...

Universal Registry

A massive library of community and official skills. From PDF processing to browser automation, find everything your agent needs.

Universal Sync

One command to rule them all. 'killer sync --all' instantly distributes skills to every installed IDE on your machine.

Deep MCP Integration

Built-in MCP Server allows your agents to self-install new skills at runtime. True autonomous evolution.

Enterprise Security

All skills run in isolated environments. GitHub Device Flow authentication ensures secure access.

CLI Commands

// TERMINAL_OPERATIONS_MANUAL

Core Commands

install

Install a skill from the registry, GitHub, or local path.

killer-skills install 
killer-skills install owner/repo
killer-skills install ./local-path

create

Create a new skill from a template.

killer-skills create my-new-skill
killer-skills create my-skill --template minimal

list

List all installed skills in the current project or global scope.

killer-skills list

search

Search for skills in the global registry.

killer-skills search "pdf processing"

update

Update installed skills to their latest versions.

killer-skills update

uninstall

Remove a skill from your project.

killer-skills uninstall 

init

Initialize a new Killer-Skills project in the current directory.

killer-skills init

Configuration

// SYSTEM_PREFERENCES_SETUP

Configuration File

Killer-Skills uses a global configuration file stored at ~/.killer-skills/config.json (or OS equivalent).

Settings

{
  "defaultIDE": "cursor",
  "githubToken": "ghp_...",
  "registryUrl": "https://registry.killer-skills.com"
}

Environment Variables

  • KILLER_SKILLS_HOME - Override the home directory for configuration and global skills.
  • GITHUB_TOKEN - Personal Access Token for higher rate limits when installing from GitHub.
  • DEBUG - Set to true for verbose logging.

Managing Configuration

You can use the config command to view and set values:

killer-skills config list
killer-skills config set defaultIDE vscode