$npx -y skills add hyperb1iss/sibyl --skill cliInstall 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.
| 1 | # skill |
| 2 | |
| 3 | Install the loader skill and print bundled markdown packs. `skill` manages the Sibyl skill stub that |
| 4 | Claude Code, Codex, and other assistants load to learn the memory loop, and it prints |
| 5 | version-matched markdown packs straight from the installed CLI bundle. |
| 6 | |
| 7 | Called with no subcommand, `skill` prints the canonical loader markdown to stdout. Pass `--install` |
| 8 | to write it into your assistant skill roots instead. |
| 9 | |
| 10 | ## Synopsis |
| 11 | |
| 12 | ```bash |
| 13 | sibyl skill [options] |
| 14 | sibyl skill <command> [options] |
| 15 | ``` |
| 16 | |
| 17 | ## Options |
| 18 | |
| 19 | | Option | Short | Default | Description | |
| 20 | | ----------- | ----- | ------- | ------------------------------------------------------- | |
| 21 | | `--install` | | false | Install the loader skill into assistant skill roots | |
| 22 | | `--force` | | false | Replace existing symlink or non-directory skill targets | |
| 23 | | `--quiet` | `-q` | false | Suppress install status output | |
| 24 | |
| 25 | ## Commands |
| 26 | |
| 27 | | Command | Description | |
| 28 | | --------------------------------------- | ---------------------------------------------------- | |
| 29 | | [`sibyl skill install`](#skill-install) | Install the stable Sibyl skill stub into skill roots | |
| 30 | | [`sibyl skill list`](#skill-list) | List skill packs available from this CLI version | |
| 31 | | [`sibyl skill get`](#skill-get) | Print a version-matched markdown skill pack | |
| 32 | |
| 33 | Skill roots are `~/.claude/skills`, `~/.codex/skills`, and `~/.agents/skills`. |
| 34 | |
| 35 | --- |
| 36 | |
| 37 | ## skill install |
| 38 | |
| 39 | Install the stable Sibyl skill stub into assistant skill roots. |
| 40 | |
| 41 | ```bash |
| 42 | sibyl skill install [options] |
| 43 | ``` |
| 44 | |
| 45 | | Option | Short | Default | Description | |
| 46 | | --------- | ----- | ------- | ------------------------------------------------------- | |
| 47 | | `--force` | | false | Replace existing symlink or non-directory skill targets | |
| 48 | | `--quiet` | `-q` | false | Suppress install status output | |
| 49 | |
| 50 | ### Example |
| 51 | |
| 52 | ```bash |
| 53 | sibyl skill install --force |
| 54 | ``` |
| 55 | |
| 56 | --- |
| 57 | |
| 58 | ## skill list |
| 59 | |
| 60 | List the skill packs bundled with this installed CLI version. |
| 61 | |
| 62 | ```bash |
| 63 | sibyl skill list |
| 64 | ``` |
| 65 | |
| 66 | Packs include `core`, `quick`, `workflows`, `examples`, and `migration`. |
| 67 | |
| 68 | --- |
| 69 | |
| 70 | ## skill get |
| 71 | |
| 72 | Print a version-matched markdown skill pack from the CLI bundle. Defaults to the `core` pack. |
| 73 | |
| 74 | ```bash |
| 75 | sibyl skill get [name] |
| 76 | ``` |
| 77 | |
| 78 | | Argument | Required | Default | Description | |
| 79 | | -------- | -------- | ------- | ---------------------------------------------------- | |
| 80 | | `name` | No | `core` | Skill pack to print (`sibyl skill list` for choices) | |
| 81 | |
| 82 | ### Examples |
| 83 | |
| 84 | ```bash |
| 85 | # Print the core workflow pack |
| 86 | sibyl skill get |
| 87 | |
| 88 | # Print the minimal subagent pack |
| 89 | sibyl skill get quick |
| 90 | ``` |
| 91 | |
| 92 | ## Notes |
| 93 | |
| 94 | - The stub is intentionally stable: it points assistants at the version-matched packs rather than |
| 95 | embedding the full contract, so a CLI upgrade refreshes guidance without re-installing. |
| 96 | - `--force` replaces existing symlinks or non-directory targets; without it, those roots are |
| 97 | skipped. |
| 98 | - [`sibyl doctor`](./doctor.md) checks that the installed stub matches the canonical markdown and |
| 99 | flags stale copies. |
| 100 | |
| 101 | ## Related Commands |
| 102 | |
| 103 | - [`sibyl doctor`](./doctor.md) - Verify the skill stub is installed and current |
| 104 | - [`sibyl update`](./update.md) - Refresh skills as part of a self-update |
| 105 | - [`sibyl local`](./local.md) - Install skills and hooks together with `local setup` |