github-repo-management
Fail
Audited by Gen Agent Trust Hub on Aug 28, 2026
Risk Level: HIGHDATA_EXFILTRATIONREMOTE_CODE_EXECUTIONINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [DATA_EXFILTRATION]: The skill locates and reads authentication tokens and private keys from sensitive local file paths.
- Evidence in
SKILL.md: The setup script attempts to retrieveGITHUB_TOKENvalues by searching~/.git-credentialsand.envfiles. - Evidence in
SKILL.md: A documentation example includes a command to read a private SSH key from~/.ssh/id_rsato set it as a GitHub secret. - [REMOTE_CODE_EXECUTION]: The skill employs a pattern where data retrieved from a remote API is piped into a Python interpreter for processing.
- Evidence in
SKILL.md: Multiple instances ofcurl -s ... | python3 -c "..."are used to parse JSON responses. While these commands target a well-known service (api.github.com) and use the-cflag for local processing, piping remote content to a runtime interpreter is a monitored pattern. - [INDIRECT_PROMPT_INJECTION]: The skill ingests untrusted data from external sources that could contain malicious instructions.
- Ingestion points: Fetches repository names, descriptions, and other metadata from
api.github.com/repos/,api.github.com/search/repositories, andapi.github.com/gists(SKILL.md). - Boundary markers: Absent. The skill does not employ delimiters to isolate external metadata from agent instructions.
- Capability inventory: The skill has broad command execution capabilities including
git,gh,curl, and the ability to write to remote repositories/secrets (SKILL.md). - Sanitization: No evidence of input validation or sanitization of repository metadata before it is processed by the agent.
- [COMMAND_EXECUTION]: The skill relies extensively on shell command execution to perform its primary tasks.
- Evidence: Frequent use of
git,gh, andcurlthroughoutSKILL.mdandreferences/github-api-cheatsheet.md.
Recommendations
- HIGH: Downloads and executes remote code from: https://api.github.com/user - DO NOT USE without thorough review
Audit Metadata