> ## Documentation Index
> Fetch the complete documentation index at: https://docs.skillcreator.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI commands

> Complete reference for all SkillCreator CLI commands.

## `sc desktop status`

Show the current runtime status, RPC endpoint, and database info.

```bash theme={"dark"}
sc desktop status
```

Output includes:

* RPC server endpoint and port
* Database path and skill count
* Active workspace roots
* MCP server registration status

## `sc list`

List all skills in the local library.

```bash theme={"dark"}
sc list
sc list --include-archived
sc list --favorites
sc list --names-only
sc list --json
```

| Flag                 | Description                |
| -------------------- | -------------------------- |
| `--include-archived` | Include archived skills    |
| `--favorites`        | Show only favorited skills |
| `--names-only`       | Output skill names only    |
| `--json`             | Output as JSON             |

## `sc show <name>`

Show detailed information about a skill.

```bash theme={"dark"}
sc show conventional-commits
```

Displays: metadata, file list, latest eval scores, and version history.

## `sc search <query>`

Search skills by name, description, or content.

```bash theme={"dark"}
sc search "react testing"
```

## `sc evaluate <name>`

Run an evaluation on a skill and display the scores. The alias `sc eval` is also accepted.

```bash theme={"dark"}
sc evaluate conventional-commits
sc eval conventional-commits
```

Returns scores for all 6 quality dimensions and any improvement suggestions.

## `sc doctor`

Check the health of your skill library.

```bash theme={"dark"}
sc doctor
```

Reports:

* Total skill count
* Skills with missing required fields
* Skills that have never been evaluated
* Orphaned files
* Database integrity

## `sc desktop roots`

Manage workspace roots (directories scanned for skills).

```bash theme={"dark"}
sc desktop roots list              # List current roots
sc desktop roots add <path>        # Add a root
sc desktop roots discover          # Auto-discover roots
sc desktop roots rescan            # Rescan all roots
```

## `sc health [name]`

Show runtime health overview or health for a specific skill.

```bash theme={"dark"}
sc health
sc health conventional-commits
```

## `sc agents`

List all supported agent runtimes and their skill install paths.

```bash theme={"dark"}
sc agents
```
