agent-orchestration-multi-agent-optimize
通过协调分析、工作负载分配和成本感知编排来优化多代理系统。在提高代理性能、吞吐量或可靠性时使用。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install agent-orchestration-multi-agent-optimize或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install agent-orchestration-multi-agent-optimize⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/agent-orchestration-multi-agent-optimize/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: agent-orchestration-multi-agent-optimize description: "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability." ---
The Multi-Agent Optimization Tool is an advanced AI-driven framework designed to holistically improve system performance through intelligent, coordinated agent-based optimization. Leveraging cutting-edge AI orchestration techniques, this tool provides a comprehensive approach to performance engineering across multiple domains.
The tool processes optimization arguments with flexible input parameters:
$TARGET: Primary system/application to optimize$PERFORMANCE_GOALS: Specific performance metrics and objectives$OPTIMIZATION_SCOPE: Depth of optimization (quick-win, comprehensive)$BUDGET_CONSTRAINTS: Cost and resource limitations$QUALITY_METRICS: Performance quality thresholds- Query execution time analysis - Index utilization tracking - Resource consumption monitoring
- CPU and memory profiling - Algorithmic complexity assessment - Concurrency and async operation analysis
- Rendering performance metrics - Network request optimization - Core Web Vitals monitoring
def multi_agent_profiler(target_system):
agents = [
DatabasePerformanceAgent(target_system),
ApplicationPerformanceAgent(target_system),
FrontendPerformanceAgent(target_system)
]
performance_profile = {}
for agent in agents:
performance_profile[agent.__class__.__name__] = agent.profile()
return aggregate_performance_metrics(performance_profile)
def compress_context(context, max_tokens=4000):
# Semantic compression using embedding-based truncation
compressed_context = semantic_truncate(
context,
max_tokens=max_tokens,
importance_threshold=0.7
)
return compressed_context
class MultiAgentOrchestrator:
def __init__(self, agents):
self.agents = agents
self.execution_queue = PriorityQueue()
self.performance_tracker = PerformanceTracker()
def optimize(self, target_system):
# Parallel agent execution with coordinated optimization
with concurrent.futures.ThreadPoolExecutor() as executor:
futures = {
executor.submit(agent.optimize, target_system): agent
for agent in self.agents
}
for future in concurrent.futures.as_completed(futures):
agent = futures[future]
result = future.result()
self.performance_tracker.log(agent, result)
class CostOptimizer:
def __init__(self):
self.token_budget = 100000 # Monthly budget
self.token_usage = 0
self.model_costs = {
'gpt-5': 0.03,
'claude-4-sonnet': 0.015,
'claude-4-haiku': 0.0025
}
def select_optimal_model(self, complexity):
# Dynamic model selection based on task complexity and budget
pass
Target Optimization: $ARGUMENTS
安装 代理编排多代理优化 后,可以对 AI 说这些话来触发它
Help me get started with Agent Orchestration Multi Agent Optimize
Explains what Agent Orchestration Multi Agent Optimize does, walks through the setup, and runs a quick demo based on your current project
Use Agent Orchestration Multi Agent Optimize to optimize multi-agent systems with coordinated profiling, workload d...
Invokes Agent Orchestration Multi Agent Optimize with the right parameters and returns the result directly in the conversation
What can I do with Agent Orchestration Multi Agent Optimize in my ai agent & automation workflow?
Lists the top use cases for Agent Orchestration Multi Agent Optimize, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/agent-orchestration-multi-agent-optimize/ 目录(个人级,所有项目可用),或 .claude/skills/agent-orchestration-multi-agent-optimize/(项目级)。重启 AI 客户端后,用 /agent-orchestration-multi-agent-optimize 主动调用,或让 AI 根据上下文自动发现并使用。
代理编排多代理优化 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
代理编排多代理优化 可免费安装使用。请查阅仓库了解许可证信息。
通过协调分析、工作负载分配和成本感知编排来优化多代理系统。在提高代理性能、吞吐量或可靠性时使用。
代理编排多代理优化 属于「AI Agent & Automation」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my ai agent & automation tasks using Agent Orchestration Multi Agent Optimize
Identifies repetitive steps in your workflow and sets up Agent Orchestration Multi Agent Optimize to handle them automatically