بنقرة واحدة
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 المهني
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
| 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"
})