بنقرة واحدة
bash
Execute shell commands in the workspace
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Execute shell commands in the workspace
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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: