mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-24 16:54:43 +00:00
Removes Homebrew and PyPI wheel/sdist as Hermes distribution paths while
preserving the supported source, Docker, and Nix workflows.
Changes:
- Removes the Homebrew formula, PyPI publish workflow, sdist manifest
(MANIFEST.in), and wheel/sdist release-attachment logic from scripts/release.py.
- Keeps setuptools metadata and entry points required by editable installs
and Docker/Nix builds, but adds a setup.py guard that rejects wheel/sdist
builds outside a sealed Nix derivation (HERMES_NIX_BUILD=1).
- Removes pip/Homebrew install detection, PyPI update checks, the pip
self-update path, the deprecation-banner state, the postinstall subcommand,
wheel data-directory fallbacks in agent/i18n.py and hermes_constants.py,
and the ACP Registry manifest/version-lockstep release logic.
- Adds /nix/store/ path detection so `nix run` / `nix profile install`
installs (which don't set HERMES_MANAGED) are correctly identified as
"nix" rather than falling through to "git"/"unknown".
- Retired install-method values ("pip", "homebrew") in existing
.install_method stamps (both code-scoped and home-scoped) are ignored by
the allowlist reader and fall through to "unknown" instead of resurrecting
a retired enum value.
- Updates Nix packaging to ship bare runtime data (locales, optional-mcps)
through store symlinks and wrapper env vars instead of wheel data-files.
- Removes the ACP Registry manifest/icon and their version-lockstep tests.
- Deletes or rewrites packaging, pip-update, Homebrew, and ACP Registry
tests; adds parametrized coverage for the packaging build guard covering
BOTH sdist and wheel paths (the guards live in separate cmdclass entries
— a passing sdist test proves nothing about the wheel path).
- Updates installation/platform documentation and related user-facing copy.
- Adjusts the supply-chain scan so deleted install-hook files do not trigger
a finding, while additions or modifications still require the existing
ci-reviewed label gate.
Supported installation paths (unchanged):
- git installer (install.sh)
- Docker
- Nix/NixOS
- editable development installs (uv sync, uv pip install -e ., pip install -e .)
271 lines
9 KiB
Python
271 lines
9 KiB
Python
"""CLI entry point for the hermes-agent ACP adapter.
|
|
|
|
Loads environment variables from ``~/.hermes/.env``, configures logging
|
|
to write to stderr (so stdout is reserved for ACP JSON-RPC transport),
|
|
and starts the ACP agent server.
|
|
|
|
Usage::
|
|
|
|
python -m acp_adapter.entry
|
|
# or
|
|
hermes acp
|
|
# or
|
|
hermes-acp
|
|
"""
|
|
|
|
# IMPORTANT: hermes_bootstrap must be the very first import — UTF-8 stdio
|
|
# on Windows. No-op on POSIX. See hermes_bootstrap.py for full rationale.
|
|
try:
|
|
import hermes_bootstrap # noqa: F401
|
|
except ModuleNotFoundError:
|
|
# Graceful fallback when hermes_bootstrap isn't registered in the venv
|
|
# yet — happens during partial ``hermes update`` where git-reset landed
|
|
# new code but ``uv pip install -e .`` didn't finish. Missing bootstrap
|
|
# means UTF-8 stdio setup is skipped on Windows; POSIX is unaffected.
|
|
pass
|
|
else:
|
|
# Stop a ``utils/``/``proxy/``/``ui/`` package in the launch directory from
|
|
# shadowing Hermes's own modules — ``hermes acp`` can be started from any
|
|
# cwd, including a project that has same-named packages on its path.
|
|
hermes_bootstrap.harden_import_path()
|
|
|
|
import argparse
|
|
import asyncio
|
|
import logging
|
|
import sys
|
|
from pathlib import Path
|
|
from hermes_constants import get_hermes_home
|
|
|
|
|
|
# Methods clients send as periodic liveness probes. They are not part of the
|
|
# ACP schema, so the acp router correctly returns JSON-RPC -32601 to the
|
|
# caller — but the supervisor task that dispatches the request then surfaces
|
|
# the raised RequestError via ``logging.exception("Background task failed")``,
|
|
# which dumps a traceback to stderr every probe interval. Clients like
|
|
# acp-bridge already treat the -32601 response as "agent alive", so the
|
|
# traceback is pure noise. We keep the protocol response intact and only
|
|
# silence the stderr noise for this specific benign case.
|
|
_BENIGN_PROBE_METHODS = frozenset({"ping", "health", "healthcheck"})
|
|
|
|
|
|
class _BenignProbeMethodFilter(logging.Filter):
|
|
"""Suppress acp 'Background task failed' tracebacks caused by unknown
|
|
liveness-probe methods (e.g. ``ping``) while leaving every other
|
|
background-task error — including method_not_found for any non-probe
|
|
method — visible in stderr.
|
|
"""
|
|
|
|
def filter(self, record: logging.LogRecord) -> bool:
|
|
if record.getMessage() != "Background task failed":
|
|
return True
|
|
exc_info = record.exc_info
|
|
if not exc_info:
|
|
return True
|
|
exc = exc_info[1]
|
|
# Imported lazily so this module stays importable when the optional
|
|
# ``agent-client-protocol`` dependency is not installed.
|
|
try:
|
|
from acp.exceptions import RequestError
|
|
except ImportError:
|
|
return True
|
|
if not isinstance(exc, RequestError):
|
|
return True
|
|
if getattr(exc, "code", None) != -32601:
|
|
return True
|
|
data = getattr(exc, "data", None)
|
|
method = data.get("method") if isinstance(data, dict) else None
|
|
return method not in _BENIGN_PROBE_METHODS
|
|
|
|
|
|
def _setup_logging() -> None:
|
|
"""Route all logging to stderr so stdout stays clean for ACP stdio."""
|
|
handler = logging.StreamHandler(sys.stderr)
|
|
handler.setFormatter(
|
|
logging.Formatter(
|
|
"%(asctime)s [%(levelname)s] %(name)s: %(message)s",
|
|
datefmt="%Y-%m-%d %H:%M:%S",
|
|
)
|
|
)
|
|
handler.addFilter(_BenignProbeMethodFilter())
|
|
root = logging.getLogger()
|
|
root.handlers.clear()
|
|
root.addHandler(handler)
|
|
root.setLevel(logging.INFO)
|
|
|
|
# Quiet down noisy libraries
|
|
logging.getLogger("httpx").setLevel(logging.WARNING)
|
|
logging.getLogger("httpcore").setLevel(logging.WARNING)
|
|
logging.getLogger("openai").setLevel(logging.WARNING)
|
|
|
|
|
|
def _load_env() -> None:
|
|
"""Load .env from HERMES_HOME (default ``~/.hermes``)."""
|
|
from hermes_cli.env_loader import load_hermes_dotenv
|
|
|
|
hermes_home = get_hermes_home()
|
|
loaded = load_hermes_dotenv(hermes_home=hermes_home)
|
|
if loaded:
|
|
for env_file in loaded:
|
|
logging.getLogger(__name__).info("Loaded env from %s", env_file)
|
|
else:
|
|
logging.getLogger(__name__).info(
|
|
"No .env found at %s, using system env", hermes_home / ".env"
|
|
)
|
|
|
|
|
|
def _parse_args(argv: list[str] | None = None) -> argparse.Namespace:
|
|
parser = argparse.ArgumentParser(
|
|
prog="hermes-acp",
|
|
description="Run Hermes Agent as an ACP stdio server.",
|
|
)
|
|
parser.add_argument("--version", action="store_true", help="Print Hermes version and exit")
|
|
parser.add_argument(
|
|
"--check",
|
|
action="store_true",
|
|
help="Verify ACP dependencies and adapter imports, then exit",
|
|
)
|
|
parser.add_argument(
|
|
"--setup",
|
|
action="store_true",
|
|
help="Run interactive Hermes provider/model setup for ACP terminal auth",
|
|
)
|
|
parser.add_argument(
|
|
"--setup-browser",
|
|
action="store_true",
|
|
help="Install agent-browser + Playwright Chromium into ~/.hermes/node/ "
|
|
"for browser tool support. Idempotent.",
|
|
)
|
|
parser.add_argument(
|
|
"--yes",
|
|
"-y",
|
|
action="store_true",
|
|
dest="assume_yes",
|
|
help="Accept all prompts (currently used by --setup-browser to skip the "
|
|
"~400 MB Chromium download confirmation).",
|
|
)
|
|
return parser.parse_args(argv)
|
|
|
|
|
|
def _print_version() -> None:
|
|
from hermes_cli import __version__ as hermes_version
|
|
|
|
print(hermes_version)
|
|
|
|
|
|
def _run_check() -> None:
|
|
import acp # noqa: F401
|
|
from acp_adapter.server import HermesACPAgent # noqa: F401
|
|
|
|
print("Hermes ACP check OK")
|
|
|
|
|
|
def _run_setup() -> None:
|
|
from hermes_cli.main import main as hermes_main
|
|
|
|
old_argv = sys.argv[:]
|
|
try:
|
|
sys.argv = [old_argv[0] if old_argv else "hermes", "model"]
|
|
hermes_main()
|
|
finally:
|
|
sys.argv = old_argv
|
|
|
|
# Offer browser-tools install as a follow-up. The terminal auth method
|
|
# is the one supported first-run UX for registry installs, so this is
|
|
# the natural moment to ask. Skip silently if stdin isn't a TTY (the
|
|
# answer can't be collected anyway).
|
|
if not sys.stdin.isatty():
|
|
return
|
|
try:
|
|
reply = input(
|
|
"\nInstall browser tools? Downloads agent-browser (npm) and "
|
|
"optionally Playwright Chromium (~400 MB). [y/N] "
|
|
).strip().lower()
|
|
except (EOFError, KeyboardInterrupt):
|
|
return
|
|
if reply in {"y", "yes"}:
|
|
_run_setup_browser(assume_yes=False)
|
|
|
|
|
|
def _run_setup_browser(assume_yes: bool = False) -> int:
|
|
"""Bootstrap agent-browser + Chromium.
|
|
|
|
Routes through dep_ensure -> install.{sh,ps1} --ensure, sharing code
|
|
with the runtime lazy installer.
|
|
|
|
Returns 0 on success, 1 on failure.
|
|
"""
|
|
from hermes_cli.dep_ensure import ensure_dependency
|
|
|
|
try:
|
|
node_ok = ensure_dependency("node", interactive=not assume_yes)
|
|
if not node_ok:
|
|
print("Node.js installation failed — cannot proceed with browser tools.",
|
|
file=sys.stderr)
|
|
return 1
|
|
|
|
browser_ok = ensure_dependency("browser", interactive=not assume_yes)
|
|
if not browser_ok:
|
|
print("Browser tools installation failed.", file=sys.stderr)
|
|
return 1
|
|
|
|
return 0
|
|
except OSError as exc:
|
|
print(f"Browser bootstrap failed: {exc}", file=sys.stderr)
|
|
return 1
|
|
|
|
|
|
def main(argv: list[str] | None = None) -> None:
|
|
"""Entry point: load env, configure logging, run the ACP agent."""
|
|
args = _parse_args(argv)
|
|
if args.version:
|
|
_print_version()
|
|
return
|
|
if args.check:
|
|
_run_check()
|
|
return
|
|
if args.setup:
|
|
_run_setup()
|
|
return
|
|
if args.setup_browser:
|
|
rc = _run_setup_browser(assume_yes=args.assume_yes)
|
|
if rc != 0:
|
|
sys.exit(rc)
|
|
return
|
|
|
|
_setup_logging()
|
|
_load_env()
|
|
|
|
logger = logging.getLogger(__name__)
|
|
logger.info("Starting hermes-agent ACP adapter")
|
|
|
|
# Ensure the project root is on sys.path so ``from run_agent import AIAgent`` works
|
|
project_root = str(Path(__file__).resolve().parent.parent)
|
|
if project_root not in sys.path:
|
|
sys.path.insert(0, project_root)
|
|
|
|
import acp
|
|
from .server import HermesACPAgent
|
|
|
|
# MCP tool discovery from config.yaml — run before asyncio.run() so
|
|
# it's safe to use blocking waits. (ACP also registers per-session
|
|
# MCP servers dynamically via asyncio.to_thread inside the event
|
|
# loop; that path is unaffected.) Moved from model_tools.py module
|
|
# scope to avoid freezing the gateway's loop on lazy import (#16856).
|
|
try:
|
|
from tools.mcp_tool import discover_mcp_tools
|
|
discover_mcp_tools()
|
|
except Exception:
|
|
logger.debug("MCP tool discovery failed at ACP startup", exc_info=True)
|
|
|
|
agent = HermesACPAgent()
|
|
try:
|
|
asyncio.run(acp.run_agent(agent, use_unstable_protocol=True))
|
|
except KeyboardInterrupt:
|
|
logger.info("Shutting down (KeyboardInterrupt)")
|
|
except Exception:
|
|
logger.exception("ACP agent crashed")
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|