# Security Review

> Security-focused review rules for command and secret-sensitive changes.

- Skill: `thewaltero/security-review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thewaltero/security-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thewaltero/security-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: thewaltero (https://skillmd.com/u/thewaltero)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/thewaltero/security-review

---


# security-review Skill

## Purpose
Use this skill when a task touches command execution, package scripts, CI, deploy files, authentication, secrets, receipts, memory, or user-controlled paths.

## Read First

If present, review these before making security-sensitive edits:

- SECURITY.md
- package.json
- .github/workflows/
- src/security-policy.ts
- src/commands/verify.ts
- any file that defines command execution, receipts, secrets, auth, or writable paths

## Rules
- Treat install scripts, lifecycle hooks, shell commands, workflows, Docker files, and deploy files as high-risk surfaces.
- Never expose secret values in logs, receipts, docs, tests, or examples.
- Prefer allowlists and structured parsing over broad string matching for security decisions.
- Do not weaken SWD verification, receipt integrity, dry-run behavior, or command review prompts.
- When a change introduces a new writable path, explain how it is constrained.

## Verification
- Check that sensitive outputs are redacted before storage.
- Check that command-affecting changes still require explicit human confirmation.
- Prefer read-only verification for CI-facing checks.

## Output

When finished, summarize:

- what security-sensitive files changed
- what risks were checked
- what verification was run
- any remaining assumptions or unverified areas

