commit-documentor
Pass
Audited by Gen Agent Trust Hub on Sep 6, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTIONEXTERNAL_DOWNLOADSDATA_EXFILTRATION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill processes git commits and diffs which are untrusted external inputs that could potentially contain malicious instructions to influence documentation drafting.\n
- Ingestion points: Commit messages and file changes are read using
git log,git show, andgit diffas outlined inSKILL.md.\n - Boundary markers: The skill requires a mandatory human review and approval of the generated documentation diff and rationale before any external publication occurs.\n
- Capability inventory: The skill can execute file writes,
git commit,git push, andgh pr createvia thescripts/doc-repo.shutility.\n - Sanitization: The skill does not implement explicit sanitization or filtering of the content extracted from the ingested commits.\n- [EXTERNAL_DOWNLOADS]: The skill performs repository cloning from remote URLs provided in the user configuration file.\n
- Evidence:
git clone "$remote" "$doc_path"is executed withinscripts/doc-repo.shduring the sync process.\n - Context: These operations are targeted at well-known services like GitHub and are fundamental to the skill's purpose of documentation management.\n- [DATA_EXFILTRATION]: The skill pushes local documentation changes to remote repositories and creates pull requests.\n
- Evidence:
git pushandgh pr createoperations are used inscripts/doc-repo.shto publish approved changes.\n - Context: These network operations target authorized repositories and require explicit user approval for each specific contribution.\n- [COMMAND_EXECUTION]: The skill utilizes a local bash script to coordinate complex git and GitHub operations.\n
- Evidence:
scripts/doc-repo.shis invoked with various commands such assync,search, andpublish.\n - Context: The script wraps standard development tools including
git,jq, and theghCLI, executing them with parameters derived from the agent's context and git state.
Audit Metadata