vigilante-issue-implementation-on-github-actions — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vigilante-issue-implementation-on-github-actions (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
.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, including stacked base-branch detection (Base branch: directive in the issue body).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.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.