Files
claude-hub/claude-wrapper.sh
Jonathan Flatt fc567071dd Initial commit
2025-05-20 17:01:59 +00:00

11 lines
341 B
Bash
Executable File

#!/bin/bash
# Wrapper script for Claude Code to handle permission acceptance
# This script attempts to run claude with the necessary flags
# Export environment variable that might help
export CLAUDE_SKIP_PERMISSION_CHECK=1
export ANTHROPIC_CLI_NO_INTERACTIVE=1
# Try running the command directly
claude --dangerously-skip-permissions "$@"