
from Claude Code Clawdbot117
Wrapper to run the local Claude Code CLI in headless or interactive (tmux) modes for code analysis, refactors, tests, and structured output.
This skill wraps the local Claude Code CLI to run headless prompts or interactive tmux sessions. It provides guidance and scripts for running structured JSON output, enabling tool allowlists, and managing interactive slash-command workflows (Spec Kit, OpenSpec). The skill helps agents execute codebase analysis, implement changes, run tests, and recover from TTY/interaction issues.
Use when you need to drive the Claude Code (Anthropic) CLI on a host: run repository analysis, plan-then-execute workflows, fix failing tests, or run Spec Kit/OpenSpec flows that require interactive tmux sessions. Prefer interactive mode for slash-command flows that pause for confirmation.
scripts/claude_code_run.py) to run claude with pseudo-terminal handling.Best for host-based automation agents that can run the claude binary (Claude Code). Useful in CI, developer workstations, and Clawdbot contexts where interactive tmux sessions are available.
Wrapper skill for running Claude Code CLI in headless or interactive tmux modes. The main script is well-written Python with proper argument parsing and safe shell quoting. Script failed to run only because the claude binary isn't installed on this machine. SKILL.md is comprehensive with good operational tips and gotchas. No security concerns beyond mentioning bypassPermissions as a common permission-mode value.
claude CLI binaryMentions bypassPermissions as a common --permission-mode value which could encourage unsafe usage, but the skill itself doesn't use it. Script properly uses shlex.quote throughout. Clean skill, no malicious indicators.