mirror of
https://github.com/claude-did-this/claude-hub.git
synced 2026-02-14 19:30:02 +01:00
This commit reorganizes all scripts in the repository into a more structured directory layout for better maintainability: - Categorizes scripts by functionality (setup, build, aws, runtime, security, utils) - Organizes test scripts into logical categories - Consolidates redundant scripts with unified interfaces - Adds backward compatibility wrappers - Adds detailed SCRIPTS.md documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
341 B
Bash
Executable File
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 "$@" |