design-validation
Validate design documents for completeness, clarity, and feasibility
What this skill does
# Design Validation Skill
Validate design documents to ensure they're complete, clear, and ready for implementation.
## When to Use
This skill should activate when:
- User has created a design document and wants validation
- User says "review this design" or "does this look complete?"
- Before transitioning from design to implementation
- User explicitly invokes: "Validate this design"
**Do NOT activate for:**
- Code review (use code-review plugin instead)
- Implementation debugging
- General questions about designs
## Validation Framework
Check design documents against these criteria:
### 1. Problem/Goal Clarity
**Questions:**
- ✅ Is the problem or opportunity clearly stated?
- ✅ Is the goal specific and measurable?
- ✅ Are success criteria defined?
- ✅ Are non-goals explicitly stated (what we're NOT doing)?
**Red flags:**
- Vague problem statements: "Make things better"
- No measurable success: "Users will like it more"
- Scope creep: No clear boundaries on what's included
**Feedback format:**
```
❌ Issue: Goal is vague
Current: "Improve the onboarding experience"
Better: "Reduce time-to-first-action from 15min to 5min for new users"
```
### 2. Alternative Exploration
**Questions:**
- ✅ Were multiple approaches considered (not just one)?
- ✅ Are approaches truly different (not just variations)?
- ✅ Are pros AND cons listed honestly for each?
- ✅ Are tradeoffs explicit and understood?
**Red flags:**
- Only one approach documented (usually means not enough exploration)
- Pros/cons list is one-sided (pushing toward preferred option)
- Alternatives that are clearly strawmen
- No discussion of tradeoffs
**Feedback format:**
```
⚠️ Concern: Limited alternatives explored
Found: Only one approach documented
Suggestion: Consider at least 2-3 different approaches before deciding
For example: [suggest alternative angles to explore]
```
### 3. Decision Rationale
**Questions:**
- ✅ Is the chosen approach clearly stated?
- ✅ Is there a clear rationale for why it was chosen?
- ✅ Are tradeoffs acknowledged?
- ✅ Does the decision address the stated goal?
**Red flags:**
- "We chose X because it's better" (vague)
- No mention of what was traded away
- Decision seems disconnected from goal
- No consideration of risks
**Feedback format:**
```
✅ Strong rationale
The decision to use Approach B (chunked uploads) is well-justified:
- Directly addresses the large file problem
- Tradeoffs (complexity) are acknowledged
- Mitigation (use queue library) is specified
```
### 4. Feasibility & Risks
**Questions:**
- ✅ Are technical/practical constraints acknowledged?
- ✅ Are risks identified?
- ✅ Are mitigations proposed for key risks?
- ✅ Is the scope realistic?
**Red flags:**
- No mention of technical constraints
- Overly optimistic (no risks identified)
- No mitigation strategies
- Scope seems unrealistic
**Feedback format:**
```
⚠️ Risk not addressed: Scalability
The design doesn't discuss how this will scale beyond 1000 concurrent users
Suggestion: Add section on scaling strategy or acknowledge as future work
```
### 5. Implementation Clarity
**Questions:**
- ✅ Are next steps actionable and specific?
- ✅ Is there enough detail to start implementing?
- ✅ Are dependencies and prerequisites clear?
- ✅ Is the implementation sequencing logical?
**Red flags:**
- Next steps too vague: "Implement the solution"
- Missing key details needed to build
- No clear starting point
- Dependencies not identified
**Feedback format:**
```
❌ Issue: Next steps too vague
Current: "1. Build the feature 2. Test it 3. Deploy"
Better:
1. Create upload endpoint with chunking support
2. Implement chunk storage and assembly
3. Add resumable upload tracking
4. Write integration tests for multi-chunk uploads
5. Deploy to staging for validation
```
### 6. Completeness
**Questions:**
- ✅ Does it cover all key aspects for this domain?
- ✅ Are edge cases considered?
- ✅ Is error handling mentioned?
- ✅ Are success metrics defined?
**Domain-specific considerations:**
**Software:**
- Architecture/tech stack
- Data models
- Error handling
- Performance expectations
- Testing strategy
- Deployment approach
**Product:**
- User experience
- Feature scope
- Success metrics
- Launch plan
- Feedback loops
**Business:**
- Market approach
- Financial model
- Resource needs
- Timeline
- Success metrics
- Risks & contingencies
**Content/Creative:**
- Target audience
- Key message
- Format/medium
- Distribution
- Success metrics
## Validation Process
### Step 1: Read Document Completely
- Don't start validating until you've read the whole thing
- Understand the domain and context
- Note the format and level of detail
### Step 2: Apply Validation Framework
Go through each criterion:
1. Problem/Goal Clarity
2. Alternative Exploration
3. Decision Rationale
4. Feasibility & Risks
5. Implementation Clarity
6. Completeness
### Step 3: Generate Feedback
**Structure your feedback:**
```markdown
# Design Validation: [Document Title]
## Summary
[Overall assessment: Strong/Good/Needs Work]
## Strengths
- What's done well
- What's particularly clear or thorough
## Issues Found
### Critical (Must Address)
- ❌ Issue 1: [Description]
- Why it matters: [Impact]
- Suggestion: [How to fix]
### Important (Should Address)
- ⚠️ Concern 1: [Description]
- Suggestion: [How to improve]
### Nice to Have (Optional)
- 💡 Enhancement 1: [Description]
- Benefit: [Why this would help]
## Validation Checklist
- [✅/❌] Problem clearly defined
- [✅/❌] Multiple alternatives explored
- [✅/❌] Decision rationale clear
- [✅/❌] Risks identified
- [✅/❌] Next steps actionable
- [✅/❌] Success metrics defined
## Recommendation
[Ready to implement / Needs revision / Major gaps]
## Next Steps
[What to do with this feedback]
```
### Step 4: Be Constructive
**Do:**
- Point out strengths, not just problems
- Explain WHY something matters
- Provide specific suggestions for improvement
- Acknowledge good thinking
- Differentiate critical from nice-to-have
**Don't:**
- Just criticize without suggestions
- Rewrite their entire design
- Impose your preferred approach
- Nitpick formatting or style
- Demand perfection
## Example Validations
### Example 1: Good Design (Software)
```markdown
# Design Validation: Notification System
## Summary
**Strong design** - Well thought through with clear rationale
## Strengths
- Three distinct approaches explored (push, digest, adaptive)
- Honest tradeoffs documented for each
- Clear decision rationale: "Start with digest for MVP, add push later"
- Phased approach acknowledges complexity constraints
- Success metrics defined (open rate, engagement time)
## Issues Found
### Important (Should Address)
- ⚠️ Concern: Error handling not discussed
- What happens if digest generation fails?
- Suggestion: Add section on retry logic and fallback strategies
### Nice to Have (Optional)
- 💡 Enhancement: Consider user preferences
- Some users might want both digest AND push for urgent items
- Benefit: Higher user satisfaction, lower unsubscribe rate
## Validation Checklist
- [✅] Problem clearly defined ("Users miss important updates")
- [✅] Multiple alternatives explored (3 approaches)
- [✅] Decision rationale clear
- [⚠️] Risks partially identified (scalability yes, errors no)
- [✅] Next steps actionable
- [✅] Success metrics defined
## Recommendation
**Ready to implement** with minor additions
## Next Steps
1. Add error handling section (15 min)
2. Consider user preference controls (optional, future phase)
3. Proceed with implementation plan
```
### Example 2: Needs Work (Product)
```markdown
# Design Validation: Coffee Shop Layout
## Summary
**Needs revision** - Good starting point but missing key details
## Strengths
- Problem clearly stated (maximize revenue per sqft)
- Three layout approaches considered
- Real-world examples provided
## Issues Found
### Critical (Must Address)
- ❌ Issue: No decision made
- Doc explores three options but doesn't choose one
-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.