b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
"""``hermes memory`` subcommand parser.
|
|
|
|
Extracted from ``hermes_cli/main.py:main()`` (god-file Phase 2 follow-up).
|
|
Handler injected to avoid importing ``main``.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Callable
|
|
|
|
|
|
def build_memory_parser(subparsers, *, cmd_memory: Callable) -> None:
|
|
"""Attach the ``memory`` subcommand to ``subparsers``."""
|
|
memory_parser = subparsers.add_parser(
|
|
"memory",
|
|
help="Configure external memory provider",
|
|
description=(
|
|
"Set up and manage external memory provider plugins.\n\n"
|
|
"Available providers: honcho, openviking, mem0, hindsight,\n"
|
|
"holographic, retaindb, byterover.\n\n"
|
|
"Only one external provider can be active at a time.\n"
|
|
"Built-in memory (MEMORY.md/USER.md) is always active."
|
|
),
|
|
)
|
|
memory_sub = memory_parser.add_subparsers(dest="memory_command")
|
|
_setup_parser = memory_sub.add_parser(
|
|
"setup", help="Interactive provider selection and configuration"
|
|
)
|
|
_setup_parser.add_argument(
|
|
"provider",
|
|
nargs="?",
|
|
default=None,
|
|
help="Provider to configure directly (e.g. honcho), skipping the picker",
|
|
)
|
|
memory_sub.add_parser("status", help="Show current memory provider config")
|
|
memory_sub.add_parser("off", help="Disable external provider (built-in only)")
|
|
_reset_parser = memory_sub.add_parser(
|
|
"reset",
|
|
help="Erase all built-in memory (MEMORY.md and USER.md)",
|
|
)
|
|
_reset_parser.add_argument(
|
|
"--yes",
|
|
"-y",
|
|
action="store_true",
|
|
help="Skip confirmation prompt",
|
|
)
|
|
_reset_parser.add_argument(
|
|
"--target",
|
|
choices=["all", "memory", "user"],
|
|
default="all",
|
|
help="Which store to reset: 'all' (default), 'memory', or 'user'",
|
|
)
|
|
memory_parser.set_defaults(func=cmd_memory)
|