Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,36 @@ skillctl usage --top 10 # leaderboard

Open `~/.skillctl/catalog/catalog.html` in a browser.

## Scan other agent runtimes

Claude Code is the default source, but `skillctl` can catalog any runtime that
stores skills as `SKILL.md` folders. Add more roots to `~/.skillctl/config.toml`:

```toml
[[sources]]
status = "active"
root = "~/.claude/skills"
glob = "*/SKILL.md"

[[sources]]
status = "runtime"
root = "~/.codex/skills"
glob = "*/SKILL.md"

[[sources]]
status = "runtime"
root = "~/.agents/skills"
glob = "*/SKILL.md"

[[sources]]
status = "runtime"
root = "~/.openclaw/workspace/skills"
glob = "*/SKILL.md"
```

Use `status = "runtime"` for skills that are live in another harness but not
loaded by Claude Code.

## What it does

### `rebuild` — scan and emit
Expand Down
16 changes: 16 additions & 0 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@ glob = "*/SKILL.md"
# Do NOT add ~/.claude/commands here — those are slash-command definitions,
# not skills, and scanning them pollutes the catalog.

# Other SKILL.md runtimes can be cataloged as runtime sources.
[[sources]]
status = "runtime"
root = "~/.codex/skills"
glob = "*/SKILL.md"

[[sources]]
status = "runtime"
root = "~/.agents/skills"
glob = "*/SKILL.md"

[[sources]]
status = "runtime"
root = "~/.openclaw/workspace/skills"
glob = "*/SKILL.md"

[[sources]]
status = "archival"
root = "~/skill-library"
Expand Down
16 changes: 16 additions & 0 deletions skillctl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,22 @@ def cmd_init(cfg: Config, args: argparse.Namespace) -> int:
# Note: ~/.claude/commands/ holds slash-command definitions, not skills.
# Scanning it pollutes the catalog, so it is not a default source.

# Other SKILL.md runtimes can be cataloged as runtime sources.
# [[sources]]
# status = "runtime"
# root = "~/.codex/skills"
# glob = "*/SKILL.md"
#
# [[sources]]
# status = "runtime"
# root = "~/.agents/skills"
# glob = "*/SKILL.md"
#
# [[sources]]
# status = "runtime"
# root = "~/.openclaw/workspace/skills"
# glob = "*/SKILL.md"

# Example: a folder of skills you've collected but not enabled yet.
# [[sources]]
# status = "archival"
Expand Down