// Library of battle-tested security prompt templates for secure feature implementation. Use when implementing forms, endpoints, authentication, authorization, file uploads, or conducting security reviews. Triggers include "security prompt", "secure form", "RBAC", "threat model", "STRIDE", "admin endpoint", "file upload", "security testing", "code review", "OWASP".
| name | security-prompts |
| description | Library of battle-tested security prompt templates for secure feature implementation. Use when implementing forms, endpoints, authentication, authorization, file uploads, or conducting security reviews. Triggers include "security prompt", "secure form", "RBAC", "threat model", "STRIDE", "admin endpoint", "file upload", "security testing", "code review", "OWASP". |
This skill provides ready-to-use security prompt templates following the Secure Vibe Coding methodology. Each template includes complete security controls, testing checklists, and customization guidance.
Use security prompt templates when:
Location: .claude/skills/security/security-prompts/prompt-engineering/
Comprehensive prompts for implementing secure features:
01_secure_form.md - Public forms with full security stack
02_authenticated_endpoint.md - Authenticated data modification
03_public_endpoint.md - Public APIs with pagination
04_admin_action.md - Admin-only features with audit logging
05_file_upload.md - Secure file handling
06_composable_middleware.md - Multiple security layers
07_new_control.md - Extending security architecture
08_security_testing.md - Comprehensive security tests
Location: .claude/skills/security/security-prompts/threat-modeling/
Prompts for security analysis and review:
01_stride_analysis.md - Complete STRIDE threat model
02_feature_threats.md - Feature-specific threat analysis
03_architecture_impact.md - Architecture change security impact
04_code_review.md - Security vulnerability review
05_security_tests.md - Automated security test generation
06_owasp_check.md - OWASP Top 10 compliance
07_payment_security.md - Payment security (Clerk Billing + Stripe)
08_update_model.md - Update threat model after features
Location: .claude/skills/security/security-prompts/auth-authorization/
Prompts for authentication and access control:
01_rbac_implementation.md - Role-based access control
02_permissions.md - Granular permission system
03_ownership.md - Resource ownership verification
04_auth_testing.md - Authorization testing
Location: .claude/skills/security/security-prompts/built-in-controls/
Simple prompts using existing Secure Vibe Coding OS utilities:
01_contact_form.md - Quick contact form with security
02_authenticated_update.md - User data modification
03_public_api.md - Public GET endpoints
When a user asks for a security implementation:
**Recommend the appropriate template:**
"I'll use the [TEMPLATE_NAME] security prompt template for this.
**Template**: `.claude/skills/security/security-prompts/[category]/[file].md`
**Security Controls Applied**:
- [List controls from template]
**Customizations needed**:
- [List what to customize]
Let me load the template and customize it for your needs..."
Then read and apply the template.
Many features need multiple prompts:
Example: Admin Dashboard
auth-authorization/01_rbac_implementation.md (if RBAC not set up)prompt-engineering/04_admin_action.md (for each admin feature)prompt-engineering/08_security_testing.mdthreat-modeling/04_code_review.mdthreat-modeling/08_update_model.mdExample: User Profile Edit
prompt-engineering/02_authenticated_endpoint.mdauth-authorization/03_ownership.mdauth-authorization/04_auth_testing.mdEach template follows this structure:
# [Template Name]
**Category**: [Category]
**When to Use**: [Scenario]
**Module**: [Course module]
**Time to Implement**: [Estimate]
## Security Controls Applied
[Checklist of security features]
## The Prompt
[Copy-paste ready prompt with placeholders]
## Customization Tips
[How to adapt for specific needs]
## Testing Checklist
[Verification steps]
## Related Prompts
[Links to complementary templates]
## Version History
[Change tracking]
All prompts reference the Secure Vibe Coding OS:
@docs/security/SECURITY_ARCHITECTURE.md/lib directory (withCsrf, withRateLimit, validateRequest, etc.)Always include architecture reference in prompts:
Reference: @docs/security/SECURITY_ARCHITECTURE.md
When security-focused agents (like security-scanner, threat-modeler) need prompt templates:
// Agent can reference specific templates
"Use the STRIDE analysis template from .claude/skills/security/security-prompts/threat-modeling/01_stride_analysis.md to create a threat model"
// Or request template by trigger
"Apply the secure form security prompt template to implement this contact form"
This skill works with other security skills:
"...a contact form"
โ built-in-controls/01_contact_form.md
"...user profile editing"
โ prompt-engineering/02_authenticated_endpoint.md
โ Then: auth-authorization/03_ownership.md
"...admin features"
โ auth-authorization/01_rbac_implementation.md (if needed)
โ Then: prompt-engineering/04_admin_action.md
"...file uploads"
โ prompt-engineering/05_file_upload.md
"...a public API"
โ built-in-controls/03_public_api.md
"...security before deploy"
โ prompt-engineering/08_security_testing.md
โ threat-modeling/04_code_review.md
"...OWASP compliance"
โ threat-modeling/06_owasp_check.md
"...payment security"
โ threat-modeling/07_payment_security.md
"...a threat model"
โ threat-modeling/01_stride_analysis.md
"...role-based access"
โ auth-authorization/01_rbac_implementation.md
"...security tests"
โ prompt-engineering/08_security_testing.md
threat-modeling/08_update_model.mddocs/security/THREAT_MODEL.mdEach category has its own SKILL.md with:
Access supporting templates directly:
Read: .claude/skills/security/security-prompts/[category]/[template].md
# Security Implementation Agent
When implementing security features:
1. **Identify feature type** (form, API, auth, etc.)
2. **Load appropriate security-prompts skill template**
3. **Customize template** with user's specific requirements
4. **Generate secure implementation** following template
5. **Apply testing checklist** from template
6. **Recommend related prompts** for complete security
Use security-prompts skill as the authoritative source for implementation patterns.
v1.0 (2025-10-23): Initial skill creation from security-prompts library
course-lesson-builder - Creating course content using these promptssecurity/* - All implementation-focused security skillssecurity-awareness/* - Understanding vulnerability patternsWhen adding new security prompts:
Usage: When users mention security implementations, threat modeling, or specific triggers, activate this skill to provide appropriate template guidance and direct them to the right security prompt for their needs.