SKILLS/GENERAL CODING WORKFLOWS/security-review/SKILL.md
Comprehensive security review checklist covering input validation, authentication, secrets management, and vulnerability patterns
npx skillsauth add mattmre/evokore-mcp security-reviewInstall 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.
Comprehensive security review checklist for code changes. Use this skill when reviewing PRs, auditing existing code, or verifying security posture before deployment.
invoke: security-review
inputs: target-path, review-depth (full | focused)
outputs: security-report, findings, evidence
| Type | Risk | Mitigation | |------|------|------------| | SQL Injection | High | Parameterized queries | | Command Injection | High | Input sanitization, avoid shell | | LDAP Injection | High | Escape special characters | | XPath Injection | Medium | Parameterized XPath |
| Type | Risk | Mitigation | |------|------|------------| | Stored XSS | High | Output encoding, CSP | | Reflected XSS | High | Input validation, output encoding | | DOM-based XSS | Medium | Avoid innerHTML, use safe APIs |
- Maximum length enforced
- Character allowlist applied
- Encoding validated (UTF-8)
- Null bytes rejected
- Range limits enforced
- Type coercion is explicit
- Overflow checked
- File type verified (magic bytes, not just extension)
- File size limited
- Filename sanitized
- Storage location is secure
These additional checks apply to AI/agent systems such as MCP servers and orchestrated workflows.
After completing a security review, document findings using this template:
## Security Review Evidence
### Scope
- Target: `<path>`
- Depth: <full/focused>
- Date: <datetime>
### Checklist Results
- Input Validation: X/Y passed
- Authentication: X/Y passed
- Authorization: X/Y passed
- Secrets Management: X/Y passed
- Data Protection: X/Y passed
### Findings
- [ ] <finding-1>: <severity> - <description>
- [ ] <finding-2>: <severity> - <description>
### Recommendations
1. <recommendation>
2. <recommendation>
| Level | Description | Response | |-------|-------------|----------| | Critical | Exploitable now, high impact | Block deployment | | High | Significant risk | Fix before merge | | Medium | Moderate risk | Fix soon | | Low | Minor risk | Track for later | | Info | Best practice suggestion | Optional |
SKILLS/GENERAL CODING WORKFLOWS/pr-manager/SKILL.md (Risk-Based Review Routing)SKILLS/GENERAL CODING WORKFLOWS/session-wrap/SKILL.md (Evidence-First Handoff Protocol)scripts/damage-control.js + damage-control-rules.yamldevelopment
Core orchestration framework for model-agnostic multi-agent workflows with handoff protocol, policy governance, and configuration schemas
testing
Specialized skill for triage issue skill workflows.
development
Complete workflow for building, implementing, and testing goal-driven agents. Orchestrates hive-* skills. Use when starting a new agent project, unsure which skill to use, or need end-to-end guidance.
development
Iterative agent testing with session recovery. Execute, analyze, fix, resume from checkpoints. Use when testing an agent, debugging test failures, or verifying fixes without re-running from scratch.