skill
Install the loader skill and print bundled markdown packs. skill manages the Sibyl skill stub that Claude Code, Codex, and other assistants load to learn the memory loop, and it prints version-matched markdown packs straight from the installed CLI bundle.
Called with no subcommand, skill prints the canonical loader markdown to stdout. Pass --install to write it into your assistant skill roots instead.
Synopsis
sibyl skill [options]
sibyl skill <command> [options]Options
| Option | Short | Default | Description |
|---|---|---|---|
--install | false | Install the loader skill into assistant skill roots | |
--force | false | Replace existing symlink or non-directory skill targets | |
--quiet | -q | false | Suppress install status output |
Commands
| Command | Description |
|---|---|
sibyl skill install | Install the stable Sibyl skill stub into skill roots |
sibyl skill list | List skill packs available from this CLI version |
sibyl skill get | Print a version-matched markdown skill pack |
Skill roots are ~/.claude/skills, ~/.codex/skills, and ~/.agents/skills.
skill install
Install the stable Sibyl skill stub into assistant skill roots.
sibyl skill install [options]| Option | Short | Default | Description |
|---|---|---|---|
--force | false | Replace existing symlink or non-directory skill targets | |
--quiet | -q | false | Suppress install status output |
Example
sibyl skill install --forceskill list
List the skill packs bundled with this installed CLI version.
sibyl skill listPacks include core, quick, workflows, examples, and migration.
skill get
Print a version-matched markdown skill pack from the CLI bundle. Defaults to the core pack.
sibyl skill get [name]| Argument | Required | Default | Description |
|---|---|---|---|
name | No | core | Skill pack to print (sibyl skill list for choices) |
Examples
# Print the core workflow pack
sibyl skill get
# Print the minimal subagent pack
sibyl skill get quickNotes
- The stub is intentionally stable: it points assistants at the version-matched packs rather than embedding the full contract, so a CLI upgrade refreshes guidance without re-installing.
--forcereplaces existing symlinks or non-directory targets; without it, those roots are skipped.sibyl doctorchecks that the installed stub matches the canonical markdown and flags stale copies.
Related Commands
sibyl doctor- Verify the skill stub is installed and currentsibyl update- Refresh skills as part of a self-updatesibyl local- Install skills and hooks together withlocal setup
