
Vibe Security Skill
- 999 installs
- 8 repo stars
- Updated July 16, 2026
- aradotso/security-skills
vibe-security-skill is a Claude Code agent skill that audits AI-generated applications for common security vulnerabilities before developers deploy vibe-coded apps.
About
vibe-security-skill is an agent skill from the ara.so Security Skills collection that guides use of the Vibe Security tool to find common vulnerabilities introduced by AI coding assistants. Trigger phrases include auditing code for security issues, checking Supabase RLS policies, validating auth implementations, scanning for hardcoded secrets, and reviewing payment flow safety. The skill targets fast-moving AI-assisted builds where speed can skip secure defaults in authentication, database policies, and secret handling. Developers reach for vibe-security-skill immediately before deployment or when a user explicitly asks to run a vibe security audit on an existing codebase.
- Scans only relevant stack files using technology-specific reference patterns
- Detects 9 categories of AI-introduced vulnerabilities including hardcoded secrets and missing RLS
- Reviews Supabase RLS policies, Stripe payment flows, auth implementations and mobile bundles
- Hard-gate: run before any production deploy of vibe-coded apps
- Outputs prioritized vulnerability list with severity and remediation steps
Vibe Security Skill by the numbers
- 999 all-time installs (skills.sh)
- +8 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #372 of 2,209 Security skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aradotso/security-skills --skill vibe-security-skillAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 999 |
|---|---|
| repo stars | ★ 8 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 16, 2026 |
| Repository | aradotso/security-skills ↗ |
How do you audit AI-generated code for security issues?
Automatically scan AI-generated code for common security anti-patterns before deploying.
Who is it for?
Developers shipping Supabase or full-stack apps built quickly with AI assistants who need a pre-deploy vulnerability pass.
Skip if: Teams needing formal penetration tests, compliance certification workflows, or infrastructure-level cloud security posture reviews.
When should I use this skill?
A user asks to audit code for vulnerabilities, check RLS policies, validate auth, or scan for hardcoded secrets.
What you get
Security audit findings, RLS policy review notes, auth validation results, and hardcoded-secret scan report.
- Vulnerability findings
- RLS policy review
- Secret scan results
By the numbers
- Defines 8 explicit trigger phrases for security audit requests
Files
Vibe Security Skill
Skill by ara.so — Security Skills collection.
This skill provides expertise in using the Vibe Security tool to audit vibe-coded applications for common security vulnerabilities that AI coding assistants frequently introduce. It helps identify hardcoded secrets, missing RLS policies, insecure auth patterns, payment vulnerabilities, and other security anti-patterns.
What Vibe Security Does
Vibe Security is an agent skill that scans codebases for security vulnerability patterns common in AI-generated code. It uses technology-specific reference files to audit only relevant parts of your stack (Supabase, Stripe, React Native, etc.), catching issues like:
- Hardcoded API keys and secrets
- Disabled or missing Row-Level Security (RLS) policies
- Insecure authentication patterns
- Client-submitted payment amounts
- Missing rate limiting
- Tokens stored in localStorage
- Exposed secrets in mobile bundles
- AI API keys without usage caps
Installation
For Claude Code
npx skills add https://github.com/raroque/vibe-security-skill --skill vibe-securityFor OpenAI Codex
npx skills add https://github.com/raroque/vibe-security-skill --skill vibe-securitySelect "Codex" when prompted.
Manual Installation
# Project-level
git clone https://github.com/raroque/vibe-security-skill.git
cp -r vibe-security-skill/vibe-security/ .claude/skills/vibe-security/
# Global installation
cp -r vibe-security-skill/vibe-security/ ~/.claude/skills/vibe-security/Usage
Triggering Security Audits
Claude Code:
/vibe-securityOr use natural language:
- "check my code for security issues"
- "is this safe?"
- "audit this Supabase setup"
Codex:
$vibe-securityAutomatic Activation
The skill automatically activates when working with:
- Authentication flows
- Payment processing
- Database queries
- API key configuration
- User data handling
- Environment variables
Key Security Checks
1. Secrets & Environment Variables
Bad Pattern:
// ❌ Hardcoded secret
const supabase = createClient(
'https://xxx.supabase.co',
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
)
// ❌ Exposed in client bundle
const OPENAI_API_KEY = 'sk-proj-...'Good Pattern:
// ✅ Environment variable
const supabase = createClient(
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!
)
// ✅ Server-side only
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY // Not NEXT_PUBLIC_
})2. Supabase Row-Level Security
Bad Pattern:
-- ❌ RLS disabled
CREATE TABLE user_data (
id uuid,
user_id uuid,
sensitive_data text
);
-- No ALTER TABLE ... ENABLE ROW LEVEL SECURITY
-- ❌ Allows everything
CREATE POLICY "allow_all" ON user_data
FOR ALL USING (true);Good Pattern:
-- ✅ RLS enabled with proper policies
CREATE TABLE user_data (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
user_id uuid REFERENCES auth.users NOT NULL,
sensitive_data text
);
ALTER TABLE user_data ENABLE ROW LEVEL SECURITY;
CREATE POLICY "users_select_own" ON user_data
FOR SELECT USING (auth.uid() = user_id);
CREATE POLICY "users_insert_own" ON user_data
FOR INSERT WITH CHECK (auth.uid() = user_id);
CREATE POLICY "users_update_own" ON user_data
FOR UPDATE USING (auth.uid() = user_id)
WITH CHECK (auth.uid() = user_id);3. Authentication & Authorization
Bad Pattern:
// ❌ Decoding without verification
import jwt from 'jsonwebtoken'
const decoded = jwt.decode(token) // No signature check!
const userId = decoded.sub
// ❌ Middleware-only auth
// middleware.ts
export function middleware(req: NextRequest) {
const token = req.cookies.get('token')
if (!token) return NextResponse.redirect('/login')
}
// app/api/sensitive/route.ts - NOT protected!
export async function GET() {
return NextResponse.json(await db.getAllUserData())
}Good Pattern:
// ✅ Verify JWT signature
import jwt from 'jsonwebtoken'
const decoded = jwt.verify(token, process.env.JWT_SECRET!) as JwtPayload
const userId = decoded.sub
// ✅ Auth in every API route
// lib/auth.ts
export async function requireAuth(req: Request) {
const token = req.headers.get('authorization')?.replace('Bearer ', '')
if (!token) throw new Error('Unauthorized')
const decoded = jwt.verify(token, process.env.JWT_SECRET!)
return decoded
}
// app/api/sensitive/route.ts
export async function GET(req: Request) {
const user = await requireAuth(req)
return NextResponse.json(await db.getUserData(user.sub))
}4. Payment Security
Bad Pattern:
// ❌ Client submits price
export async function POST(req: Request) {
const { amount, productId } = await req.json()
const session = await stripe.checkout.sessions.create({
line_items: [{
price_data: {
currency: 'usd',
product: productId,
unit_amount: amount // ❌ Trusting client!
},
quantity: 1
}],
mode: 'payment'
})
}Good Pattern:
// ✅ Server determines price
const PRICES = {
'basic': 999,
'pro': 2999,
'enterprise': 9999
} as const
export async function POST(req: Request) {
const { plan } = await req.json()
if (!PRICES[plan]) throw new Error('Invalid plan')
const session = await stripe.checkout.sessions.create({
line_items: [{
price_data: {
currency: 'usd',
product: plan,
unit_amount: PRICES[plan] // ✅ Server-controlled
},
quantity: 1
}],
mode: 'payment'
})
}
// ✅ Verify webhook signatures
export async function POST(req: Request) {
const body = await req.text()
const sig = req.headers.get('stripe-signature')!
const event = stripe.webhooks.constructEvent(
body,
sig,
process.env.STRIPE_WEBHOOK_SECRET!
)
// Process event...
}5. Rate Limiting
Bad Pattern:
// ❌ No rate limiting on expensive endpoints
export async function POST(req: Request) {
const { prompt } = await req.json()
const completion = await openai.chat.completions.create({
model: 'gpt-4',
messages: [{ role: 'user', content: prompt }]
})
return NextResponse.json(completion)
}Good Pattern:
// ✅ Server-side rate limiting
import { Ratelimit } from '@upstash/ratelimit'
import { Redis } from '@upstash/redis'
const ratelimit = new Ratelimit({
redis: Redis.fromEnv(),
limiter: Ratelimit.slidingWindow(10, '1 h'),
analytics: true
})
export async function POST(req: Request) {
const user = await requireAuth(req)
const { success } = await ratelimit.limit(user.sub)
if (!success) {
return NextResponse.json(
{ error: 'Rate limit exceeded' },
{ status: 429 }
)
}
const { prompt } = await req.json()
const completion = await openai.chat.completions.create({
model: 'gpt-4',
messages: [{ role: 'user', content: prompt }],
max_tokens: 1000 // ✅ Cap token usage
})
return NextResponse.json(completion)
}6. Mobile Security (React Native / Expo)
Bad Pattern:
// ❌ API key in JS bundle
const OPENAI_API_KEY = 'sk-proj-...'
// ❌ Token in AsyncStorage
import AsyncStorage from '@react-native-async-storage/async-storage'
await AsyncStorage.setItem('auth_token', token)Good Pattern:
// ✅ Use backend proxy for AI calls
const response = await fetch('https://api.myapp.com/ai/chat', {
method: 'POST',
headers: {
'Authorization': `Bearer ${userToken}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({ prompt })
})
// ✅ Use secure storage for tokens
import * as SecureStore from 'expo-secure-store'
await SecureStore.setItemAsync('auth_token', token)
const token = await SecureStore.getItemAsync('auth_token')7. SQL Injection & Data Access
Bad Pattern:
// ❌ SQL injection vulnerability
export async function GET(req: Request) {
const { searchParams } = new URL(req.url)
const userId = searchParams.get('userId')
const result = await db.$queryRawUnsafe(
`SELECT * FROM users WHERE id = ${userId}`
)
}
// ❌ Prisma operator injection
const users = await prisma.user.findMany({
where: req.query // ❌ Direct user input
})Good Pattern:
// ✅ Parameterized queries
export async function GET(req: Request) {
const { searchParams } = new URL(req.url)
const userId = searchParams.get('userId')
const result = await db.$queryRaw`
SELECT * FROM users WHERE id = ${userId}
`
}
// ✅ Validate and sanitize input
const userIdSchema = z.string().uuid()
const userId = userIdSchema.parse(searchParams.get('userId'))
const user = await prisma.user.findUnique({
where: { id: userId }
})Configuration
Vibe Security uses reference files organized by technology. The skill automatically detects your stack and applies relevant checks.
Supported Technologies
- Databases: Supabase, Firebase, Convex, Prisma
- Payments: Stripe
- Mobile: React Native, Expo
- AI: OpenAI, Anthropic, other LLM providers
- Frameworks: Next.js, Vite, Express
Customizing Rules
You can extend the skill by adding custom security rules in your project's .claude/skills/vibe-security/rules/ directory.
Common Issues & Troubleshooting
"Skill not activating automatically"
Make sure you're working with code that involves:
- Authentication/authorization
- Database queries
- Payment processing
- Environment variables
- API integrations
Or explicitly trigger with /vibe-security (Claude) or $vibe-security (Codex).
"False positives on legitimate patterns"
The skill prioritizes security over convenience. If you have a legitimate use case for a flagged pattern:
1. Document why it's safe with comments 2. Ensure compensating controls exist 3. Consider if there's a more secure alternative
"Not catching vulnerabilities"
The skill focuses on common AI-generated security mistakes. For comprehensive security:
- Run additional tools (Snyk, npm audit, etc.)
- Conduct manual security reviews
- Follow OWASP guidelines
- Implement defense in depth
Best Practices
Environment Variables
# .env.local (never commit)
DATABASE_URL="postgresql://..."
STRIPE_SECRET_KEY="sk_test_..."
OPENAI_API_KEY="sk-proj-..."
# Public vars (safe in client bundle)
NEXT_PUBLIC_SUPABASE_URL="https://xxx.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJ..."Security Headers
// next.config.js
const securityHeaders = [
{
key: 'X-DNS-Prefetch-Control',
value: 'on'
},
{
key: 'Strict-Transport-Security',
value: 'max-age=63072000; includeSubDomains; preload'
},
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN'
},
{
key: 'X-Content-Type-Options',
value: 'nosniff'
},
{
key: 'Referrer-Policy',
value: 'origin-when-cross-origin'
}
]
module.exports = {
async headers() {
return [
{
source: '/:path*',
headers: securityHeaders
}
]
}
}Input Validation
import { z } from 'zod'
const createUserSchema = z.object({
email: z.string().email(),
name: z.string().min(1).max(100),
age: z.number().int().min(13).max(120)
})
export async function POST(req: Request) {
const body = await req.json()
const validated = createUserSchema.parse(body)
// Safe to use validated data
await db.user.create({ data: validated })
}Additional Resources
---
Created by Chris Raroque and the team at Aloa.
Related skills
How it compares
Use vibe-security-skill for fast AI-built app sweeps rather than deep manual threat modeling or infrastructure pentesting.
FAQ
What does vibe-security-skill check?
vibe-security-skill checks AI-generated applications for common vulnerabilities including weak auth, insecure Supabase RLS policies, unsafe payment flows, and hardcoded secrets using the Vibe Security audit workflow.
When should vibe-security-skill run?
vibe-security-skill should run before deployment or when a developer asks to audit code, validate auth, review RLS policies, or scan for secrets in a vibe-coded application.
Is Vibe Security Skill safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.