agent-designer

13
0
Source

Agent Designer - Multi-Agent System Architecture

Install

mkdir -p .claude/skills/agent-designer && curl -L -o skill.zip "https://mcp.directory/api/skills/download/2105" && unzip -o skill.zip -d .claude/skills/agent-designer && rm skill.zip

Installs to .claude/skills/agent-designer

About this skill

Agent Designer - Multi-Agent System Architecture

Tier: POWERFUL
Category: Engineering
Tags: AI agents, architecture, system design, orchestration, multi-agent systems

Overview

Agent Designer is a comprehensive toolkit for designing, architecting, and evaluating multi-agent systems. It provides structured approaches to agent architecture patterns, tool design principles, communication strategies, and performance evaluation frameworks for building robust, scalable AI agent systems.

Core Capabilities

1. Agent Architecture Patterns

Single Agent Pattern

  • Use Case: Simple, focused tasks with clear boundaries
  • Pros: Minimal complexity, easy debugging, predictable behavior
  • Cons: Limited scalability, single point of failure
  • Implementation: Direct user-agent interaction with comprehensive tool access

Supervisor Pattern

  • Use Case: Hierarchical task decomposition with centralized control
  • Architecture: One supervisor agent coordinating multiple specialist agents
  • Pros: Clear command structure, centralized decision making
  • Cons: Supervisor bottleneck, complex coordination logic
  • Implementation: Supervisor receives tasks, delegates to specialists, aggregates results

Swarm Pattern

  • Use Case: Distributed problem solving with peer-to-peer collaboration
  • Architecture: Multiple autonomous agents with shared objectives
  • Pros: High parallelism, fault tolerance, emergent intelligence
  • Cons: Complex coordination, potential conflicts, harder to predict
  • Implementation: Agent discovery, consensus mechanisms, distributed task allocation

Hierarchical Pattern

  • Use Case: Complex systems with multiple organizational layers
  • Architecture: Tree structure with managers and workers at different levels
  • Pros: Natural organizational mapping, clear responsibilities
  • Cons: Communication overhead, potential bottlenecks at each level
  • Implementation: Multi-level delegation with feedback loops

Pipeline Pattern

  • Use Case: Sequential processing with specialized stages
  • Architecture: Agents arranged in processing pipeline
  • Pros: Clear data flow, specialized optimization per stage
  • Cons: Sequential bottlenecks, rigid processing order
  • Implementation: Message queues between stages, state handoffs

2. Agent Role Definition

Role Specification Framework

  • Identity: Name, purpose statement, core competencies
  • Responsibilities: Primary tasks, decision boundaries, success criteria
  • Capabilities: Required tools, knowledge domains, processing limits
  • Interfaces: Input/output formats, communication protocols
  • Constraints: Security boundaries, resource limits, operational guidelines

Common Agent Archetypes

Coordinator Agent

  • Orchestrates multi-agent workflows
  • Makes high-level decisions and resource allocation
  • Monitors system health and performance
  • Handles escalations and conflict resolution

Specialist Agent

  • Deep expertise in specific domain (code, data, research)
  • Optimized tools and knowledge for specialized tasks
  • High-quality output within narrow scope
  • Clear handoff protocols for out-of-scope requests

Interface Agent

  • Handles external interactions (users, APIs, systems)
  • Protocol translation and format conversion
  • Authentication and authorization management
  • User experience optimization

Monitor Agent

  • System health monitoring and alerting
  • Performance metrics collection and analysis
  • Anomaly detection and reporting
  • Compliance and audit trail maintenance

3. Tool Design Principles

Schema Design

  • Input Validation: Strong typing, required vs optional parameters
  • Output Consistency: Standardized response formats, error handling
  • Documentation: Clear descriptions, usage examples, edge cases
  • Versioning: Backward compatibility, migration paths

Error Handling Patterns

  • Graceful Degradation: Partial functionality when dependencies fail
  • Retry Logic: Exponential backoff, circuit breakers, max attempts
  • Error Propagation: Structured error responses, error classification
  • Recovery Strategies: Fallback methods, alternative approaches

Idempotency Requirements

  • Safe Operations: Read operations with no side effects
  • Idempotent Writes: Same operation can be safely repeated
  • State Management: Version tracking, conflict resolution
  • Atomicity: All-or-nothing operation completion

4. Communication Patterns

Message Passing

  • Asynchronous Messaging: Decoupled agents, message queues
  • Message Format: Structured payloads with metadata
  • Delivery Guarantees: At-least-once, exactly-once semantics
  • Routing: Direct messaging, publish-subscribe, broadcast

Shared State

  • State Stores: Centralized data repositories
  • Consistency Models: Strong, eventual, weak consistency
  • Access Patterns: Read-heavy, write-heavy, mixed workloads
  • Conflict Resolution: Last-writer-wins, merge strategies

Event-Driven Architecture

  • Event Sourcing: Immutable event logs, state reconstruction
  • Event Types: Domain events, system events, integration events
  • Event Processing: Real-time, batch, stream processing
  • Event Schema: Versioned event formats, backward compatibility

5. Guardrails and Safety

Input Validation

  • Schema Enforcement: Required fields, type checking, format validation
  • Content Filtering: Harmful content detection, PII scrubbing
  • Rate Limiting: Request throttling, resource quotas
  • Authentication: Identity verification, authorization checks

Output Filtering

  • Content Moderation: Harmful content removal, quality checks
  • Consistency Validation: Logic checks, constraint verification
  • Formatting: Standardized output formats, clean presentation
  • Audit Logging: Decision trails, compliance records

