resume
Pass
Audited by Gen Agent Trust Hub on Mar 28, 2026
Risk Level: SAFECOMMAND_EXECUTIONDATA_EXFILTRATION
Full Analysis
- [COMMAND_EXECUTION]: The skill executes several shell commands to manage files and compile resumes.
- It uses
which xelatexto verify environment prerequisites. - It invokes
make enandmake zhto compile LaTeX source into PDF documents. - The provided
Makefileusescatandsedto dynamically generate localized versions of the resume source file. - [DATA_EXFILTRATION]: While the skill primarily processes data locally within the user's workspace, it handles sensitive personal information (name, email, phone, work history).
- The data is stored in plain text markdown files within the
experiences/directory. - There is no evidence of unauthorized external transmission, but users should be aware that their personal data is written to the local file system by the agent.
- [INDIRECT_PROMPT_INJECTION]: The skill possesses an indirect injection surface by processing untrusted data (user-provided resumes or job descriptions) and inserting it into an executable context (LaTeX source).
- Ingestion points: User-provided text via
$ARGUMENTSin theinit,generate, andaddsubcommands, and content read from external job description files. - Boundary markers: None explicitly defined in the instructions for separating user data from LaTeX templates.
- Capability inventory: File writing (
resume.tex), shell execution (xelatex,make,sed). - Sanitization: The instructions mention basic escaping for
&and%, but do not specify escaping for the LaTeX command character\or grouping characters{ }, which could allow malicious input to execute LaTeX commands during the build process.
Audit Metadata