skills/operations/operations-audit/SKILL.md
Performs compliance, security, and performance audits of a service or codebase. Use when preparing for a security review, assessing technical debt, validating GDPR/HIPAA compliance posture, or running a performance baseline.
npx skillsauth add pkuppens/pkuppens operations-auditInstall 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.
Structured audit covering security, compliance, performance, and data handling.
When to use:
architecture-risks-debt)Instructions:
Security audit:
uv run pip-audit or npm auditgit log --all --oneline | head -50; check for hardcoded keysDependency audit:
uv run pip list --outdateduv treePerformance audit:
Data compliance (if applicable):
Code quality audit:
uv run pytest --cov — flag modules below 60%uv run ruff check . — count and categorise violationsuv run pyright or mypy — flag untyped public APIsDocument findings in tmp/operations/audit-<date>.md:
Output format:
## Audit Report — <date>
### Critical
- <finding>: <recommendation> (#NNN)
### High
- <finding>: <recommendation>
### Medium / Low
- <summary>
### Summary
- Findings: <C>/<H>/<M>/<L>
- Issues created: #NNN, #NNN
Integration: Findings feed issue-workflow (create issues) and architecture-risks-debt. See COOPERATION.md.
testing
Syncs remote default branch locally (checkout, fetch --prune, pull) and returns to the previous branch when it still exists. Reports stashes and worktrees not yet handled. Use when the user asks to sync main, update default branch, fetch/pull origin, or run /sync-branch.
tools
Creates, queries, updates, and links Azure Boards work items via az boards CLI. Use when filing ADO work items, running WIQL queries, or setting area path, iteration, tags, and assignee.
tools
Creates, reviews, and completes Azure Repos pull requests and branch policies via az repos CLI. Use when opening ADO PRs, setting required reviewers, or configuring build validation policies.
development
Guides Azure Pipelines YAML structure, build validation on PRs, and staged deployment with environments and approvals. Use when authoring azure-pipelines.yml or configuring CI/CD on Azure DevOps.