refactor(restructure): rewrite all imports for hermes_agent package

Rewrite all import statements, patch() targets, sys.modules keys,
importlib.import_module() strings, and subprocess -m references to use
hermes_agent.* paths.

Strip sys.path.insert hacks from production code (rely on editable install).
Update COMPONENT_PREFIXES for logger filtering.
Fix 3 hardcoded getLogger() calls to use __name__.
Update transport and tool registry discovery paths.
Update plugin module path strings.
Add legacy process-name patterns for gateway PID detection.
Add main() to skills_sync for console_script entry point.
Fix _get_bundled_dir() path traversal after move.

Part of #14182, #14183
This commit is contained in:
alt-glitch 2026-04-23 08:35:34 +05:30
parent 65ca3ba93b
commit 4b16341975
898 changed files with 12494 additions and 12019 deletions

View file

@ -19,7 +19,7 @@ V4A Format:
*** End Patch
Usage:
from tools.patch_parser import parse_v4a_patch, apply_v4a_operations
from hermes_agent.tools.patch_parser import parse_v4a_patch, apply_v4a_operations
operations, error = parse_v4a_patch(patch_content)
if error:
@ -34,7 +34,7 @@ from dataclasses import dataclass, field
from typing import List, Optional, Tuple, Any, TYPE_CHECKING
if TYPE_CHECKING:
from tools.file_operations import PatchResult
from hermes_agent.tools.files.operations import PatchResult
from enum import Enum
@ -253,7 +253,7 @@ def _validate_operations(
hunks validate against post-earlier-hunk content (matching apply order).
"""
# Deferred import: breaks the patch_parser ↔ fuzzy_match circular dependency
from tools.fuzzy_match import fuzzy_find_and_replace
from hermes_agent.tools.fuzzy_match import fuzzy_find_and_replace
errors: List[str] = []
@ -298,7 +298,7 @@ def _validate_operations(
+ (f"{match_error}" if match_error else "")
)
try:
from tools.fuzzy_match import format_no_match_hint
from hermes_agent.tools.fuzzy_match import format_no_match_hint
msg += format_no_match_hint(match_error, count, search_pattern, simulated)
except Exception:
pass
@ -350,7 +350,7 @@ def apply_v4a_operations(operations: List[PatchOperation],
PatchResult with results of all operations
"""
# Import here to avoid circular imports
from tools.file_operations import PatchResult
from hermes_agent.tools.files.operations import PatchResult
# ---- Phase 1: validate ----
validation_errors = _validate_operations(operations, file_ops)
@ -491,7 +491,7 @@ def _apply_move(op: PatchOperation, file_ops: Any) -> Tuple[bool, str]:
def _apply_update(op: PatchOperation, file_ops: Any) -> Tuple[bool, str]:
"""Apply an update file operation."""
# Deferred import: breaks the patch_parser ↔ fuzzy_match circular dependency
from tools.fuzzy_match import fuzzy_find_and_replace
from hermes_agent.tools.fuzzy_match import fuzzy_find_and_replace
# Read current content — raw so no line-number prefixes or per-line truncation
read_result = file_ops.read_file_raw(op.file_path)
@ -548,7 +548,7 @@ def _apply_update(op: PatchOperation, file_ops: Any) -> Tuple[bool, str]:
if error:
err_msg = f"Could not apply hunk: {error}"
try:
from tools.fuzzy_match import format_no_match_hint
from hermes_agent.tools.fuzzy_match import format_no_match_hint
err_msg += format_no_match_hint(error, 0, search_pattern, new_content)
except Exception:
pass