HN 보여주기: 거기 있어? Claude Code가 당신이 컴퓨터에 있는지 확인하도록 하세요
hackernews
|
|
📦 오픈소스
#ai 딜
#claude
#claude code
#mcp
#웹캠
#존재 감지
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
'Claude Code'가 사용자의 웹캠을 통해 자리 비움을 감지하는 오픈소스 기능이 공개되었습니다. 이 도구는 약 200KB 크기의 가벼운 'MediaPipe BlazeFace' 모델을 사용해 안경 착용이나 조명 변화에도 1~2초 만에 얼굴을 정확히 인식합니다. 사용자가 자리를 비우면 Claude가 작업을 멈추고 대기하지 않도록 자동으로 진행하게 유도하며, 환경 변수 설정을 통해 자리 비움 시 디스코드 등으로 알림을 받도록 메시지를 맞춤화할 수 있습니다.
본문
Camera-based presence detection for Claude Code. Uses your webcam to check if you're sitting at your computer. Two components: - MCP server exposes an is_user_present tool that Claude can call anytime to check if you're there - Stop hook automatically keeps Claude working when you step away, so it doesn't stop and wait for input from an empty chair Uses MediaPipe BlazeFace for fast, lightweight face detection. Works well with glasses, varied lighting, and different angles. The model (~200KB) is downloaded automatically on first run. Requires Python 3.11+ and uv. git clone https://github.com/odfalik/uthere.git cd uthere uv sync On macOS, your terminal app needs camera access. Go to System Settings > Privacy & Security > Camera and enable it for your terminal (Terminal, iTerm2, etc). Add either or both of the following to your Claude Code settings file (~/.claude/settings.json ). Gives Claude a tool it can call to check if you're at your desk. { "mcpServers": { "uthere": { "command": "uv", "args": ["--directory", "/path/to/uthere", "run", "python", "-m", "uthere.server"] } } } Prevents Claude from stopping when you're away. If Claude finishes a response and no face is detected, it gets a message telling it to keep going. A 60-second cooldown prevents infinite loops. { "hooks": { "Stop": [ { "hooks": [ { "type": "command", "command": "uv --directory /path/to/uthere run python -m uthere.hook", "timeout": 15 } ] } ] } } All configuration is through environment variables. Set them in your shell profile or in Claude Code's env settings. | Variable | Default | Description | |---|---|---| UTHERE_AWAY_MESSAGE | "No face detected. User appears to be away..." | MCP tool message when no face is detected | UTHERE_PRESENT_MESSAGE | "User is at their computer." | MCP tool message when face is detected | UTHERE_HOOK_MESSAGE | "The user is not at their computer right now..." | Message sent to the agent when the stop hook blocks | Example using Claude Code's env settings: { "env": { "UTHERE_AWAY_MESSAGE": "User is away. Send them a message on Discord.", "UTHERE_HOOK_MESSAGE": "User is AFK. Keep working, ping them on Discord if stuck." } } - Opens the webcam via OpenCV - Takes a few warmup frames (lets auto-exposure settle) - Checks 3 consecutive frames with BlazeFace face detection - Returns true if a face is found in any frame The whole check takes about 1-2 seconds. The camera is released immediately after each check. MIT
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유