TERMINAL_PANEL
Read the rendered terminal output buffer, not just bash stdout.
bash stdout뿐 아니라 렌더링된 터미널 출력 버퍼 전체를 읽음.
현재 Claude는 명령의 stdout/stderr만 받습니다. TERMINAL_PANEL은 터미널 화면 전체(스크롤백 포함, ANSI 색상 코드, 커서 위치 등)를 읽을 수 있게 됩니다.
TUI 애플리케이션, 대화형 프로그램(vim, htop, python REPL)의 상태를 Claude가 직접 파악 가능. computer-use 계열 기능과 연계 예상.
terminal buffer
TUI support
ANSI
screen read
CHICAGO_MCP
macOS-only system bridge (Spotlight, Accessibility, Notifications) via MCP.
macOS 전용 시스템 브리지 — MCP를 통해 Spotlight·접근성·알림 연동.
macOS 시스템 API를 MCP 서버로 래핑하여 Claude가 직접 접근 가능하게 합니다:
- Spotlight: 시스템 파일 검색
- Accessibility API: 화면의 UI 요소 읽기·제어
- Notifications: macOS 알림 센터 연동
코드명 "Chicago"는 아마 내부 프로젝트명. Windows 버전은 별도 계획 가능성.
macOS only
Spotlight
Accessibility
MCP bridge
SKILL_SEARCH + MCP_SKILLS
Local skill index + MCP-hosted skill libraries consumable like MCP servers.
로컬 스킬 인덱스 + MCP로 호스팅된 스킬 라이브러리.
두 가지 기능의 조합:
- SKILL_SEARCH: 설치된 스킬을 의미 기반으로 검색·발견
- MCP_SKILLS: 스킬을 MCP 서버처럼 원격 호스팅·공유 가능
팀 단위로 커스텀 스킬을 MCP 서버로 배포하고, 다른 개발자가
/plugin install처럼 설치하는 생태계 구축. 현재
/skills 명령의 대대적 확장.
skill index
MCP hosting
semantic search
skill sharing
UPLOAD_USER_SETTINGS
Sync local Claude Code config to remote on startup.
시작 시 로컬 Claude Code 설정을 원격으로 동기화.
~/.claude/settings.json, ~/.claude/CLAUDE.md 등 개인 설정을 Anthropic 클라우드 또는 팀 서버에 자동 업로드·동기화합니다.
새 장비 셋업, 팀 표준 설정 배포, Claude Code on the Web과의 설정 동기화 시나리오에 활용 예상. 현재 Remote Control 기능의 설정 측면 확장.
settings sync
cloud backup
remote config
startup sync
COMMIT_ATTRIBUTION
Tag git commits with metadata identifying the Claude session that made them.
git 커밋에 Claude 세션 식별 메타데이터를 태그.
Claude가 작성한 코드가 커밋될 때 어떤 Claude 세션·모델·설정에서 생성됐는지 git trailers 또는 커밋 메시지에 자동 기록합니다.
예: Claude-Session: sess_abc123, Claude-Model: claude-sonnet-4-6
코드 감사(audit), AI 기여도 추적, 자동화된 코드 리뷰 시 출처 식별에 활용.
git metadata
attribution
audit trail
git trailers
TEMPLATES
Project scaffolding templates for /init — no tool wired yet.
/init 용 프로젝트 스캐폴딩 템플릿 — 아직 툴 연결 없음.
현재 /init은 CLAUDE.md를 자동 생성하는 수준이지만, TEMPLATES는 프로젝트 유형별 전체 스캐폴딩(파일 구조, 설정, CLAUDE.md, 스킬 세트)을 제공합니다.
예: "React TypeScript 프로젝트", "Python FastAPI 백엔드", "Next.js + Prisma" 템플릿으로 즉시 최적화된 환경 구성. 소스에 플래그만 존재, 미연결.
scaffolding
/init
project template
⚠ unwired