md-to-docx-template
Pass
Audited by Gen Agent Trust Hub on Sep 14, 2026
Risk Level: SAFECOMMAND_EXECUTIONDYNAMIC_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [COMMAND_EXECUTION]: The
md-to-docx.pyscript usessubprocess.runto invoke thepandocdocument converter and the system'sopencommand. These calls are constructed using argument lists, which is a standard security practice to prevent shell command injection. - [DYNAMIC_EXECUTION]: The scripts
md-to-docx.pyandextract-styles.pyutilizeimportlib.utilto dynamically load a local helper script (create-reference-template.py). This load is restricted to the skill's own local directory viaPath(__file__).parent. - [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted markdown content, presenting a theoretical indirect injection surface. * Ingestion points: Markdown source files and manifest YAML files read in
md-to-docx.py. * Boundary markers: None; content is converted rather than interpreted as instructions. * Capability inventory: File system writes (DOCX generation), ZIP archive manipulation, and execution of thepandocbinary viasubprocess.run. * Sanitization: Path traversal guards are implemented in theresolve_pathfunction to ensure files are accessed only within the intended directories.
Audit Metadata