Web & Frontend DevelopmentDocumentedScanned
claw-shell
ALWAYS USES TMUX SESSION `claw`.
Share:
Installation
npx clawhub@latest install claw-shellView the full skill documentation and source below.
Documentation
claw-shell
ALWAYS USES TMUX SESSION claw.
PURPOSE
- RUN SHELL COMMANDS INSIDE TMUX SESSION
claw - NEVER TOUCH ANY OTHER SESSION
- READ OUTPUT BACK TO THE AGENT
INTERFACE
Tool: claw_shell_run
Inputs:
command(string, required): shell command to run inside sessionclaw.
claw (create it if missing: tmux new -s claw -d).SAFETY
- DO NOT RUN:
sudo
- rm (without explicit user approval)
- reboot, shutdown, or destructive system-level commands
- IF THE COMMAND CONTAINS ANY OF THE ABOVE:
EXAMPLES
- SAFE:
ls -la
- bird read
- git status
- DANGEROUS (ASK FIRST):
- rm -rf ...
- docker system prune -a
- chmod -R ...`