skills/vigilante-issue-implementation-on-python/SKILL.md
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Python repository with idiomatic tooling and security guidance.
npx skillsauth add aliengiraffe/vigilante vigilante-issue-implementation-on-pythonInstall 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.
venv rather than ad hoc global installs.ruff format and ruff check; when it uses Black, use black. Do not introduce repo-wide formatting churn unrelated to the issue.mypy, pyright-style tooling, or equivalent configured commands.pytest or repo-standard test commands for the changed area first, then broaden scope when needed.pip-audit when it is already part of the repo workflow or otherwise clearly available and relevant.secrets over random for security-sensitive values.pickle usage or deserializing untrusted data with Python-native object loaders.subprocess: prefer explicit argument lists, avoid shell=True unless required and safely constrained, and validate any external input passed to commands.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, tool config files) remain authoritative when they are more specific than the generic Python 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.