Human-in-the-Loop

  • Approval Workflows: Critical decision checkpoints
  • Escalation Triggers: Confidence thresholds, risk assessment
  • Override Mechanisms: Human judgment precedence
  • Feedback Loops: Human corrections improve system behavior

6. Evaluation Frameworks

Task Completion Metrics

  • Success Rate: Percentage of tasks completed successfully
  • Partial Completion: Progress measurement for complex tasks
  • Task Classification: Success criteria by task type
  • Failure Analysis: Root cause identification and categorization

Quality Assessment

  • Output Quality: Accuracy, relevance, completeness measures
  • Consistency: Response variability across similar inputs
  • Coherence: Logical flow and internal consistency
  • User Satisfaction: Feedback scores, usage patterns

Cost Analysis

  • Token Usage: Input/output token consumption per task
  • API Costs: External service usage and charges
  • Compute Resources: CPU, memory, storage utilization
  • Time-to-Value: Cost per successful task completion

Latency Distribution

  • Response Time: End-to-end task completion time
  • Processing Stages: Bottleneck identification per stage
  • Queue Times: Wait times in processing pipelines
  • Resource Contention: Impact of concurrent operations

7. Orchestration Strategies

Centralized Orchestration

  • Workflow Engine: Central coordinator manages all agents
  • State Management: Centralized workflow state tracking
  • Decision Logic: Complex routing and branching rules
  • Monitoring: Comprehensive visibility into all operations

Decentralized Orchestration

  • Peer-to-Peer: Agents coordinate directly with each other
  • Service Discovery: Dynamic agent registration and lookup
  • Consensus Protocols: Distributed decision making
  • Fault Tolerance: No single point of failure

Hybrid Approaches

  • Domain Boundaries: Centralized within domains, federated across
  • Hierarchical Coordination: Multiple orchestration levels
  • Context-Dependent: Strategy selection based on task type
  • Load Balancing: Distribute coordination responsibility

8. Memory Patterns

Short-Term Memory

  • Context Windows: Working memory for current tasks
  • Session State: Temporary data for ongoing interactions
  • Cache Management: Performance optimization strategies
  • Memory Pressure: Handling capacity constraints

Long-Term Memory

  • Persistent Storage: Durable data across sessions
  • Knowledge Base: Accumulated domain knowledge
  • Experience Replay: Learning from past interactions
  • Memory Consolidation: Transferring from short to long-term

Shared Memory

  • Collaborative Knowledge: Shared learning across agents
  • Synchronization: Consistency maintenance strategies
  • Access Control: Permission-based memory access
  • Memory Partitioning: Isolation between agent groups

9. Scaling Considerations

Horizontal Scaling

  • Agent Replication: Multiple instances of same agent type
  • Load Distribution: Request routing across agent instances
  • Resource Pooling: Shared compute and storage resources
  • Geographic Distribution: Multi-region deployments

Vertical Scaling

  • Capability Enhancement: More powerful individual agents
  • Tool Expansion: Broader tool access per agent
  • Context Expansion: Larger working memory capacity
  • Processing Power: Higher throughput per agent

Performance Optimization

  • Caching Strategies: Response caching, tool result caching
  • Parallel Processing: Concurrent task execution
  • Resource Optimization: Efficient resource utilization
  • Bottleneck Elimination: Systematic performance tuning

10. Failure Handling

Retry Mechanisms

  • Exponential Backoff: Increasing delays between retries
  • Jitter: Random delay variation to prevent thundering herd
  • Maximum Attempts: Bounded retry behavior
  • **Retry C

Content truncated.

senior-architect

alirezarezvani

Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. Includes architecture diagram generation, system design patterns, tech stack decision frameworks, and dependency analysis. Use when designing system architecture, making technical decisions, creating architecture diagrams, evaluating trade-offs, or defining integration patterns.

170129

content-creator

alirezarezvani

Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.

11619

cold-email

alirezarezvani

When the user wants to write, improve, or build a sequence of B2B cold outreach emails to prospects who haven't asked to hear from them. Use when the user mentions 'cold email,' 'cold outreach,' 'prospecting emails,' 'SDR emails,' 'sales emails,' 'first touch email,' 'follow-up sequence,' or 'email prospecting.' Also use when they share an email draft that sounds too sales-y and needs to be humanized. Distinct from email-sequence (lifecycle/nurture to opted-in subscribers) — this is unsolicited outreach to new prospects. NOT for lifecycle emails, newsletters, or drip campaigns (use email-sequence).

3713

content-trend-researcher

alirezarezvani

Advanced content and topic research skill that analyzes trends across Google Analytics, Google Trends, Substack, Medium, Reddit, LinkedIn, X, blogs, podcasts, and YouTube to generate data-driven article outlines based on user intent analysis

10913

ceo-advisor

alirezarezvani

Executive leadership guidance for strategic decision-making, organizational development, and stakeholder management. Includes strategy analyzer, financial scenario modeling, board governance frameworks, and investor relations playbooks. Use when planning strategy, preparing board presentations, managing investors, developing organizational culture, making executive decisions, or when user mentions CEO, strategic planning, board meetings, investor updates, organizational leadership, or executive strategy.

8413

content-humanizer

alirezarezvani

Makes AI-generated content sound genuinely human — not just cleaned up, but alive. Use when content feels robotic, uses too many AI clichés, lacks personality, or reads like it was written by committee. Triggers: 'this sounds like AI', 'make it more human', 'add personality', 'it feels generic', 'sounds robotic', 'fix AI writing', 'inject our voice'. NOT for initial content creation (use content-production). NOT for SEO optimization (use content-production Mode 3).

359

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318398

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

451339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.