원클릭으로
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: