Status: ✅ Status: Current - Context patterns for framework integration and tool coordination.
Context Integration Guide: Patterns for using SuperClaude commands effectively with different frameworks and tools. Remember: SuperClaude provides context to Claude Code - all actual work is done by Claude.
Purpose: Effective patterns for using SuperClaude context with various development frameworks and tools.
What This Is: Command combinations and flag patterns that work well for specific technologies What This Isn't: Performance optimization or parallel execution (no code runs)
Key Principle: SuperClaude tells Claude Code WHAT to do and HOW to think about it. Claude Code does the actual work.
# React development with appropriate context
/sc:implement "React 18 application with TypeScript" --c7
# Context7 MCP can provide React documentation if available
# Magic MCP can help with UI components if configured
# What Actually Happens:
# 1. Claude reads implement.md for implementation patterns
# 2. --c7 flag suggests using Context7 MCP for documentation
# 3. Claude generates React code based on these contexts
# Component development pattern
@agent-frontend-architect "design component architecture"
/sc:implement "reusable component library"
# Testing pattern for React
/sc:test --focus react
# Claude will suggest React Testing Library patterns# Node.js backend development patterns
/sc:implement "Express.js API with TypeScript" --c7
# Claude will create Express API following Node.js patterns
# What This Means:
# - Claude reads context about backend patterns
# - Suggests appropriate middleware and structure
# - NOT running or optimizing any code
# Database integration pattern
/sc:implement "database models with Prisma"
@agent-backend-architect "review database schema"
# API testing pattern
/sc:test --focus api
# Claude suggests API testing approaches# Python web development
/sc:implement "FastAPI application" --c7
@agent-python-expert "review implementation"
# What Happens:
# - Claude uses Python-specific context
# - Follows FastAPI patterns from context
# - Generates code (doesn't run it)
# Data science context
/sc:implement "data analysis pipeline"
@agent-python-expert "optimize pandas operations"
# Claude provides optimization suggestions (not actual optimization)
# Testing patterns
/sc:test --focus python
# Claude suggests pytest patterns# Full-stack application pattern
/sc:brainstorm "full-stack application architecture"
@agent-system-architect "design system components"
# Frontend implementation
/sc:implement "React frontend with TypeScript"
@agent-frontend-architect "review component structure"
# Backend implementation
/sc:implement "Node.js API with authentication"
@agent-backend-architect "review API design"
# Integration
/sc:implement "connect frontend to backend API"# Context7 for documentation
/sc:explain "React hooks" --c7
# If Context7 is configured, it may fetch React docs
# Sequential for complex reasoning
/sc:troubleshoot "complex bug" --seq
# Sequential MCP helps with structured problem-solving
# Magic for UI components
/sc:implement "UI components" --magic
# Magic MCP can help generate modern UI patterns
# No MCP for simple tasks
/sc:implement "utility function" --no-mcp
# Uses only Claude's built-in knowledge# Security-focused development
@agent-security "review authentication requirements"
/sc:implement "secure authentication system"
/sc:analyze --focus security
# Quality-focused workflow
/sc:implement "new feature"
@agent-quality-engineer "review code quality"
/sc:test --focus quality
# Architecture-focused approach
@agent-system-architect "design microservices"
/sc:design "service boundaries"
/sc:implement "service communication"# Step 1: Design
/sc:design "REST API structure"
# Step 2: Implementation
/sc:implement "API endpoints with validation"
# Step 3: Documentation
/sc:document --type api
# Step 4: Testing
/sc:test --focus api# Schema design
@agent-backend-architect "design database schema"
# Model implementation
/sc:implement "database models"
# Migration creation
/sc:implement "database migrations"
# Query optimization suggestions
@agent-backend-architect "suggest query optimizations"
# Note: Claude suggests optimizations, doesn't actually optimize# Test planning
/sc:design "testing strategy"
# Unit tests
/sc:test --type unit
# Integration tests
/sc:test --type integration
# E2E test suggestions
/sc:test --type e2e
# Claude provides test code, not execution# Project setup guidance
/sc:implement "React TypeScript project structure"
# Component development
/sc:implement "TypeScript React components with props validation"
# State management
@agent-frontend-architect "recommend state management approach"
/sc:implement "state management with Zustand/Redux"
# Testing
/sc:test --focus react --type unit# API structure
/sc:implement "FastAPI project structure"
# Endpoint development
@agent-python-expert "implement async endpoints"
# Database integration
/sc:implement "SQLAlchemy models with Alembic"
# Testing
/sc:test --focus python --type integration# Architecture design
@agent-system-architect "design microservices architecture"
# Service implementation
/sc:implement "user service with Express"
/sc:implement "auth service with JWT"
# Inter-service communication
/sc:implement "service communication patterns"
# Testing approach
/sc:test --focus microservices# Problem analysis
/sc:troubleshoot "describe the issue"
# Root cause investigation
@agent-root-cause-analyst "analyze symptoms"
# Solution implementation
/sc:implement "fix based on analysis"
# Verification
/sc:test --validate# Code analysis
/sc:analyze code/ --focus quality
# Security review
@agent-security "review for vulnerabilities"
# Performance review
@agent-performance-engineer "suggest improvements"
# Note: Suggestions only, no actual performance measurement
# Implementation of improvements
/sc:improve code/ --fix- ✅ Provide structured approaches to development tasks
- ✅ Combine commands and agents effectively
- ✅ Suggest appropriate tools and frameworks
- ✅ Guide Claude to generate better code
- ❌ Execute code or measure performance
- ❌ Run tests or deploy applications
- ❌ Optimize actual execution speed
- ❌ Provide real monitoring or metrics
- ❌ Coordinate parallel processes (everything is sequential text)
- Start with context: Use
/sc:loadto establish project understanding - Layer expertise: Combine general commands with specific agents
- Focus appropriately: Use
--focusflags for targeted results - Manage scope: Work on specific modules rather than entire codebases
- Document decisions: Use
/sc:saveto create summaries
- Simple tasks: Use basic commands without MCP
- Complex tasks: Add appropriate agents and MCP servers
- Security-critical: Always include
@agent-security - UI development: Consider
--magicflag if configured - Documentation needs: Use
--c7for framework docs
These integration patterns show how to combine SuperClaude commands, agents, and flags effectively for different development scenarios. Remember that all patterns are about providing better context to Claude Code - the actual code generation, not execution, is what Claude does based on these contexts.