Install
openclaw skills install unified-security-auditorUnified application security skill for Coding Agent systems like OpenCode. Use when reviewing or writing code that touches authentication, authorization, user input, payments, database access, secrets, deployment, dependencies, or AI/agent workflows. Includes OWASP Top 10 (2025), ASVS 5.0 highlights, agentic AI security, vibe-coded pitfalls, insecure defaults detection, supply chain risk signals, and CI/CD agent action hardening.
openclaw skills install unified-security-auditorAudit and harden codebases against real-world security failures, especially those introduced by fast AI-assisted development. Prioritize exploitable issues and provide concrete fixes.
SECRET = env.get('KEY') or 'default'SECRET = env['KEY'] (crashes if missing)Flag dependencies with one or more of:
When workflows invoke AI agents, treat all event data as attacker-controlled.
Common AI action references:
anthropics/claude-code-actiongoogle-github-actions/run-gemini-cliopenai/codex-actionactions/ai-inferenceHigh-risk patterns:
pull_request_target or issue_comment with untrusted inputenv: intermediarieseval, exec, $())danger-full-access, --yolo)allow-users: "*")Safe defaults:
Organize findings by severity: Critical, High, Medium, Low. For each issue:
End with a prioritized summary and remediation order.
Use the same checks proactively. Prefer secure patterns by default and note tradeoffs in comments when you must relax controls.
Save into the folder/project where this skill was executed as a markdown file with todays date
## Security Audit Report
**Target:** <files/component>
**Date:** <today>
**Auditor:** <ask the user for a name> OR skip and use "Automated Security Skill"
### Executive Summary
<2-3 sentences: overall risk posture, most critical issues>
### Findings
#### [CRITICAL/HIGH/MEDIUM/LOW] <Title>
- **Location:** file:line
- **Impact:** ...
- **Reproduction:** ...
- **Fix:**
```diff
- vulnerable code
+ secure code
This skill is a curated, adapted work derived from:
This unified skill is licensed under CC-BY-SA-4.0 to satisfy ShareAlike requirements.