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
6 changes: 3 additions & 3 deletions .aiwg/reports/g-icm-01-interface-inventory.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"control_id": "G-ICM-01",
"project_id": "github.com/chronodeai/agentmemory",
"source_identity": {
"commit_sha": "e25ab1dd3884301b307a62f278cd38966fb043f9",
"commit_tree_sha": "70d799994621397b125eb394d3c9bad4be75bc5c",
"inventory_input_sha256": "7054c53f2295f18ea1edf6ad6930e8c66ab96c6d8a194bd856a8340a6576bed9"
"commit_sha": "c8263ed850d0fa96df9b3c9f7192555624214f35",
"commit_tree_sha": "48ad301996dc3ecfe0ff2d71de12b4b7786c0d95",
"inventory_input_sha256": "27a03910992f490e470f3c66394749dbc4344161835c9a09d0e4323de93f2f31"
},
"public_route_allowlist": [
"GET /agentmemory/livez"
Expand Down
18 changes: 10 additions & 8 deletions docs/upstream-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,16 @@ main sha.

```sh
REL="$HOME/Library/Application Support/Agentmemory/releases/merge-<sha12>"
mkdir -p "$REL/lib/node_modules/@agentmemory/agentmemory" "$REL/bin"
cd "$REL/lib/node_modules/@agentmemory/agentmemory"
# Anchor package.json pitfall: `npm install ./x.tgz` walks UP looking for
# the nearest package.json and can unpack into a parent directory. An
# empty dir has none, so seed one first (or install while already inside
# the package dir like prior releases did).
echo '{"name":"anchor","private":true,"version":"0.0.0"}' > package.json
npm install "$TGZ" --omit=dev
mkdir -p "$REL/lib/node_modules/@agentmemory" "$REL/bin"
cd "$REL/lib/node_modules/@agentmemory"
# Unpack the tgz directly into place, THEN install prod deps INSIDE the
# package dir. Installing the tgz via `npm install` (even from a seeded
# anchor package.json) nests the package an extra node_modules level and
# leaves the CLI's imports unresolvable (ERR_MODULE_NOT_FOUND @clack/prompts).
tar -xzf "$TGZ"
mv package agentmemory
cd agentmemory
npm install --omit=dev --no-audit --no-fund
```

Result must mirror the previous release: the package contents land in
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentmemory/agentmemory",
"version": "0.9.30-chronode.6",
"version": "0.9.30-chronode.7",
"description": "Persistent memory for AI coding agents, powered by iii-engine's three primitives",
"type": "module",
"main": "dist/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentmemory/mcp",
"version": "0.9.30-chronode.6",
"version": "0.9.30-chronode.7",
"description": "Standalone MCP server for agentmemory — thin shim that re-exposes @agentmemory/agentmemory's MCP entrypoint",
"type": "module",
"bin": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"homepage": "https://github.com/rohitg00/agentmemory#readme",
"bugs": "https://github.com/rohitg00/agentmemory/issues",
"dependencies": {
"@agentmemory/agentmemory": "0.9.30-chronode.6"
"@agentmemory/agentmemory": "0.9.30-chronode.7"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion plugin/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentmemory",
"version": "0.9.30-chronode.6",
"version": "0.9.30-chronode.7",
"description": "Persistent memory for AI coding agents -- captures tool usage, compresses via LLM, injects context into future sessions. 12 hooks, 60 MCP tools, 17 skills, real-time viewer.",
"author": {
"name": "Rohit Ghumare",
Expand Down
2 changes: 1 addition & 1 deletion plugin/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentmemory",
"version": "0.9.30-chronode.6",
"version": "0.9.30-chronode.7",
"description": "Persistent memory for AI coding agents -- captures tool usage, compresses via LLM, injects context into future sessions. 11 hooks, 60 MCP tools, 17 skills, real-time viewer.",
"author": {
"name": "Rohit Ghumare",
Expand Down
2 changes: 1 addition & 1 deletion plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentmemory",
"version": "0.9.30-chronode.6",
"version": "0.9.30-chronode.7",
"description": "Persistent memory for AI coding agents -- captures tool usage, compresses via LLM, injects context into future sessions. 12 hooks, 60 MCP tools, 17 skills, real-time viewer.",
"author": {
"name": "Rohit Ghumare",
Expand Down
2 changes: 1 addition & 1 deletion plugin/scripts/standalone.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ function getAllTools() {
}
//#endregion
//#region src/version.ts
const VERSION = "0.9.30-chronode.6";
const VERSION = "0.9.30-chronode.7";
process.env["AGENTMEMORY_BUILD_ID"];
process.env["AGENTMEMORY_VIEWER_BUILD_ID"];
//#endregion
Expand Down
1 change: 1 addition & 0 deletions src/functions/governance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ export function registerGovernanceFunction(sdk: ISdk, kv: StateKV): void {
dateFrom?: string;
dateTo?: string;
limit?: number;
project?: string;
}) => queryAudit(kv, data),
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = "0.9.30-chronode.6";
export const VERSION = "0.9.30-chronode.7";
export const EXPORT_FORMAT_VERSION = "0.9.28" as const;
export const API_CONTRACT_VERSION = 1;
export const BACKEND_BUILD_ID =
Expand Down
Loading