agent/skills/tools/bash/SKILL.md
Execute a single shell command in the project working directory. Returns stdout+stderr combined. Stateless — use shell-session for multi-step workflows.
npx skillsauth add knoopx/pi bashInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute a single shell command and return stdout+stderr combined.
REQUIRED: command (shell command string) OPTIONAL: timeout (seconds, NO default — always set for installs/builds)
RULES:
cd and env vars do NOT persist.cd /path && commandtimeout for any command that might take >30s (installs, builds, downloads)vim, less, top, bare python/node REPL)EXAMPLE:
{"name": "bash", "input": {"command": "ls -la /home/user/project"}}
EXAMPLE with timeout:
{"name": "bash", "input": {"command": "cd /home/user/project && npm install", "timeout": 120}}
&& (e.g., cd /path && make)timeout to 120-300 for installs, builds, or downloadstools
Inform the user what is happening — skip passive lookups
development
Renders markdown to self-contained HTML with a custom dark stylesheet and opens in browser. Use when previewing markdown documents, generating styled HTML from README or report files.
testing
Programmatic hunk selection for Jujutsu — split, commit, or squash specific hunks without interactive prompts. Use when making partial commits or selective squashes.
content-media
Manage version control with Jujutsu (jj) — no staging area, immediate changes, smart rebasing. Use when navigating history, squashing, or pushing to Git remotes.