원클릭으로
security
Run a quick security audit on recent changes or specific files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run a quick security audit on recent changes or specific files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | security |
| description | Run a quick security audit on recent changes or specific files |
Invokes the security-auditor agent for quick security checks on code.
Determine audit scope:
Launch security-auditor agent via Task tool:
Task({
subagent_type: "security-auditor",
prompt: "Perform a security audit on [target]. Focus on:
- Input validation
- Authentication/authorization
- Cryptographic usage
- IPC security (Tauri commands)
- OWASP Top 10 vulnerabilities
Provide findings with severity ratings and remediation guidance."
})
| Area | What to Check |
|---|---|
| Input Validation | User input sanitization, type checking |
| Auth Flows | Skeleton Key handling, session management |
| Crypto | XChaCha20-Poly1305 usage, key derivation |
| IPC Security | Tauri command permissions, invoke patterns |
| P2P Sync | mDNS discovery, TCP connections, encryption |
User: "Run a security check"
git diff HEAD~5 --name-only
Launch security-auditor agent with file list
Present findings summary
User: "Security audit the crypto module"
Launch agent:
Task({
subagent_type: "security-auditor",
prompt: "Perform a security audit on src-tauri/src/crypto/ focusing on:
- BIP39 mnemonic handling
- HKDF key derivation
- XChaCha20-Poly1305 encryption
- Key storage security
- Potential side-channel vulnerabilities"
})
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Generate a test file for a component, hook, or utility
Generate comprehensive tests via test-generator agent