Skip to content

Install

Terminal window
pipx install sentience-governor
sentience --help

That’s the install. Two commands. The package registers four entry points on your $PATH: sentience, sentience-cli, sentience-claude-code-hook, and sentience-sync. The sentience-sync entry point is a sunset stub for the removed cloud telemetry CLI.

  • Python 3.10 or newer
  • pipx
  • macOS, Linux, or Windows
Terminal window
pipx list

Should show package sentience-governor X.Y.Z.

Terminal window
pipx upgrade sentience-governor
Terminal window
pipx uninstall sentience-governor
Terminal window
brew install pipx # macOS
# or:
python3 -m pip install --user pipx # Linux / WSL
pipx ensurepath

Restart your shell after pipx ensurepath.

If you’re importing sentience_governor as a Python module in your own code (MCP wrapper, LangChain callback, custom agent runtime), install into your project’s virtualenv:

Terminal window
python3 -m venv .venv
source .venv/bin/activate
pip install sentience-governor

In this mode, the CLIs are only on $PATH while the venv is active. Use this path only for library integration. For CLI-only usage, pipx is the right tool.

To use the opt-in MCP server (governance tools Claude can call inside a session, new in 0.3.0), install the extra:

Terminal window
pip install "sentience-governor[mcp]"

Then register it per project with sentience init claude-code --mcp. See Commands.

You want to…Go to
See what Claude Code is actually doingQuickstart — Claude Code hook
Wrap your own MCP or LangChain agentQuickstart — Advanced

None of these require an account.

Terminal window
rm -rf ~/.sentience/

Deletes per-session traces and any configuration. Recreated on next run.


Stuck? → Troubleshooting

© 2026 Crescere Labs, Inc. All rights reserved.