dispatch-subprocess
Pass
Audited by Gen Agent Trust Hub on Jul 27, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The instructions in
SKILL.mddefine shell command templates that interpolate variables ($B,$BR,$D) directly into the command line. This creates a potential command injection surface if the source of these variables is not strictly sanitized by the calling system. - [INDIRECT_PROMPT_INJECTION]: The skill spaws workers that process "pre-distilled" prompts, which are interpolated into the execution context.
- Ingestion points: The skill uses placeholders like
<pre-distilled prompt>withinSKILL.mdto receive instruction data. - Boundary markers: No specific delimiters or "ignore instructions" warnings are present around the interpolated prompt content.
- Capability inventory: The spawned workers are granted access to sensitive tools, including
bash,edit,read, andwritevia thepitool. - Sanitization: The skill does not demonstrate explicit validation or escaping of the prompt content before it is passed to the worker.
- [SAFE_PRACTICE]: The skill implements several defensive patterns, including the use of
timeoutto prevent hanging processes, the--offlineflag to block network access for workers, and the--no-extensions/--no-skillsflags to enforce a minimal capability set.
Audit Metadata