Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

agent-designerAgent 设计师

Agent Skill

agent-designer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

32,011

周安装

1,361

GitHub Stars

公开资料未说明

下载量

11,215
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-designer(Agent 设计师)
来源仓库:https://github.com/alirezarezvani/agent-designer
安装命令:
openclaw skills install agent-designer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agent-designer

简介

多代理系统架构设计工具,支持复杂任务分解。agent-designer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 OpenClaw 中规划代理分工和协作流程。
  • 通过 clawhub 安装,提供结构化和模块化设计能力。
  • 安装前需确认权限范围和维护状态,注意可能涉及配置生成。
  • 建议结合原始 README 了解设计模板和最佳实践。

SKILL.md

name
agent-designer
description
Agent Designer - Multi-Agent System Architecture

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 Conditions: Transient vs permanent failure classification

Fallback Strategies

  • Graceful Degradation: Reduced functionality when systems fail
  • Alternative Approaches: Different methods for same goals
  • Default Responses: Safe fallback behaviors
  • User Communication: Clear failure messaging

Circuit Breakers

  • Failure Detection: Monitoring failure rates and response times
  • State Management: Open, closed, half-open circuit states
  • Recovery Testing: Gradual return to normal operation
  • Cascading Failure Prevention: Protecting upstream systems

Implementation Guidelines

Architecture Decision Process

  1. Requirements Analysis: Understand system goals, constraints, scale
  2. Pattern Selection: Choose appropriate architecture pattern
  3. Agent Design: Define roles, responsibilities, interfaces
  4. Tool Architecture: Design tool schemas and error handling
  5. Communication Design: Select message patterns and protocols
  6. Safety Implementation: Build guardrails and validation
  7. Evaluation Planning: Define success metrics and monitoring
  8. Deployment Strategy: Plan scaling and failure handling

Quality Assurance

  • Testing Strategy: Unit, integration, and system testing approaches
  • Monitoring: Real-time system health and performance tracking
  • Documentation: Architecture documentation and runbooks
  • Security Review: Threat modeling and security assessments

Continuous Improvement

  • Performance Monitoring: Ongoing system performance analysis
  • User Feedback: Incorporating user experience improvements
  • A/B Testing: Controlled experiments for system improvements
  • Knowledge Base Updates: Continuous learning and adaptation

This skill provides the foundation for designing robust, scalable multi-agent systems that can handle complex tasks while maintaining safety, reliability, and performance at scale.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.18%
按下载量换算10,899

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills