Update both files together:
pyproject.tomlsrc/codebase_cli/cli.py
Run from the repository root:
bash tests/smoke_test.sh
python3 -m build
python3 -m pip install --target "$(mktemp -d)" .If you changed the installer, also verify:
TMP_HOME="$(mktemp -d)"
HOME="$TMP_HOME" PYTHONUSERBASE="$TMP_HOME/.local" bash scripts/install.sh --install-skill --skip-upstream-install- Ensure
README.md,CONTRIBUTING.md, andRELEASING.mdmatch current behavior. - Update version numbers.
- Run all checks.
- Commit with a release commit, for example:
release: vX.Y.Z. - Tag the release, for example:
git tag vX.Y.Z. - Push branch and tag.
- Publish a GitHub release using the tag.
vX.Y.Z
codebase-skill is a CLI-first local wrapper around codebase-memory-mcp with optional Codex skill integration.
Highlights:
- repository-local index storage under .codebase/
- global codebase command with refresh, search, call graph, and snippet workflows
- optional ~/.codex/skills/codebase installation for Codex users, direct CLI use for other agent tools
- macOS and Ubuntu 24 friendly install path
This release targets agent-heavy repository retrieval without runtime MCP protocol overhead.