Skip to content

chore(release): v0.9.22 - #659

Merged
rohitg00 merged 1 commit into
mainfrom
release/v0.9.22
May 26, 2026
Merged

chore(release): v0.9.22#659
rohitg00 merged 1 commit into
mainfrom
release/v0.9.22

Conversation

@rohitg00

@rohitg00 rohitg00 commented May 26, 2026

Copy link
Copy Markdown
Owner

v0.9.22.

What's bundled

22 fixes, 7 additions, 6 docs entries. Full notes in CHANGELOG.md.

Headline:

Version bumps

  • package.json 0.9.210.9.22
  • packages/mcp/package.json
  • plugin/.claude-plugin/plugin.json
  • plugin/.codex-plugin/plugin.json
  • src/version.ts
  • src/types.ts ExportFormat union
  • src/functions/export-import.ts supportedVersions allow-list

Test plan

  • npm test — 1171/1171 pass (108 files)
  • npm run build — 21 files, 2470 KB
  • No // #NNN: issue-number stamps left in source (stripped from new-wave files; pre-existing refs untouched)

Summary by CodeRabbit

  • Chores

    • Bumped package version to 0.9.22 across all manifests.
  • New Features

    • Added multi-agent memory isolation via AGENT_ID scoping.
    • Introduced Qwen, Antigravity, and Kiro connect adapters.
    • Added cost-aware model selection warning.
    • Enabled Codex connect hooks as opt-in feature.
  • Bug Fixes

    • Improved session auto-creation and context caching for OpenCode.
    • Enhanced viewer graph and search functionality.
    • Hardened MCP/config environment parsing.
  • Documentation

    • Updated port mapping and multi-agent README sections.

Review Change Stack

Bump version across package.json + plugin manifests + version.ts +
types.ts ExportFormat union + export-import allow-list.

Strip issue-number stamps (// #NNN:) from new-wave source + test
files. CHANGELOG.md v0.9.22 entry bundles every PR merged since
v0.9.21 across Fixed / Added / Docs / Infrastructure.

1171/1171 vitest pass.
@vercel

vercel Bot commented May 26, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
agentmemory Ready Ready Preview, Comment May 26, 2026 9:51am

Request Review

@coderabbitai

coderabbitai Bot commented May 26, 2026

Copy link
Copy Markdown
Contributor

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 937dc291-cde2-4dca-a734-c4f22f75f2d1

📥 Commits

Reviewing files that changed from the base of the PR and between 1aec56a and 8c70b16.

📒 Files selected for processing (29)
  • CHANGELOG.md
  • package.json
  • packages/mcp/package.json
  • plugin/.claude-plugin/plugin.json
  • plugin/.codex-plugin/plugin.json
  • plugin/opencode/agentmemory-capture.ts
  • src/config.ts
  • src/functions/compress-synthetic.ts
  • src/functions/compress.ts
  • src/functions/export-import.ts
  • src/functions/observe.ts
  • src/functions/remember.ts
  • src/functions/smart-search.ts
  • src/mcp/tools-registry.ts
  • src/triggers/api.ts
  • src/types.ts
  • src/version.ts
  • src/viewer/index.html
  • test/agent-id-scope.test.ts
  • test/claude-bridge-path.test.ts
  • test/cli-connect.test.ts
  • test/codex-plugin.test.ts
  • test/connect-new-agents.test.ts
  • test/export-import.test.ts
  • test/hermes-plugin.test.ts
  • test/mcp-surface-default.test.ts
  • test/memories-pagination.test.ts
  • test/opencode-auto-context.test.ts
  • test/viewer-graph-cooldown.test.ts

📝 Walkthrough

Walkthrough

Version 0.9.22 release bump: manifests and version constants updated to 0.9.22, changelog documents fixed issues (OpenAI base URL, Claude bridge path, reasoning field) and additions (AGENT_ID multi-agent isolation, three connect adapters, cost-aware model selection), export schema extended to support 0.9.22, and obsolete issue references removed from code comments and test titles throughout.

Changes

0.9.22 Release Version and Schema Compatibility

Layer / File(s) Summary
Version metadata updates
package.json, packages/mcp/package.json, plugin/.claude-plugin/plugin.json, plugin/.codex-plugin/plugin.json, src/version.ts
Version field incremented from 0.9.21 to 0.9.22 across all package manifests and the exported VERSION constant.
Export schema compatibility for 0.9.22
src/types.ts, src/functions/export-import.ts, test/export-import.test.ts
ExportData.version type union extended to include "0.9.22", mem::import supportedVersions whitelist updated, and export test assertion updated to expect version 0.9.22.
Changelog release notes
CHANGELOG.md
Release notes for 0.9.22 document bug fixes (peer-dep resolution, base URL handling, Claude memory bridge path, OpenAI reasoning field support, session auto-creation/caching, graph/search improvements, pagination/export changes), new features (AGENT_ID isolation, Qwen/Antigravity/Kiro adapters, cost-aware model selection, benchmark harness), documentation additions (port mapping, multi-agent README), and infrastructure counts.
Issue reference cleanup in core code
plugin/opencode/agentmemory-capture.ts, src/config.ts, src/functions/compress-synthetic.ts, src/functions/compress.ts, src/functions/observe.ts, src/functions/remember.ts, src/functions/smart-search.ts, src/mcp/tools-registry.ts, src/triggers/api.ts, src/viewer/index.html
Throughout implementation and trigger modules, outdated issue tracker references (#554, #553, #431, #563, #544) in comments are removed or reworded for clarity; all surrounding logic remains unchanged.
Test cleanup and version assertions
test/agent-id-scope.test.ts, test/claude-bridge-path.test.ts, test/cli-connect.test.ts, test/codex-plugin.test.ts, test/connect-new-agents.test.ts, test/hermes-plugin.test.ts, test/mcp-surface-default.test.ts, test/memories-pagination.test.ts, test/opencode-auto-context.test.ts, test/viewer-graph-cooldown.test.ts
Test suite descriptions and comments updated to remove issue references and improve clarity; adapter test suite titles remove PR-number suffixes; export version assertion updated to 0.9.22.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

  • rohitg00/agentmemory#650: Main PR updates getVisibleTools() documentation comment about default tool visibility, while related PR implements the actual logic change to default to the full 51-tool surface.
  • rohitg00/agentmemory#141: Both PRs update export/import schema compatibility by extending mem::import supported versions and ExportData.version union in src/functions/export-import.ts and src/types.ts.
  • rohitg00/agentmemory#198: Both PRs extend mem::import export-version whitelist in src/functions/export-import.ts and update ExportData.version type union to accept a new supported version.

Poem

🐰 A version bump hops by with careful care,
Schema and manifests updated everywhere,
Comments cleaned of issue trails long past,
0.9.22 is here at last!
The changelog sings of fixes and new cheer,
Another release, another milestone clear! 🎉

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/v0.9.22

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

ESLint skipped: no ESLint configuration detected in root package.json. To enable, add eslint to devDependencies.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@rohitg00
rohitg00 merged commit fd197df into main May 26, 2026
6 of 7 checks passed
@rohitg00
rohitg00 deleted the release/v0.9.22 branch May 26, 2026 09:53
healdigital pushed a commit to healdigital/agentmemory that referenced this pull request Jul 27, 2026
Bump version across package.json + plugin manifests + version.ts +
types.ts ExportFormat union + export-import allow-list.

Strip issue-number stamps (// #NNN:) from new-wave source + test
files. CHANGELOG.md v0.9.22 entry bundles every PR merged since
v0.9.21 across Fixed / Added / Docs / Infrastructure.

1171/1171 vitest pass.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant