mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-07-15 12:10:19 +00:00
52261ebdaf
## Release v0.51.263 — Release IE (stage-r13) Batch 1 (fresh) — trimmed to the clean pair after the gate held two. ### Fixed | Issue/PR | Author | Fix | |----------|--------|-----| | #3621 | @luanxu-dev | `/codex-runtime` + `/codex_runtime` now run as a WebUI slash command (routed through the executor reusing the agent's `codex_runtime_switch`) instead of being sent to the model as a chat message. | ### Tests | Issue/PR | Author | Change | |----------|--------|--------| | #3595 | @rodboev | Regression coverage for the already-shipped `activity_feed_expanded_default` setting. | ### Held back from this batch (Codex regression gate) - **#3624** (passkey-challenge cap, security) — the cap **raises** `PasskeyRateLimitError` when full instead of **evicting oldest**, so an attacker (or 8 abandoned legit attempts per context) can lock out genuine registration/login until TTL — the protection becomes a lockout DoS. Held with the oldest-first-eviction fix. - **#3618** (prefer server-side STT) — forcing MediaRecorder by default breaks browser `SpeechRecognition` dictation on installs with **no** server STT configured (`_transcribeBlob` only toasts on failure, never falls back). Held with the graceful-fallback fix. ### Gate - Full pytest suite: **7714 passed, 0 failed** - ESLint: CLEAN · ruff: CLEAN - Codex (regression): SHIP-ONLY-WITH-FIXES (#3624 DoS-lockout + #3618 STT-no-fallback) → both dropped/held → **SAFE TO SHIP** (verified no passkeys.py/boot.js remnants, codex-runtime dispatch reaches the allowlist). Co-authored-by: luanxu-dev <luanxu-dev@users.noreply.github.com> Co-authored-by: rodboev <rodboev@users.noreply.github.com>
253 lines
9.0 KiB
Python
253 lines
9.0 KiB
Python
"""Expose hermes-agent's COMMAND_REGISTRY to the webui frontend.
|
|
|
|
This module is the single integration point with hermes_cli.commands.
|
|
If hermes-agent is unavailable the endpoint degrades to an empty list
|
|
so the frontend can still load with WEBUI_ONLY commands.
|
|
"""
|
|
from __future__ import annotations
|
|
import logging
|
|
import threading
|
|
from typing import Any
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Commands that are gateway_only in the agent registry -- webui never
|
|
# wants to expose them (sethome, restart, update etc.) even if a future
|
|
# agent version drops the gateway_only flag. /commands is the agent's
|
|
# own command-listing command; webui has its own /help that calls
|
|
# cmdHelp() locally, so /commands would be redundant and confusing.
|
|
_NEVER_EXPOSE: frozenset[str] = frozenset({
|
|
'sethome', 'restart', 'update', 'commands',
|
|
})
|
|
|
|
|
|
# Narrow agent-side execution allowlist for /api/commands/exec.
|
|
_AGENT_COMMAND_ALIASES = {
|
|
'reload_mcp': 'reload-mcp',
|
|
'codex_runtime': 'codex-runtime',
|
|
}
|
|
_ALLOWED_AGENT_COMMANDS = frozenset({'reload-mcp', 'codex-runtime'})
|
|
_RELOAD_MCP_LOCK = threading.Lock()
|
|
_CODEX_RUNTIME_LOCK = threading.Lock()
|
|
|
|
|
|
def _parse_agent_command(command: str) -> tuple[str, str]:
|
|
"""Return ``(canonical_name, arg_string)`` from slash-command text."""
|
|
|
|
raw = str(command or "").strip()
|
|
if not raw:
|
|
raise ValueError("command is required")
|
|
|
|
cmd_text = raw[1:] if raw.startswith("/") else raw
|
|
cmd_parts = cmd_text.split(maxsplit=1)
|
|
cmd_base = (cmd_parts[0] if cmd_parts else "").strip().lower()
|
|
if not cmd_base:
|
|
raise ValueError("command is required")
|
|
|
|
return _AGENT_COMMAND_ALIASES.get(cmd_base, cmd_base), cmd_parts[1] if len(cmd_parts) > 1 else ""
|
|
|
|
|
|
def _normalize_agent_command_name(command: str) -> str:
|
|
"""Normalize slash text to a canonical command name."""
|
|
|
|
canonical, _arg_string = _parse_agent_command(command)
|
|
return canonical
|
|
|
|
|
|
def list_commands(_registry=None) -> list[dict[str, Any]]:
|
|
"""Return COMMAND_REGISTRY entries as JSON-friendly dicts.
|
|
|
|
Returns empty list if hermes_cli is not installed (graceful
|
|
degradation -- the frontend has its own fallback minimum set).
|
|
|
|
Args:
|
|
_registry: Optional injected registry for testing. When None
|
|
(production), imports COMMAND_REGISTRY from hermes_cli.
|
|
"""
|
|
if _registry is None:
|
|
try:
|
|
from hermes_cli.commands import COMMAND_REGISTRY as _registry
|
|
except ImportError:
|
|
logger.warning("hermes_cli.commands not importable -- /api/commands returns []")
|
|
return []
|
|
|
|
out: list[dict[str, Any]] = []
|
|
for cmd in _registry:
|
|
if cmd.gateway_only:
|
|
continue
|
|
if cmd.name in _NEVER_EXPOSE:
|
|
continue
|
|
out.append({
|
|
'name': cmd.name,
|
|
'description': cmd.description,
|
|
'category': cmd.category,
|
|
'aliases': list(cmd.aliases),
|
|
'args_hint': cmd.args_hint,
|
|
'subcommands': list(cmd.subcommands),
|
|
'cli_only': bool(cmd.cli_only),
|
|
'gateway_only': bool(cmd.gateway_only),
|
|
})
|
|
|
|
# Include plugin-registered slash commands
|
|
try:
|
|
from hermes_cli.plugins import get_plugin_commands
|
|
plugin_cmds = get_plugin_commands() or {}
|
|
existing_names = {c['name'] for c in out}
|
|
for cmd_name, cmd_info in plugin_cmds.items():
|
|
if cmd_name in existing_names or cmd_name in _NEVER_EXPOSE:
|
|
continue
|
|
out.append({
|
|
'name': cmd_name,
|
|
'description': str(cmd_info.get('description', 'Plugin command')),
|
|
'category': 'Plugin',
|
|
'aliases': [],
|
|
'args_hint': str(cmd_info.get('args_hint', '')),
|
|
'subcommands': [],
|
|
'cli_only': False,
|
|
'gateway_only': False,
|
|
})
|
|
except Exception:
|
|
pass
|
|
return out
|
|
|
|
|
|
def execute_agent_command(command: str) -> str:
|
|
"""Execute a narrow allowlist of agent-side runtime commands."""
|
|
|
|
canonical, arg_string = _parse_agent_command(command)
|
|
if canonical not in _ALLOWED_AGENT_COMMANDS:
|
|
raise KeyError(canonical)
|
|
|
|
if canonical == 'reload-mcp':
|
|
return _run_reload_mcp_command()
|
|
if canonical == 'codex-runtime':
|
|
return _run_codex_runtime_command(arg_string)
|
|
|
|
raise KeyError(canonical)
|
|
|
|
|
|
def _run_codex_runtime_command(arg_string: str) -> str:
|
|
"""Execute Hermes' shared Codex runtime switch for the active profile."""
|
|
try:
|
|
from hermes_cli.codex_runtime_switch import apply, parse_args
|
|
except Exception as exc:
|
|
logger.warning("Codex runtime switch unavailable", exc_info=True)
|
|
raise RuntimeError("Codex runtime switch unavailable") from exc
|
|
|
|
new_value, errors = parse_args(arg_string)
|
|
if errors:
|
|
return "\n".join(str(error) for error in errors)
|
|
|
|
with _CODEX_RUNTIME_LOCK:
|
|
try:
|
|
from api import config as webui_config
|
|
|
|
active_config = webui_config.get_config()
|
|
|
|
def _persist_config(config_data: dict) -> None:
|
|
webui_config._save_yaml_config_file(
|
|
webui_config._get_config_path(),
|
|
config_data,
|
|
)
|
|
webui_config.reload_config()
|
|
|
|
status = apply(active_config, new_value, persist_callback=_persist_config)
|
|
except Exception as exc:
|
|
logger.warning("Failed to execute /codex-runtime", exc_info=True)
|
|
raise RuntimeError("Failed to update Codex runtime") from exc
|
|
|
|
return str(getattr(status, "message", "") or "(no output)")
|
|
|
|
|
|
def _run_reload_mcp_command() -> str:
|
|
"""Execute the MCP reconnect path and return a short user-facing summary."""
|
|
with _RELOAD_MCP_LOCK:
|
|
try:
|
|
from tools.mcp_tool import shutdown_mcp_servers, discover_mcp_tools, _servers, _lock
|
|
except Exception as exc:
|
|
logger.warning("Failed to import MCP runtime for /reload-mcp", exc_info=True)
|
|
raise RuntimeError("MCP runtime unavailable") from exc
|
|
|
|
try:
|
|
with _lock:
|
|
old_servers = set(_servers.keys())
|
|
|
|
shutdown_mcp_servers()
|
|
new_tools = discover_mcp_tools()
|
|
|
|
with _lock:
|
|
connected_servers = set(_servers.keys())
|
|
except Exception as exc:
|
|
logger.warning("Failed to reload MCP servers", exc_info=True)
|
|
raise RuntimeError("Failed to reload MCP servers") from exc
|
|
|
|
added = connected_servers - old_servers
|
|
removed = old_servers - connected_servers
|
|
reconnected = connected_servers & old_servers
|
|
|
|
lines = ["Reloaded MCP servers from configuration."]
|
|
if reconnected:
|
|
lines.append(f"Reconnected: {', '.join(sorted(reconnected))}")
|
|
if added:
|
|
lines.append(f"Added: {', '.join(sorted(added))}")
|
|
if removed:
|
|
lines.append(f"Removed: {', '.join(sorted(removed))}")
|
|
|
|
if connected_servers:
|
|
lines.append(f"{len(new_tools or [])} tool(s) available across {len(connected_servers)} server(s)")
|
|
else:
|
|
lines.append("No MCP servers connected")
|
|
|
|
if not reconnected and not added and not removed:
|
|
lines.append("Tooling state was already current")
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
def execute_plugin_command(command: str) -> str:
|
|
"""Execute a plugin-registered slash command and return printable output.
|
|
|
|
Unknown commands raise ``KeyError`` so the HTTP layer can return 404.
|
|
Plugin handler failures are returned as output text instead of surfacing as
|
|
transport errors, matching Hermes' existing slash-command UX.
|
|
"""
|
|
|
|
raw = str(command or "").strip()
|
|
if not raw:
|
|
raise ValueError("command is required")
|
|
|
|
cmd_text = raw[1:] if raw.startswith("/") else raw
|
|
cmd_parts = cmd_text.split(maxsplit=1)
|
|
cmd_base = (cmd_parts[0] if cmd_parts else "").strip().lower()
|
|
cmd_arg = cmd_parts[1] if len(cmd_parts) > 1 else ""
|
|
if not cmd_base:
|
|
raise ValueError("command is required")
|
|
|
|
try:
|
|
from hermes_cli.plugins import (
|
|
get_plugin_command_handler,
|
|
resolve_plugin_command_result,
|
|
)
|
|
except ImportError as exc:
|
|
logger.warning("Plugin command runtime unavailable", exc_info=True)
|
|
raise RuntimeError("plugin command runtime unavailable") from exc
|
|
|
|
try:
|
|
handler = get_plugin_command_handler(cmd_base)
|
|
except Exception as exc:
|
|
logger.warning("Plugin command lookup failed for %r", cmd_base, exc_info=True)
|
|
raise RuntimeError("plugin command lookup failed") from exc
|
|
|
|
if not handler:
|
|
raise KeyError(cmd_base)
|
|
|
|
try:
|
|
result = resolve_plugin_command_result(handler(cmd_arg))
|
|
return str(result or "(no output)")
|
|
except Exception as exc:
|
|
# Don't leak raw exception str (paths, env, internal state) to the
|
|
# user-facing chat. Type name is enough for the user to know what
|
|
# class of failure occurred; full traceback lives in the server log.
|
|
logger.warning("Plugin command %r execution failed", cmd_base, exc_info=True)
|
|
return f"Plugin command error: {type(exc).__name__}"
|