hermes - 💡(How to fix) Fix TUI: 채팅창 하단에서 YOLO 모드 설정 가능하게 하기

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
RAW_BUFFERClick to expand / collapse

배경

현재 YOLO 모드는 CLI에서 /yolo slash command 또는 --yolo/HERMES_YOLO_MODE 같은 실행 옵션으로 토글된다. TUI에서는 채팅 입력 영역 하단에 사용자가 바로 확인하고 조작할 수 있는 YOLO 설정 UI가 없어, 위험 명령 승인 우회 상태를 켜고 끄려면 명령을 기억해서 입력해야 한다.

관련 코드 위치:

  • cli.py: /yolo command 처리 및 HERMES_YOLO_MODE 기반 상태 표시
  • ui-tui/src/components/appLayout.tsx: 하단 composer/chat input 영역 렌더링
  • ui-tui/src/components/appChrome.tsx: status rule / session 상태 표시
  • ui-tui/src/__tests__/slashParity.test.ts: TUI slash command parity에 yolo 포함

구현 목표

채팅창 하단(composer 아래/근처)에서 YOLO 모드를 직접 설정할 수 있게 한다.

제안 구현

  • TUI 하단 입력 영역 근처에 YOLO 상태 표시 및 토글 컨트롤을 추가한다.
    • 예: YOLO: off/on, ⚠ YOLO on 같은 명확한 상태 배지
    • mouse/keyboard로 토글 가능하면 좋음
  • 토글 동작은 기존 /yolo와 동일한 세션 스코프 semantics를 유지한다.
    • 현재 세션에서 위험 명령 approval bypass on/off
    • 기존 /yolo command와 상태가 서로 동기화되어야 함
  • YOLO가 켜져 있을 때는 위험 상태가 눈에 띄도록 색상/문구를 사용한다.
  • 좁은 터미널 폭에서도 입력창 사용성을 해치지 않도록 compact fallback을 둔다.

완료 기준

  • 채팅 입력 영역 하단/근처에서 YOLO on/off 상태를 볼 수 있다.
  • 사용자가 /yolo를 직접 입력하지 않고도 하단 UI에서 YOLO 모드를 토글할 수 있다.
  • /yolo command로 바꾼 상태와 하단 UI 상태가 즉시 일치한다.
  • YOLO on 상태에서는 위험 명령 승인 우회 상태임을 명확히 경고한다.
  • 관련 TUI 테스트가 추가/갱신된다.
  • 빠른 검증 게이트가 통과한다.
    • cd ui-tui && pnpm test 또는 repo에서 사용하는 TUI test command
    • 필요 시 python -m pytest 대상 테스트

참고

이 이슈는 approval prompt UX 자체 변경이 아니라, YOLO 모드 설정 진입점을 채팅창 하단으로 노출하는 TUI/UX 개선이다.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix TUI: 채팅창 하단에서 YOLO 모드 설정 가능하게 하기