Vision-based auto-approval system for Claude Code CLI using MiniCPM-V vision model. Features: - Automatic detection and response to approval prompts - Screenshot capture and vision analysis via Ollama - Support for multiple screenshot tools (scrot, gnome-screenshot, etc.) - Configurable timing and behavior - Debug mode for troubleshooting - Comprehensive documentation Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Jean-Philippe Brule <jp@svrnty.io>
15 lines
335 B
Python
15 lines
335 B
Python
"""
|
|
Claude Vision Auto - Vision-based auto-approval for Claude Code
|
|
|
|
Automatically analyzes terminal screenshots using MiniCPM-V vision model
|
|
to respond to Claude Code approval prompts.
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Svrnty"
|
|
__license__ = "MIT"
|
|
|
|
from .main import run_claude_with_vision
|
|
|
|
__all__ = ["run_claude_with_vision"]
|