Skip to content

v0.2.12 — zero-step auto-bootstrap

Choose a tag to compare

@wesleysimplicio wesleysimplicio released this 27 May 01:06

pip install simplicio-cli → just works.

The first time simplicio is invoked after install, if ~/.claude/ is present and the hook is missing, the skill + UserPromptSubmit hook are installed automatically. PEP 517 wheels can't run code on pip install, so the bootstrap happens on first CLI use — the closest equivalent that works on every machine.

```bash
pip install simplicio-cli
simplicio smoke # ← also installs skill + hook (idempotent)
```

  • Idempotent — never double-writes
  • Opt-out: `export SIMPLICIO_SKIP_AUTO_INIT=1`
  • Subcommands `init` / `detect` excluded (no loops)
  • Errors are caught + logged; the CLI never breaks because of auto-activation

New README sections explain the runtime flow (skill = semantic layer, hook = deterministic layer), why UserPromptSubmit is the right pre-hook (not PreToolUse), and a disable/re-enable matrix.

Available on PyPI: https://pypi.org/project/simplicio-cli/0.2.12/

See CHANGELOG.md for the full entry.