challenge-09 · git:20260818.eb24d01 · 2026-08-18 · sha256 87d4dbfd950df1e9

challenge-09 git:20260818.eb24d01C

Immutable. This exact content is served forever at /api/v1/blob/87d4dbfd950df1e9.

# 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.