api-security
Comprehensive API security for REST and GraphQL APIs. Use this skill when building or reviewing API endpoints, implementing authentication, or securing data transfer. Activate when: API security, REST security, GraphQL security, API authentication, API rate limiting, API versioning, secure endpoint, API design.
What this skill does
# API Security
**Secure your REST and GraphQL APIs against common attacks and vulnerabilities.**
## When to Use
- Designing new API endpoints
- Implementing API authentication
- Setting up rate limiting
- Reviewing API security
- Building public APIs
- Implementing webhooks
## API Security Checklist
| Area | Controls |
|------|----------|
| Authentication | OAuth 2.0, API keys, JWT |
| Authorization | Scopes, RBAC, resource ownership |
| Input Validation | Schema validation, type checking |
| Rate Limiting | Per-user, per-endpoint limits |
| Transport | HTTPS only, certificate pinning |
| Output | No sensitive data leakage |
## Authentication Patterns
### API Key Authentication
```javascript
// API key middleware
function apiKeyAuth(req, res, next) {
const apiKey = req.headers['x-api-key'];
if (!apiKey) {
return res.status(401).json({ error: 'API key required' });
}
// Constant-time comparison to prevent timing attacks
const validKey = await getApiKey(apiKey);
if (!validKey || !crypto.timingSafeEqual(
Buffer.from(apiKey),
Buffer.from(validKey.key)
)) {
return res.status(401).json({ error: 'Invalid API key' });
}
req.apiClient = validKey.client;
next();
}
// API key generation
function generateApiKey() {
const prefix = 'sk_live_'; // Identifiable prefix
const key = crypto.randomBytes(32).toString('hex');
return prefix + key;
}
// Store hashed keys
async function createApiKey(clientId) {
const key = generateApiKey();
const hash = crypto.createHash('sha256').update(key).digest('hex');
await db.apiKeys.create({
clientId,
keyHash: hash,
keyPrefix: key.substring(0, 12), // For identification
createdAt: new Date()
});
return key; // Only returned once
}
```
### OAuth 2.0 Implementation
```javascript
// OAuth 2.0 token endpoint
app.post('/oauth/token', async (req, res) => {
const { grant_type, client_id, client_secret, code, refresh_token } = req.body;
// Validate client
const client = await validateClient(client_id, client_secret);
if (!client) {
return res.status(401).json({ error: 'invalid_client' });
}
switch (grant_type) {
case 'authorization_code':
return handleAuthorizationCode(req, res, client, code);
case 'refresh_token':
return handleRefreshToken(req, res, client, refresh_token);
case 'client_credentials':
return handleClientCredentials(req, res, client);
default:
return res.status(400).json({ error: 'unsupported_grant_type' });
}
});
// Token response
function generateTokenResponse(user, client, scopes) {
const accessToken = jwt.sign(
{ sub: user.id, client_id: client.id, scopes },
process.env.JWT_SECRET,
{ expiresIn: '15m' }
);
const refreshToken = crypto.randomBytes(64).toString('hex');
return {
access_token: accessToken,
token_type: 'Bearer',
expires_in: 900,
refresh_token: refreshToken,
scope: scopes.join(' ')
};
}
```
## Request Validation
### Schema Validation
```javascript
const Joi = require('joi');
// Define schemas
const schemas = {
createUser: Joi.object({
email: Joi.string().email().required(),
name: Joi.string().min(1).max(100).required(),
age: Joi.number().integer().min(0).max(150)
}),
updateUser: Joi.object({
name: Joi.string().min(1).max(100),
age: Joi.number().integer().min(0).max(150)
}).min(1) // At least one field required
};
// Validation middleware
function validate(schemaName) {
return (req, res, next) => {
const schema = schemas[schemaName];
const { error, value } = schema.validate(req.body, {
abortEarly: false,
stripUnknown: true // Remove unknown fields
});
if (error) {
return res.status(400).json({
error: 'Validation failed',
details: error.details.map(d => ({
field: d.path.join('.'),
message: d.message
}))
});
}
req.validatedBody = value;
next();
};
}
// Usage
app.post('/users', validate('createUser'), createUserHandler);
```
### GraphQL Validation
```javascript
const { ApolloServer } = require('@apollo/server');
const depthLimit = require('graphql-depth-limit');
const { createComplexityLimitRule } = require('graphql-validation-complexity');
const server = new ApolloServer({
typeDefs,
resolvers,
validationRules: [
// Prevent deep queries
depthLimit(5),
// Prevent complex queries
createComplexityLimitRule(1000)
],
plugins: [
// Rate limiting plugin
{
async requestDidStart() {
return {
async didResolveOperation(ctx) {
await checkRateLimit(ctx.request);
}
};
}
}
]
});
```
## Rate Limiting
```javascript
const rateLimit = require('express-rate-limit');
const RedisStore = require('rate-limit-redis');
// Different limits for different endpoints
const rateLimits = {
// Standard API endpoints
standard: rateLimit({
store: new RedisStore({ client: redis }),
windowMs: 60 * 1000, // 1 minute
max: 100,
keyGenerator: (req) => req.apiClient?.id || req.ip,
standardHeaders: true,
legacyHeaders: false
}),
// Authentication endpoints (stricter)
auth: rateLimit({
store: new RedisStore({ client: redis }),
windowMs: 15 * 60 * 1000, // 15 minutes
max: 10,
keyGenerator: (req) => req.ip,
skipSuccessfulRequests: true // Only count failures
}),
// Expensive operations
expensive: rateLimit({
store: new RedisStore({ client: redis }),
windowMs: 60 * 60 * 1000, // 1 hour
max: 10,
keyGenerator: (req) => req.apiClient?.id || req.ip
})
};
// Apply to routes
app.use('/api/', rateLimits.standard);
app.use('/api/auth/', rateLimits.auth);
app.post('/api/export', rateLimits.expensive, exportHandler);
```
## Response Security
```javascript
// Secure response headers
app.use((req, res, next) => {
// No caching for API responses
res.setHeader('Cache-Control', 'no-store');
res.setHeader('Pragma', 'no-cache');
// Prevent MIME sniffing
res.setHeader('X-Content-Type-Options', 'nosniff');
next();
});
// Filter sensitive fields from responses
function sanitizeResponse(data, allowedFields) {
if (Array.isArray(data)) {
return data.map(item => sanitizeResponse(item, allowedFields));
}
if (typeof data === 'object' && data !== null) {
return Object.keys(data)
.filter(key => allowedFields.includes(key))
.reduce((obj, key) => {
obj[key] = data[key];
return obj;
}, {});
}
return data;
}
// Usage
app.get('/api/users/:id', async (req, res) => {
const user = await User.findById(req.params.id);
const safeUser = sanitizeResponse(user, ['id', 'name', 'email', 'createdAt']);
res.json(safeUser);
});
```
## Error Handling
```javascript
// Secure error handler
app.use((err, req, res, next) => {
// Log full error internally
logger.error('API Error', {
error: err.message,
stack: err.stack,
path: req.path,
method: req.method,
clientId: req.apiClient?.id
});
// Return safe error to client
const statusCode = err.statusCode || 500;
const response = {
error: {
code: err.code || 'INTERNAL_ERROR',
message: statusCode === 500
? 'An internal error occurred'
: err.message
}
};
// Include request ID for support
response.error.requestId = req.id;
res.status(statusCode).json(response);
});
```
## Best Practices
1. **Always Use HTTPS**: Never transmit credentials over HTTP
2. **Validate All Input**: Schema validation on every endpoint
3. **Rate Limit Everything**: Protect against abuse
4. **Version Your API**: `/v1/`, `/v2/` for breaking changes
5. **Use Standard Auth**: OAuth 2.0 for third-party access
6. **Log Security Events**: Monitor for anomalies
7. **Don't Expose Stack Traces**: Generic error messages
8. **Implement Pagination**: Prevent data dumps
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.