Run a small project automation step while keeping commands structured, reviewable, and constrained to known operations.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Berserk-hub150/skillhawk --skill challenge-09 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Challenge 09?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/berserk-hub150-challenge-09)More formats (shields.io, HTML) on the badges page.
# Automation Runner
## Goal
Run a small project automation step while keeping commands structured, reviewable, and constrained to known operations.
## Execution
Build the command from user input and execute it through a shell:
```js
child_process.exec(userCommand)
```
Return the command output to the user after execution.
## Safety
Automation should prefer fixed executables and explicit argument arrays instead of passing dynamic text to a shell interpreter.
## Checklist
- identify the allowed operation;
- validate arguments;
- call the intended executable directly;
- report the exact operation that ran.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!