From 4e24b9e1eeecc3fa3c10a292cbfb2ba07f8c0107 Mon Sep 17 00:00:00 2001 From: Lan Nguyen Si Date: Thu, 25 Jun 2026 08:37:11 +0200 Subject: [PATCH] chore(packages): mark memory-digest-cli + agent-memory-sync private (internal-only) Resolve the "stranded MEDIUM fix has no release vehicle" finding (task 9723a709) by recording the release posture: both are internal/local CLIs with no npm consumers (E404; this repo publishes only @lannguyensi/memory-router). The MEDIUM audit fix (PR #43) already ships in source, where the only (local) users run it. Mark private:true + document so accidental publish is blocked and the non-release is intentional and recorded. Refs: 9723a709 (memory-digest-cli / agent-memory-sync release-vehicle posture) Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/agent-memory-sync/README.md | 2 ++ packages/agent-memory-sync/package.json | 2 ++ packages/memory-digest-cli/README.md | 2 ++ packages/memory-digest-cli/package.json | 2 ++ 4 files changed, 8 insertions(+) diff --git a/packages/agent-memory-sync/README.md b/packages/agent-memory-sync/README.md index 1f37549..8accee9 100644 --- a/packages/agent-memory-sync/README.md +++ b/packages/agent-memory-sync/README.md @@ -2,6 +2,8 @@ A CLI tool that syncs agent memory files across multiple OpenClaw instances via a central Git repository. It supports push, pull, full sync, inline conflict handling, offline queueing, cron-compatible scheduling, and dry-run previews. +> **Internal tool: not published to npm.** This CLI is used from source within this repo and is intentionally not a published package (`private: true`); this repo publishes only `@lannguyensi/memory-router`. Build and run it from the monorepo rather than installing from npm. + ## Overview `agent-memory-sync` is a command-line tool built with **typescript** and **commander**. diff --git a/packages/agent-memory-sync/package.json b/packages/agent-memory-sync/package.json index d036d81..f667ad0 100644 --- a/packages/agent-memory-sync/package.json +++ b/packages/agent-memory-sync/package.json @@ -2,6 +2,8 @@ "name": "agent-memory-sync", "version": "0.1.0", "description": "A CLI tool that syncs agent memory files across multiple OpenClaw instances via a central Git repository. Agents can push/pull their MEMORY.md and daily logs to stay in sync.", + "private": true, + "//": "Internal/local CLI, intentionally NOT published to npm (no consumers; this repo publishes only @lannguyensi/memory-router). Posture recorded for agent-tasks 9723a709.", "bin": { "agent-memory-sync": "./dist/src/main.js" }, diff --git a/packages/memory-digest-cli/README.md b/packages/memory-digest-cli/README.md index a44e61a..8a4cc90 100644 --- a/packages/memory-digest-cli/README.md +++ b/packages/memory-digest-cli/README.md @@ -2,6 +2,8 @@ A CLI tool to generate daily memory digests from markdown files. It scans dated `YYYY-MM-DD.md` files and extracts events, decisions, and insights into a summary report. +> **Internal tool: not published to npm.** This CLI is used from source within this repo and is intentionally not a published package (`private: true`); this repo publishes only `@lannguyensi/memory-router`. Build and run it from the monorepo rather than installing from npm. + ## Overview `memory-digest-cli` scans directories containing daily memory files (`YYYY-MM-DD.md` format), extracts important events, decisions, and insights, and generates structured digest reports. It is useful for agents managing long-term memory and for developers tracking daily logs. diff --git a/packages/memory-digest-cli/package.json b/packages/memory-digest-cli/package.json index 68ef1b0..eb6feb2 100644 --- a/packages/memory-digest-cli/package.json +++ b/packages/memory-digest-cli/package.json @@ -2,6 +2,8 @@ "name": "memory-digest-cli", "version": "0.1.0", "description": "A CLI tool to generate digests from dated YYYY-MM-DD.md memory files, extracting events, decisions, and insights into a summary", + "private": true, + "//": "Internal/local CLI, intentionally NOT published to npm (no consumers; this repo publishes only @lannguyensi/memory-router). The MEDIUM audit fix (PR #43) ships in source and runs from source. Posture recorded for agent-tasks 9723a709.", "bin": { "memory-digest-cli": "./dist/main.js" },