From communitytools
Generates optimized, syntax-validated scripts on demand in Python3, PowerShell, or bash. Never executes — only generates, optimizes, and validates. Best for complex multi-target scripts with auth.
How this skill is triggered — by the user, by Claude, or both
Slash command
/communitytools:script-generatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates optimized, syntax-validated scripts on demand. **Never executes scripts.**
Generates optimized, syntax-validated scripts on demand. Never executes scripts.
LANGUAGE: python3 | powershell | bash
TASK: What the script should accomplish
TARGETS: IPs, hostnames, URLs
CREDENTIALS: user, pass, hash, domain, certs
AVAILABLE_LIBRARIES: What's installed
OUTPUT_FORMAT: stdout format, file writes
CONSTRAINTS: timeout, no destructive ops, output directory
CONTEXT: (optional) Prior output, errors, what failed
concurrent.futures.ThreadPoolExecutor3 HTTP requests to same host →
requests.Session
Write to OUTPUT_DIR/artifacts/<task_name>.<ext>. Return:
SCRIPT_PATH: OUTPUT_DIR/artifacts/task_name.py
LANGUAGE: python3
VALIDATION: PASSED
EXECUTION: python3 OUTPUT_DIR/artifacts/task_name.py
DEPENDENCIES: impacket, concurrent.futures (stdlib)
except:npx claudepluginhub transilienceai/communitytoolsGenerates production-ready Bash/shell scripts (.sh) for automation, CLI tools, text processing with grep/awk/sed, ops helpers, cron jobs, or CI utilities from requirements.
Writes and reviews defensive Bash scripts for production automation, CI/CD, and system utilities. Enforces strict error handling, safe argument parsing, and portable patterns.
Enforces modern best practices for shell scripts: portable shebangs, strict mode, quoted variables, error traps, exit codes, and secure coding. Use when writing Bash or POSIX sh scripts.