mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-21 16:18:55 +00:00
Port from openai/codex#31494: user-visible history replay must strip CSI sequences and control characters. Stored conversation history can carry raw terminal escapes (pasted content, gateway-origin text, model output echoing injected tool results). Replaying it via /resume's recap panel or build_recap (/status on CLI + gateway) wrote those bytes straight to the terminal — an injected message could clear the screen, retitle the window, move the cursor, or restyle the recap UI. Rich's Text() does not neutralize raw escape bytes. - tools/ansi_strip.py: add sanitize_display_text() — strip_ansi() plus bare C0/C1 control removal, preserving \n and \t, normalizing \r to \n (adapted to Python from Codex's sanitize_user_text; reuses the existing ECMA-48 stripper instead of transcribing their char-walk) - hermes_cli/cli_agent_setup_mixin.py: sanitize user + assistant text in _display_resumed_history() before building the Rich recap panel - hermes_cli/session_recap.py: sanitize preview lines in build_recap() (_truncate choke point) so /status recaps are clean on every platform - tests: 10 new sanitize_display_text cases (incl. the exact codex#31494 fixture), recap + resume-display leak assertions
79 lines
3.4 KiB
Python
79 lines
3.4 KiB
Python
"""Strip ANSI escape sequences from subprocess output.
|
|
|
|
Used by terminal_tool, code_execution_tool, and process_registry to clean
|
|
command output before returning it to the model. This prevents ANSI codes
|
|
from entering the model's context — which is the root cause of models
|
|
copying escape sequences into file writes.
|
|
|
|
Covers the full ECMA-48 spec: CSI (including private-mode ``?`` prefix,
|
|
colon-separated params, intermediate bytes), OSC (BEL and ST terminators),
|
|
DCS/SOS/PM/APC string sequences, nF multi-byte escapes, Fp/Fe/Fs
|
|
single-byte escapes, and 8-bit C1 control characters.
|
|
"""
|
|
|
|
import re
|
|
|
|
_ANSI_ESCAPE_RE = re.compile(
|
|
r"\x1b"
|
|
r"(?:"
|
|
r"\[[\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]" # CSI sequence
|
|
r"|\][\s\S]*?(?:\x07|\x1b\\)" # OSC (BEL or ST terminator)
|
|
r"|[PX^_][\s\S]*?(?:\x1b\\)" # DCS/SOS/PM/APC strings
|
|
r"|[\x20-\x2f]+[\x30-\x7e]" # nF escape sequences
|
|
r"|[\x30-\x7e]" # Fp/Fe/Fs single-byte
|
|
r")"
|
|
r"|\x9b[\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]" # 8-bit CSI
|
|
r"|\x9d[\s\S]*?(?:\x07|\x9c)" # 8-bit OSC
|
|
r"|[\x80-\x9f]", # Other 8-bit C1 controls
|
|
re.DOTALL,
|
|
)
|
|
|
|
# Fast-path check — skip full regex when no escape-like bytes are present.
|
|
_HAS_ESCAPE = re.compile(r"[\x1b\x80-\x9f]")
|
|
|
|
# C0 control characters (minus tab/newline/carriage-return, handled
|
|
# separately) plus DEL. These survive strip_ansi() — it only removes
|
|
# well-formed escape *sequences* — but are still dangerous or garbled
|
|
# when echoed back to a terminal (BEL rings, backspace/DEL overwrite,
|
|
# NUL truncates in some terminals).
|
|
_CONTROL_CHARS_RE = re.compile(r"[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]")
|
|
|
|
# Fast-path check for sanitize_display_text — any C0 control (except
|
|
# tab/newline), CR, DEL, ESC, or C1 byte triggers the slow path.
|
|
_HAS_CONTROL = re.compile(r"[\x00-\x08\x0b-\x1f\x7f-\x9f]")
|
|
|
|
|
|
def strip_ansi(text: str) -> str:
|
|
"""Remove ANSI escape sequences from text.
|
|
|
|
Returns the input unchanged (fast path) when no ESC or C1 bytes are
|
|
present. Safe to call on any string — clean text passes through
|
|
with negligible overhead.
|
|
"""
|
|
if not text or not _HAS_ESCAPE.search(text):
|
|
return text
|
|
return _ANSI_ESCAPE_RE.sub("", text)
|
|
|
|
|
|
def sanitize_display_text(text: str) -> str:
|
|
"""Sanitize stored/untrusted text before echoing it to a terminal.
|
|
|
|
Removes ANSI/ECMA-48 escape sequences AND bare control characters,
|
|
preserving only newlines and tabs (carriage returns are normalized
|
|
to newlines so ``\\r``-overwrite spoofing can't hide content).
|
|
|
|
Use this when re-rendering conversation history or other persisted
|
|
text in a terminal UI (e.g. the ``/resume`` recap): a message that
|
|
arrived with embedded escapes — pasted content, gateway-origin
|
|
text, or model output echoing injected tool results — must not be
|
|
able to clear the screen, retitle the window, move the cursor, or
|
|
restyle adjacent UI when replayed. Rich's ``Text()`` does NOT
|
|
neutralize raw escape bytes, so sanitization has to happen before
|
|
display. Mirrors openai/codex#31494 (``sanitize_user_text``).
|
|
"""
|
|
if not text or not _HAS_CONTROL.search(text):
|
|
return text
|
|
text = strip_ansi(text)
|
|
if "\r" in text:
|
|
text = text.replace("\r\n", "\n").replace("\r", "\n")
|
|
return _CONTROL_CHARS_RE.sub("", text)
|