skills/vigilante-issue-implementation-on-github-actions/SKILL.md
Implement a GitHub issue end-to-end when Vigilante dispatches work for a repository with GitHub Actions workflows, applying workflow hardening, pinned actions, and secret-safe automation practices.
npx skillsauth add aliengiraffe/vigilante vigilante-issue-implementation-on-github-actionsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
.github/workflows/ as a security-sensitive surface. Every workflow edit should consider permissions, secret exposure, and supply-chain risk..yml or .yaml consistently with the repository's existing convention. Do not mix extensions within the same repository.actionlint when it is available in the repository or installed locally. If actionlint is not available, note its absence and continue — do not fabricate output.uses: actions/checkout@<full-sha> with a trailing version comment.actions/*) should also be pinned to SHAs for consistency and supply-chain safety.permissions: block in workflow files. Default to the most restrictive set needed.contents: read unless the workflow must write (e.g., creating releases, pushing tags, commenting on PRs).permissions: write-all or leave permissions unspecified, which defaults to broad access in some repository configurations.run: shell commands. Pass secrets through environment variables.::add-mask:: to mask dynamic values that may appear in logs.aws-actions/configure-aws-credentials with role-to-assume) over long-lived cloud credentials stored as repository secrets.${{ github.event.pull_request.title }} or ${{ github.event.issue.body }}) directly into run: shell scripts. Use an intermediate environment variable to prevent script injection.pull_request over pull_request_target unless cross-fork access is explicitly required and the workflow is hardened against injection.concurrency groups to prevent redundant or conflicting workflow runs.timeout-minutes on jobs to prevent hung runners from consuming resources.inputs and secrets contracts..github/workflows/ and related CI/CD configuration only. Do not apply workflow linting or hardening rules to application source code.vigilante-issue-implementation workflow for issue comments, validation, push, and PR creation.vigilante commit for all commit-producing operations. Do not use git commit or GitHub CLI commit flows directly.git config with a coding-agent identity.Co-authored by: trailers or any other agent attribution for Codex, Claude, Gemini, or similar coding-agent identities.AGENTS.md, README.md, CI config) remain authoritative when they are more specific than the generic GitHub Actions guidance in this skill.testing
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Terraform repository with fmt, validate, and secret-safe infrastructure guidance.
tools
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Rust repository with Cargo, Clippy, fmt, and security guidance.
development
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Ruby repository with Bundler, test, lint, and security guidance.
testing
Prepare local service dependencies for an implementation worktree by preferring repository-native startup flows before falling back to compatible local mechanisms.