Skip to main content
The SkillCreator CLI (skillcreator or sc) provides terminal access to your local skill runtime. It connects to the same SQLite database as the desktop app.

Installation

The CLI is installed automatically with the desktop app at ~/.local/bin/skillcreator. Verify the installation:
sc --version
If the command is not found, ensure ~/.local/bin is in your PATH:
export PATH="$HOME/.local/bin:$PATH"

How it works

The CLI communicates with the desktop app’s local RPC server. This means:
  • The CLI connects to the desktop app’s RPC server when available. If the desktop app is not running, the CLI falls back to a standalone local runtime.
  • Changes made via CLI are instantly reflected in the desktop app
  • The CLI has access to the same skill library, evals, and runtime data
The CLI uses a token-authenticated connection to the RPC server. The token is stored in ~/Library/Application Support/SkillCreator/skillcreator/runtime.json and managed automatically.

Quick reference

CommandDescription
sc desktop statusShow runtime status and connection info
sc listList all skills
sc show <name>Show skill details
sc search <query>Search skills by keyword
sc evaluate <name>Run evals on a skill (alias: sc eval)
sc doctorCheck skill library health
See CLI commands for the full reference.
Last modified on March 19, 2026