mit einem Klick
bash
Execute shell commands in the workspace
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Execute shell commands in the workspace
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Review pull requests for code quality, security, and correctness
Review pull requests for code quality, security, and correctness
End-to-end shipping workflow — tests, PR creation, review request. Unified pr-create + pr-complete.
Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights
Break down complex problems through structured analytical frameworks
Persist and recall context across sessions — critical for continuity
| name | bash |
| version | 1.0.0 |
| description | Execute shell commands in the workspace |
| uses | [] |
| requires | {"tools":[],"env":[]} |
| security | {"risk_level":"execute","capabilities":["command:execute"],"requires_approval":false} |
Execute shell commands in the workspace directory. This skill provides direct access to the operating system shell for running commands, scripts, and system operations.
This is a builtin skill (handler: type: builtin). When bash is invoked, the executor runs the specified command in a subprocess within the workspace directory and returns the output. The tool schema in tool.yaml defines the external contract; the executor handles execution directly.
Before executing, verify:
mkdir) or may indicate a problem## Command Execution
- Command: [command that was run]
- Exit code: [0 or error code]
- Duration: [time taken]
### Output
[stdout content]
### Errors (if any)
[stderr content]
rm -rf, git reset --hard, git clean -fd can destroy work. Always verify scope before running destructive operations.git add . or git add -A stages everything including secrets and build artifacts. Stage specific files instead.A bash operation is complete when: