The Sep 2026 decomposition (PR #102117) makes internal import paths a non-API: names now live in the focused modules that define them. This commit is the ONLY thing keeping the old paths alive, so external plugins have time to update. It is deliberately a single, unsquashed commit: git revert <this sha> removes every shim, stub and manifest at once on the announced date. Nothing in-tree may depend on these pointers: scripts/check_compat_pointers.py (wired into lint.yml) fails CI if it does. What it adds (see COMPAT_MANIFEST.md, compat_manifest.json): - 332 facade modules get one delimited `PLUGIN-COMPAT` block appended at the end of the file - 1,172 moved names resolved lazily via a module `__getattr__` (PEP 562) — never a top-level import, so no import cycles; facades that already had `__getattr__` get a chained one - 592 third-party/stdlib names the old modules used to expose, with their original import statements - 266 public definitions that had been deleted as unused, restored byte-for-byte from the pre-decomposition tree (+40 private helpers and 16 imports pulled in only because a restored definition needs them) - 3 deleted modules recreated as re-export stubs (gateway/startup_watchdog, hermes_cli/observability/ relay_runtime, tools/environments/modal_utils) - private names (`_x`) get no pointer: they were never API (3,792 skipped) Verified: all 335 touched modules import under a fresh HERMES_HOME and every manifest name resolves; the lint reports zero in-tree uses; ruff clean; targeted suites unchanged.
77 lines
2.6 KiB
Python
77 lines
2.6 KiB
Python
#!/usr/bin/env python3
|
|
"""Reveal/focus a pane in the Hermes desktop GUI (``pane.reveal`` via ``desktop_ui``).
|
|
|
|
The renderer runs each pane's own reveal path and only acts on the active window, so
|
|
a background turn never moves the user's focus. URLs/files go through `desktop_preview`.
|
|
"""
|
|
|
|
from tools import desktop_ui
|
|
from tools.registry import registry, tool_error
|
|
|
|
PANES = ("chat", "files", "terminal", "review", "sessions")
|
|
|
|
|
|
def focus_pane_tool(pane: str) -> str:
|
|
"""Ask the desktop GUI to reveal and focus ``pane``."""
|
|
name = (pane or "").strip().lower()
|
|
if name not in PANES:
|
|
return tool_error(f"pane must be one of: {', '.join(PANES)}.")
|
|
return desktop_ui.emit_or_error(
|
|
"pane.reveal", {"pane": name}, f"Failed to focus the {name} pane: ",
|
|
"Pane focus is only available in the Hermes desktop app.", {"success": True, "pane": name})
|
|
|
|
|
|
registry.register(
|
|
name="focus_pane",
|
|
toolset="desktop_ui",
|
|
schema={
|
|
"name": "focus_pane",
|
|
"description": (
|
|
"Reveal and focus a Hermes desktop pane when the user asks to see it: "
|
|
"chat, files, terminal, review (git diff), or sessions. For URLs/"
|
|
"files use the desktop_preview tool instead."
|
|
),
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"pane": {
|
|
"type": "string",
|
|
"enum": list(PANES),
|
|
"description": "Which pane to reveal.",
|
|
},
|
|
},
|
|
"required": ["pane"],
|
|
},
|
|
},
|
|
handler=lambda args, **kw: focus_pane_tool(pane=args.get("pane", "")),
|
|
emoji="🪟",
|
|
)
|
|
|
|
|
|
# ---- BEGIN PLUGIN-COMPAT (revert-scheduled; see COMPAT_MANIFEST.md) ----
|
|
# Names external plugins imported from this module before the Sep 2026 decomposition.
|
|
# Internal code MUST NOT use these (scripts/check_compat_pointers.py fails CI if it does).
|
|
# The whole block is removed by reverting the commit that added it.
|
|
import json # noqa: F401,E402
|
|
|
|
FOCUS_PANE_SCHEMA = {
|
|
"name": "focus_pane",
|
|
"description": (
|
|
"Reveal and focus a Hermes desktop pane when the user asks to see it: "
|
|
"chat, files, terminal, review (git diff), or sessions. For URLs/"
|
|
"files use the desktop_preview tool instead."
|
|
),
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"pane": {
|
|
"type": "string",
|
|
"enum": list(PANES),
|
|
"description": "Which pane to reveal.",
|
|
},
|
|
},
|
|
"required": ["pane"],
|
|
},
|
|
}
|
|
# ---- END PLUGIN-COMPAT ----
|