insecure-design
This skill should be used when the user asks to "check for design flaws", "analyze security design", "find insecure design patterns", "review threat model", "check business logic security", "find missing security controls", or mentions "insecure design" in a security context. Maps to OWASP Top 10 2021 A04:2021 - Insecure Design.
What this skill does
# Insecure Design Analysis (OWASP A04:2021)
Analyze application architecture and code for missing or ineffective security
controls that result from absent threat modeling, insufficient security
requirements, or failure to use secure design patterns. This is the most
subjective OWASP category -- automated scanners provide minimal coverage, so
Claude's architectural reasoning is the primary value.
## Supported Flags
Read `../../shared/schemas/flags.md` for the full flag specification. This skill
supports all cross-cutting flags. Key behaviors:
| Flag | Insecure Design-Specific Behavior |
|------|------------------------------------|
| `--scope` | Default `changed`. Broader scopes (`branch`, `full`) are strongly recommended since design flaws are architectural. |
| `--depth quick` | Check for obvious missing controls (rate limiting, CSRF tokens, security headers). Pattern scan only. |
| `--depth standard` | Full code read of scoped files, analyze request flows and business logic for design gaps. |
| `--depth deep` | Standard + map full request lifecycle, identify trust boundaries, analyze defense-in-depth layering across the codebase. |
| `--depth expert` | Deep + threat model construction, attack tree analysis, DREAD scoring per design flaw. |
| `--severity` | Filter output. Insecure design findings span all severity levels. |
| `--fix` | Generate implementation suggestions for missing controls. |
| `--explain` | Especially useful for this category: adds threat modeling context and design rationale. |
## Framework Context
**OWASP A04:2021 - Insecure Design**
Missing or ineffective security controls as a result of missing threat modeling
during design. Unlike implementation bugs (e.g., SQL injection), insecure design
refers to the absence of security controls that should have been designed in from
the start. No amount of perfect implementation can fix a fundamentally insecure
design.
Key concern areas:
- **Missing threat modeling**: No systematic identification of threats during design
- **Insufficient security requirements**: Security not considered in user stories or specs
- **No secure design patterns**: Missing rate limiting, account lockout, CSRF protection
- **Missing defense in depth**: Single layer of security with no backup controls
- **Business logic security gaps**: Exploitable workflows, race conditions in transactions
- **Trust boundary violations**: Client-side enforcement of server-side rules
**STRIDE Mapping**: All categories (Spoofing, Tampering, Repudiation, Information
Disclosure, Denial of Service, Elevation of Privilege)
## Detection Patterns
Read `references/detection-patterns.md` for the full pattern catalog with
language-specific examples, regex heuristics, and false positive guidance.
**Pattern Summary**:
1. Missing rate limiting on sensitive endpoints
2. No CSRF protection on state-changing operations
3. Missing account lockout after failed authentication attempts
4. Absence of input validation layer
5. No security headers middleware
6. Trust-the-client design patterns (client-side-only validation)
## Workflow
### Step 1: Determine Scope
1. Parse `--scope` flag (default: `changed`).
2. Resolve to a concrete file list.
3. For design analysis, prioritize these file categories:
- **HTTP handlers/controllers**: Routes, endpoints, API handlers
- **Authentication flows**: Login, registration, password reset, MFA
- **Middleware/interceptors**: Request processing pipeline configuration
- **Configuration files**: Framework config, security settings, CORS setup
- **Business logic**: Transaction processing, workflows, state machines
- **Client-side validation**: Form validation, input checking in frontend code
4. If scope is narrow (`file:` or `changed`), warn that design analysis benefits
from broader scope and suggest `--scope branch` or `--scope full`.
### Step 2: Check for Scanners
Design flaws have minimal scanner coverage. Check for:
| Scanner | Detect | Design Coverage |
|---------|--------|-----------------|
| semgrep | `which semgrep` | Limited: can detect some missing security headers, CSRF patterns |
For this category, Claude analysis is the primary detection method. Scanners
provide supplementary signal at best. Note in output: "Insecure design analysis
is primarily reasoning-based. Scanner coverage for this category is minimal."
### Step 3: Run Scanners
If semgrep is available, run with rules targeting:
- Missing security headers
- CSRF token absence
- Missing rate limiting decorators/middleware
```
semgrep scan --config auto --json --quiet <target>
```
Filter results to design-relevant rules only. Normalize to findings schema.
### Step 4: Claude Analysis
This is the core of insecure design detection. Read scoped files and evaluate:
1. **Map the application architecture**:
- Identify entry points (routes, API endpoints, event handlers).
- Identify trust boundaries (client/server, service/service, user/admin).
- Map the request processing pipeline (middleware, filters, interceptors).
- Identify business-critical workflows (payments, authentication, authorization).
2. **Evaluate security control presence**:
- Rate limiting: Are sensitive endpoints (login, registration, password reset,
API) protected against abuse?
- CSRF protection: Do state-changing endpoints validate CSRF tokens?
- Account lockout: Do authentication flows implement lockout or progressive delays?
- Input validation: Is there a server-side validation layer, or only client-side?
- Security headers: Is there middleware setting CSP, HSTS, X-Frame-Options, etc.?
- Error handling: Do errors leak implementation details or stack traces?
3. **Analyze trust boundaries**:
- Is server-side validation present for everything validated client-side?
- Are service-to-service calls authenticated and authorized?
- Are admin functions separated from user functions?
- Is there proper tenant isolation in multi-tenant systems?
4. **Evaluate defense in depth**:
- Is there only one layer of security for critical operations?
- If the primary control fails, what is the fallback?
- Are security controls applied consistently across all entry points?
- Are there monitoring and alerting mechanisms for security events?
5. **Assess business logic security**:
- Can workflows be executed out of order?
- Are there race conditions in financial or state-changing operations?
- Can quantity, price, or privilege fields be manipulated client-side?
- Are there proper idempotency controls on critical operations?
At `--depth deep` or `--depth expert`, construct a lightweight threat model:
- List identified assets, threat actors, and attack surfaces.
- Map missing controls to specific threat scenarios.
- Evaluate the overall security posture against the STRIDE model.
### Step 5: Report
Output findings using the format from `../../shared/schemas/findings.md`.
Each finding must include:
- **id**: `DESGN-001`, `DESGN-002`, etc.
- **title**: Concise description of the missing control or design flaw.
- **severity**: Based on exploitability and business impact of the missing control.
- **location**: File(s), line range(s), and architectural component affected.
- **description**: What control is missing and why it matters.
- **impact**: What an attacker can achieve due to the design gap.
- **fix**: Implementation approach for the missing control, with code sketch.
- **references**: CWE, OWASP A04:2021, STRIDE mapping.
Because design findings are inherently more subjective than implementation bugs,
include clear reasoning for each finding. Explain why the control is expected and
what threat it mitigates. Use `confidence: medium` for most design findings unless
the absence is unambiguous (e.g., zero rate limiting on a public login endpoint).
## What to Look For
These are the primary insecure design patterns to detect. Each has detailed
examples and heuristics in `references/detectionRelated 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.