commit
Pass
Audited by Gen Agent Trust Hub on Aug 21, 2026
Risk Level: SAFE
Full Analysis
- [DYNAMIC_CONTEXT_INJECTION]: The skill employs the
!command`` syntax withinSKILL.mdto automatically fetch and inject the current repository state into the agent's context. - Evidence: The following commands are executed at load time:
git status,git diff HEAD,git branch --show-current, andgit log --oneline -10. - Assessment: These operations are consistent with the skill's primary purpose of managing git commits. They provide the agent with the necessary visibility into staged changes and recent history to perform its task correctly. No exfiltration or sensitive file access was observed.
- [INDIRECT_PROMPT_INJECTION]: The skill presents a surface for indirect prompt injection because it reads and processes external data (git history, diffs, and status) that could contain malicious instructions.
- Ingestion points: Untrusted content from the repository (e.g., commit messages or code changes) enters the context via the
git status,git diff, andgit logcommands inSKILL.md. - Boundary markers: There are no boundary markers or delimiters used to isolate the git output, nor are there instructions for the agent to ignore embedded commands within that data.
- Capability inventory: The agent is authorized to perform
git addandgit commitoperations based on the ingested context. - Sanitization: No sanitization, escaping, or filtering is applied to the output of the git commands before they are interpolated into the prompt.
Audit Metadata