Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.7.2] - 2026-07-01

### Fixed

- **Codex setup now fully bootstraps OMI memory and trusts omind-owned hooks.**
`omind setup --agent codex` now installs the `SessionStart` OMI priming hook,
writes a managed global `~/.codex/AGENTS.md` pointer back to OMI, and persists
Codex `[hooks.state]` trust hashes for the omind-owned guard and priming hooks.
The trust hash is computed per machine from the exact hook definition (including
the local `omind` path), with known-vector tests to catch upstream Codex hash
changes before a release ships.

## [3.7.1] - 2026-07-01

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "omind"
version = "3.7.1"
version = "3.7.2"
description = "Reproduce the OMI/Obsidian memory integration for AI agents, plus a local web app to view, edit, and add memory entries."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/omind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright 2026 Aaron K. Clark
"""omind — OMI/Obsidian memory tooling for AI agents."""

__version__ = "3.7.1"
__version__ = "3.7.2"
Loading