multiplayer-design
Multiplayer game design across cooperative, competitive, asymmetric, social, and asynchronous modes. Matchmaking algorithms, ranked ladder design, anti-toxicity systems, shared economies, team composition, spectator readability, and community health. Use when designing PvP or co-op modes, building matchmaking or ranking systems, designing guilds or social features, planning shared economies or trading, evaluating spectator clarity, handling toxicity as a design problem, designing asynchronous competition, or when players say 'matchmaking is unfair' or 'the community is toxic.' This is the design skill for multiplayer systems — for networking implementation, use engineering resources instead.
What this skill does
# Multiplayer Design **Purpose:** Systematic tools for designing multiplayer experiences — how players interact with each other across cooperative, competitive, social, and asynchronous contexts. Multiplayer is not a feature you bolt on; it is a fundamental mode of play that reshapes every other system in the game. **Core philosophy:** Multiplayer design is social systems design. Every mechanic is a social signal. If your game rewards griefing, you designed griefing. If your matchmaking frustrates new players, you designed frustration. Player behavior is downstream of system design — treat toxicity, skill gaps, and social dynamics as design problems, not moderation problems. --- ## When to Activate Use this skill when: - Designing PvP modes, competitive ladders, or ranked systems - Building cooperative gameplay (co-op campaigns, raids, team challenges) - Designing asymmetric multiplayer (1v4, different role types) - Planning social features (guilds, clans, chat, social spaces) - Building matchmaking systems or evaluating match quality - Designing shared economies, trading, or auction houses - Planning asynchronous multiplayer (leaderboards, ghost data, base defense) - Evaluating spectator or esports readability - Addressing toxicity, griefing, or community health concerns - Players say "matchmaking is unfair," "I can't play with my friends," or "the community is toxic" - Adding multiplayer to an originally single-player design --- ## Core Framework: Multiplayer Mode Spectrum Every multiplayer game sits somewhere on this spectrum. Most games blend multiple modes. Understanding which modes you're designing for determines your social dynamics, balance challenges, and infrastructure requirements. | Mode | Structure | Social Dynamic | Key Design Challenge | Example Patterns | |------|-----------|---------------|---------------------|-----------------| | **Cooperative PvE** | Players share goals against environment | Mutual support, complementary roles | Skill gap management, difficulty scaling | Raids, co-op campaigns, horde modes | | **Competitive PvP** | Direct opposition between players/teams | Rivalry, skill comparison, status | Fair matchmaking, comeback potential | Arenas, ranked ladders, tournaments | | **Asymmetric** | Different roles with different power/information | Tension between unequal forces | Balancing fundamentally different experiences | 1v4 horror, commander vs. squad | | **Social/Parallel** | Shared space, indirect interaction | Community, belonging, social presence | Meaningful interaction without forced engagement | MMO hubs, social games, shared worlds | | **Asynchronous** | Not playing at the same time | Competition through persistence | Engagement without real-time presence | Ghost races, leaderboards, base defense | ### Mode Selection Diagnostic When choosing multiplayer modes, evaluate: 1. **Session structure** — Do your players have aligned schedules? (Async solves this) 2. **Skill variance** — How wide is your skill distribution? (Co-op tolerates wider variance than PvP) 3. **Social goals** — Are you building community or competition? (Shapes every downstream decision) 4. **Population size** — Can you sustain queue populations? (Fewer modes = healthier queues) 5. **Core loop fit** — Does multiplayer enhance or compete with your core loop? --- ## Competitive Balance Competitive multiplayer balance is fundamentally different from single-player balance. In single-player, you balance the player against the designer's content. In multiplayer, you balance players against each other — and player behavior is unpredictable, adaptive, and emotionally charged. ### Skill-Based Matchmaking (SBMM) Rating systems estimate player skill to create fair matches. The core trade-off is always **accuracy vs. queue time** — tighter skill bands mean better matches but longer waits. | System | Approach | Strengths | Limitations | |--------|---------|-----------|-------------| | **Elo** | Zero-sum rating transfer between opponents | Simple, well-understood, proven in 1v1 | Poor for team games, slow convergence | | **Glicko / Glicko-2** | Adds rating deviation (confidence interval) | Handles inactivity, faster convergence for uncertain ratings | More complex, still 1v1-oriented | | **TrueSkill** | Bayesian inference for team games | Handles teams, partial ranking, multiple players | Proprietary, computationally heavier | | **Custom MMR** | Hybrid approaches tuned to your game | Can incorporate game-specific signals (damage, objectives) | Requires data and iteration to tune | **Rating system design principles:** - New players need high uncertainty — let ratings converge fast through placement matches - Performance metrics beyond win/loss can improve convergence but risk incentivizing stat-padding over winning - Display rank and internal MMR should be separate systems — display rank is a reward system, MMR is a matchmaking tool - Rating decay for inactive players prevents stale ratings from creating mismatches on return ### Ranked vs. Unranked Design | Aspect | Ranked | Unranked | |--------|--------|----------| | **Purpose** | Competitive progression, status | Practice, fun, low-stakes experimentation | | **Matchmaking** | Tight skill bands, longer queues acceptable | Looser matching, faster queues | | **Stakes** | Visible rating changes, seasonal rewards | No persistent consequences | | **Social** | May restrict party size or skill range | Open grouping encouraged | | **Role** | Destination for competitive players | Onramp and pressure valve | Both queues should use SBMM. The difference is visibility and stakes, not matching quality. Unranked without SBMM creates miserable experiences for new and low-skill players. ### Anti-Snowball Mechanics Snowballing — where an early advantage compounds into an insurmountable lead — is the most common competitive design failure. Some snowball is necessary (advantages should matter), but unchecked snowball produces matches that are effectively decided in the first minutes. **Snowball mitigation techniques:** - **Comeback mechanics** — Trailing team gets increased resources, shorter respawns, or objective bonuses - **Rubber-banding** — Scaling advantages inversely with lead size - **Objective resets** — New phases that partially reset positional advantage - **Resource caps** — Prevent infinite accumulation of advantage - **Risk/reward scaling** — Leading team must take increasing risks to close out **Diagnostic:** If more than 30% of matches feel "decided early," you have a snowball problem. Track surrender rates, early disconnects, and score differentials over time. ### Spectator and Esports Readability If you intend competitive play to be watchable, design for the observer: - **Visual clarity** — Can a spectator tell which team is winning at a glance? - **Momentum signals** — Are swings in advantage visible and dramatic? - **Information parity** — Does the spectator have enough context to understand decisions? - **Narrative potential** — Do matches produce stories (comebacks, clutch plays, upsets)? - **Broadcast tools** — Overhead views, player cams, stat overlays, replay controls ### Seasonal and Ladder Design - **Season length** — 2-3 months is typical; shorter creates grind pressure, longer creates stagnation - **Reset depth** — Full reset punishes returning players; soft reset (compress toward mean) is standard - **Rewards** — Seasonal exclusive rewards drive participation but must not create FOMO toxicity - **Placement matches** — 5-10 matches with high uncertainty to rapidly locate returning players - **Rank floors** — Prevent deranking past certain thresholds to reduce ranked anxiety --- ## Cooperative Design Cooperation only feels good when each player's contribution is visible and necessary. If one player can carry the entire team, the others are spectators. If individual contribution is invisible, the team bond weakens. ### Complementary Role Design Effective co-op giv
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.