github-project-automation
Pass
Audited by Gen Agent Trust Hub on Sep 1, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADSPRIVILEGE_ESCALATIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [COMMAND_EXECUTION]: The skill includes several shell scripts (
generate-codeowners.sh,setup-github-project.sh,sync-templates.sh,validate-workflows.sh) that automate repository configuration. These scripts perform local file operations (copying, directory creation) and execute standard version control commands usinggitand the GitHub CLI (gh). - [EXTERNAL_DOWNLOADS]: The workflow templates reference official and well-known GitHub Actions to perform tasks like code checkout, environment setup, and security scanning.
- Fetches official actions from the GitHub-managed
actionsandgithuborganizations (e.g.,actions/checkout,actions/setup-node,github/codeql-action). - Integrates with well-known third-party services such as
codecov/codecov-actionfor code coverage reporting. - All actions in the provided templates are pinned to cryptographic SHAs, following security best practices to prevent supply chain attacks.
- [PRIVILEGE_ESCALATION]: The
SKILL.mdfile provides instructions for installing the GitHub CLI usingsudo apt install gh. This is a standard administrative procedure for package installation on Linux systems and is necessary for the skill's functionality. - [INDIRECT_PROMPT_INJECTION]: The skill's automation scripts ingest data from the repository's git history and environment.
- Ingestion points:
pr-checks.ymlreads branch names and commit messages from thegithub.head_refandgithub.eventcontexts;generate-codeowners.shparses git logs. - Boundary markers: None explicitly used for prompt delimiters.
- Capability inventory: The skill has the capability to write to the local file system and execute shell commands via the provided scripts and workflows.
- Sanitization: The scripts employ regular expressions to validate branch naming conventions and commit message formats, reducing the risk of processing malicious metadata.
Audit Metadata