starchild-blog
Pass
Audited by Gen Agent Trust Hub on Jul 21, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADSPROMPT_INJECTION
Full Analysis
- [PROMPT_INJECTION]: The skill facilitates indirect prompt injection by design. It instructs the agent to fetch content from arbitrary external URLs and then perform editorial tasks on that content.
- Ingestion points: The
scripts/import_article.pyscript described inSKILL.mdfetches content from user-provided URLs. - Boundary markers: The skill mentions scoping CSS under
.sr-articleto prevent style leakage, but does not specify delimiters or instructions for the agent to ignore embedded commands within the markdown body during the editorial pass. - Capability inventory: The skill uses
python3subprocesses for building and importing, file system writes for drafts and builds, and network access to fetch article content. - Sanitization: The importer performs HTML neutralization and typography normalization as described in the "Formatting imported / rich articles" section.
- [EXTERNAL_DOWNLOADS]: The skill utilizes a local script to download content from external web pages to create drafts.
- Evidence: The instruction
python3 scripts/import_article.py "<URL>"inSKILL.mdallows the agent to download resources from arbitrary remote sources. - [COMMAND_EXECUTION]: The skill relies on the agent executing shell commands to run its build and import scripts.
- Evidence:
SKILL.mdprovides multiple examples of shell execution, such aspython3 build.pyandpython3 scripts/import_article.py. If the agent fails to properly sanitize the URL argument, it could potentially lead to shell command injection.
Audit Metadata