openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
123 lines (122 loc) • 11.5 kB
JavaScript
import { C as parseStrictNonNegativeInteger, w as parseStrictPositiveInteger } from "../../number-coercion-CLj0HTDM.js";
import { r as createLazyRuntimeModule } from "../../lazy-runtime-CgCh8H_K.js";
import { t as formatDocsLink } from "../../links-ClIwBcy4.js";
import { r as theme } from "../../theme-vjDs9tao.js";
import "../../number-runtime-Cy4drVnh.js";
import { t as formatHelpExamples } from "../../help-format-CAcwboTs.js";
import "../../memory-core-host-runtime-cli-D1QBcaFk.js";
import { p as configureMemoryCoreDreamingState } from "../../dreaming-state-B0qd2W7q.js";
import { b as DEFAULT_PROMOTION_MIN_UNIQUE_QUERIES, v as DEFAULT_PROMOTION_MIN_RECALL_COUNT, y as DEFAULT_PROMOTION_MIN_SCORE } from "../../short-term-promotion-BWqNnYfM.js";
//#region extensions/memory-core/src/cli.ts
const loadMemoryCliRuntime = createLazyRuntimeModule(() => import("../../cli.runtime-B4Qv3dLz.js"));
const DECIMAL_NUMBER_RE = /^[+-]?(?:\d+(?:\.\d+)?|\.\d+)$/;
const DEFAULT_SESSION_BACKFILL_LIMIT_DAYS = 92;
async function runMemoryStatus(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryStatus(opts, hostOptions);
}
async function runMemoryIndex(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryIndex(opts, hostOptions);
}
async function runMemorySearch(queryArg, opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemorySearch(queryArg, opts, hostOptions);
}
async function runMemoryForget(opts) {
await (await loadMemoryCliRuntime()).runMemoryForget(opts);
}
async function runMemoryPromote(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryPromote(opts, hostOptions);
}
async function runMemoryPromoteExplain(selectorArg, opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryPromoteExplain(selectorArg, opts, hostOptions);
}
async function runMemoryRemHarness(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryRemHarness(opts, hostOptions);
}
async function runMemoryRemBackfill(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemoryRemBackfill(opts, hostOptions);
}
async function runMemorySessionBackfill(opts, hostOptions) {
await (await loadMemoryCliRuntime()).runMemorySessionBackfill(opts, hostOptions);
}
function invalidCliArgument(message) {
const error = new Error(message);
error.name = "InvalidArgumentError";
error.code = "commander.invalidArgument";
error.exitCode = 1;
return error;
}
function parseMemoryCliNumberOption(value, flag) {
const trimmed = value.trim();
const parsed = DECIMAL_NUMBER_RE.test(trimmed) ? Number(trimmed) : NaN;
if (!Number.isFinite(parsed)) throw invalidCliArgument(`${flag} must be a finite number.`);
return parsed;
}
function parseMemoryCliPositiveIntegerOption(value, flag) {
const parsed = parseStrictPositiveInteger(value);
if (parsed === void 0) throw invalidCliArgument(`${flag} must be a positive integer.`);
return parsed;
}
function parseMemoryCliNonNegativeIntegerOption(value, flag) {
const parsed = parseStrictNonNegativeInteger(value);
if (parsed === void 0) throw invalidCliArgument(`${flag} must be a non-negative integer.`);
return parsed;
}
function collectMemoryCliValues(value, previous) {
return [...previous, value];
}
function registerMemoryCli(program, hostOptions) {
if (hostOptions?.openKeyedStore) configureMemoryCoreDreamingState(hostOptions.openKeyedStore);
const memory = program.command("memory").description("Search, inspect, and reindex memory files").addHelpText("after", () => `\n${theme.heading("Examples:")}\n${formatHelpExamples([
["openclaw memory status", "Show index and provider status."],
["openclaw memory status --fix", "Repair stale recall locks and normalize promotion metadata."],
["openclaw memory status --deep", "Probe embedding provider readiness."],
["openclaw memory index --force", "Force a full reindex."],
["openclaw memory search \"meeting notes\"", "Quick search using positional query."],
["openclaw memory search --query \"deployment\" --max-results 20", "Limit results for focused troubleshooting."],
["openclaw memory forget --hook-source gmail --dry-run", "Preview deletion of memories derived from matching sessions."],
[`openclaw memory promote --limit 10 --min-score ${DEFAULT_PROMOTION_MIN_SCORE}`, "Review weighted short-term candidates for long-term memory."],
["openclaw memory promote --apply", "Append top-ranked short-term candidates into MEMORY.md."],
["openclaw memory promote-explain \"router vlan\"", "Explain why a specific candidate would or would not promote."],
["openclaw memory rem-harness --json", "Preview REM reflections, candidate truths, and deep promotion output."],
["openclaw memory rem-backfill --path ./memory", "Write grounded historical REM entries into DREAMS.md for UI review."],
["openclaw memory rem-backfill --path ./memory --stage-short-term", "Also seed durable grounded candidates into the live short-term promotion store."],
["openclaw memory session-backfill --agent main --from 2026-01-01", "Preview trusted candidates from retained session history."],
["openclaw memory status --json", "Output machine-readable JSON (good for scripts)."]
])}\n\n${theme.muted("Docs:")} ${formatDocsLink("/cli/memory", "docs.openclaw.ai/cli/memory")}\n`);
memory.command("status").description("Show memory search index status").option("--agent <id>", "Agent id (default: all configured agents)").option("--json", "Print JSON").option("--deep", "Probe embedding provider availability").option("--index", "Reindex if dirty (implies --deep)").option("--fix", "Repair stale recall locks and normalize promotion metadata").option("--verbose", "Verbose logging", false).action(async (opts) => {
await runMemoryStatus(opts, hostOptions);
});
memory.command("index").description("Reindex memory files").option("--agent <id>", "Agent id (default: all configured agents)").option("--force", "Force full reindex", false).option("--verbose", "Verbose logging", false).action(async (opts) => {
await runMemoryIndex(opts, hostOptions);
});
memory.command("reset").description("Clear the derived memory index and embedding cache without deleting sessions").option("--agent <id>", "Agent id (default: all configured agents)").option("--yes", "Skip confirmation", false).action(async (opts) => {
await (await loadMemoryCliRuntime()).runMemoryReset(opts);
});
memory.command("search").description("Search memory files").argument("[query]", "Search query").option("--query <text>", "Search query (alternative to positional argument)").option("--agent <id>", "Agent id (default: default agent)").option("--max-results <n>", "Max results", (value) => parseMemoryCliPositiveIntegerOption(value, "--max-results")).option("--min-score <n>", "Minimum score", (value) => parseMemoryCliNumberOption(value, "--min-score")).option("--json", "Print JSON").action(async (queryArg, opts) => {
await runMemorySearch(queryArg, opts, hostOptions);
});
memory.command("forget").description("Delete memories and derived artifacts from selected sessions").option("--agent <id>", "Agent id (default: default agent)").option("--session <id-or-key>", "Source session ID or key (repeatable)", collectMemoryCliValues, []).option("--hook-source <source>", "External-content hook source (repeatable)", collectMemoryCliValues, []).option("--participant <actor-id>", "Session participant actor ID (repeatable)", collectMemoryCliValues, []).option("--since <date>", "Only include sessions observed on or after this date").option("--dry-run", "Report everything that would be deleted without writing", false).option("--json", "Print the complete machine-readable deletion report").action(async (opts) => {
await runMemoryForget(opts);
});
memory.command("promote").description("Rank short-term recalls and optionally append top entries to MEMORY.md").option("--agent <id>", "Agent id (default: default agent)").option("--limit <n>", "Max candidates", (value) => parseMemoryCliPositiveIntegerOption(value, "--limit")).option("--min-score <n>", `Minimum weighted score (default: ${DEFAULT_PROMOTION_MIN_SCORE})`, (value) => parseMemoryCliNumberOption(value, "--min-score")).option("--min-recall-count <n>", `Minimum recall count (default: ${DEFAULT_PROMOTION_MIN_RECALL_COUNT})`, (value) => parseMemoryCliNonNegativeIntegerOption(value, "--min-recall-count")).option("--min-unique-queries <n>", `Minimum distinct query count (default: ${DEFAULT_PROMOTION_MIN_UNIQUE_QUERIES})`, (value) => parseMemoryCliNonNegativeIntegerOption(value, "--min-unique-queries")).option("--apply", "Append selected candidates to MEMORY.md", false).option("--include-promoted", "Include already promoted candidates", false).option("--json", "Print JSON").action(async (opts) => {
await runMemoryPromote(opts, hostOptions);
});
memory.command("promote-explain").description("Explain a specific promotion candidate and its score breakdown").argument("<selector>", "Candidate key, path fragment, or snippet fragment").option("--agent <id>", "Agent id (default: default agent)").option("--include-promoted", "Include already promoted candidates", false).option("--json", "Print JSON").action(async (selectorArg, opts) => {
await runMemoryPromoteExplain(selectorArg, opts, hostOptions);
});
memory.command("rem-harness").description("Preview REM reflections, candidate truths, and deep promotions without writing").option("--agent <id>", "Agent id (default: default agent)").option("--path <file-or-dir>", "Seed the harness from historical daily memory file(s)").option("--grounded", "Also render a grounded day-level REM preview").option("--include-promoted", "Include already promoted deep candidates", false).option("--json", "Print JSON").action(async (opts) => {
await runMemoryRemHarness(opts, hostOptions);
});
memory.command("rem-backfill").description("Write grounded historical REM summaries into DREAMS.md for UI review").option("--agent <id>", "Agent id (default: default agent)").option("--path <file-or-dir>", "Historical daily memory file(s) or directory").option("--rollback", "Remove previously written grounded REM backfill entries", false).option("--stage-short-term", "Also seed grounded durable candidates into the short-term promotion store", false).option("--rollback-short-term", "Remove previously seeded grounded short-term candidates", false).option("--json", "Print JSON").action(async (opts) => {
await runMemoryRemBackfill(opts, hostOptions);
});
memory.command("session-backfill").description("Distill retained session history into staged memory candidates").option("--agent <id>", "Agent id (default: default agent)").option("--from <YYYY-MM-DD>", "Oldest transcript day to include").option("--to <YYYY-MM-DD>", "Newest transcript day to include").option("--limit-days <n>", `Maximum unprocessed days (default: ${DEFAULT_SESSION_BACKFILL_LIMIT_DAYS})`, (value) => parseMemoryCliPositiveIntegerOption(value, "--limit-days"), DEFAULT_SESSION_BACKFILL_LIMIT_DAYS).option("--rem", "Write grounded per-day REM previews to DREAMS.md", false).option("--apply", "Stage candidates and write DREAMS.md diary entries", false).option("--rollback", "Remove all grounded backfill candidates and shared backfill diary entries", false).option("--archive-files <path...>", "Also inspect foreign transcript archive files conservatively").option("--json", "Print JSON").action(async (opts) => {
await runMemorySessionBackfill(opts, hostOptions);
});
memory.action(() => {
memory.outputHelp();
process.exitCode = 0;
});
}
//#endregion
export { registerMemoryCli };