commit
Pass
Audited by Gen Agent Trust Hub on Jun 29, 2026
Risk Level: SAFEPROMPT_INJECTIONCOMMAND_EXECUTIONDATA_EXFILTRATION
Full Analysis
- [PROMPT_INJECTION]: The skill exhibits an indirect prompt injection surface by processing untrusted data from the local repository.
- Ingestion points: Reads repository state and file changes using
git diffandgit diff --cachedas described inSKILL.md. - Boundary markers: Absent; file content is analyzed directly to generate slugs and descriptions.
- Capability inventory: Can execute
git commitandgit pushvia theBashtool. - Sanitization: Employs HEREDOC formatting for commit message construction to prevent shell injection, though it does not filter the logical content for prompt injection patterns.
- [DATA_EXFILTRATION]: The skill transmits data over the network via
git pushto a remote repository. - The operation targets the
originremote configured in the user's environment. - This functionality is essential to the skill's primary purpose.
- Risk is mitigated by requiring user confirmation through
AskUserQuestionbefore any push is executed. - [COMMAND_EXECUTION]: The skill utilizes the
Bashtool to perform repository management tasks, including branch manipulation, stashing, and rebasing. It includes safety logic to exclude specific patterns of sensitive files (e.g.,.env,*.pem,*.key) from being staged or committed.
Audit Metadata