install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/biosaylom/my-claw-shell" ~/.claude/skills/clawdbot-skills-my-claw-shell && rm -rf "$T"
manifest:
skills/biosaylom/my-claw-shell/SKILL.mdsource content
claw-shell-kali
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
claw_shell_runInputs:
(string, required): shell command to run inside sessioncommand
.claw
Behavior:
- Attach to tmux session
(create it if missing:claw
).tmux new -s claw -d - Send the command followed by Enter.
- Capture the latest pane output.
- Return the captured output to the agent.
SAFETY
- DO NOT RUN:
sudo
(without explicit user approval)rm
,reboot
, or destructive system-level commandsshutdown
- IF THE COMMAND CONTAINS ANY OF THE ABOVE:
- ASK USER FOR CONFIRMATION BEFORE EXECUTING.
EXAMPLES
-
SAFE:
ls -labird read https://x.com/...git status
-
DANGEROUS (ASK FIRST):
rm -rf ...docker system prune -achmod -R ...