agent-designer

Design multi-agent architectures, generate tool schemas, and evaluate agent execution logs.

Updated Aug 14, 2026
One-click install
npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill agent-designer-rohithdgrr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agent-designer
Source: https://github.com/Rohithdgrr/REEK-uninstaller/tree/main/.opencode/skills/agent-designer
Command: npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill agent-designer-rohithdgrr

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve? Choosing the right multi-agent architecture, writing valid tool schemas, and diagnosing agent system bottlenecks are error-prone when done by hand. This Skill replaces guesswork with three deterministic scripts that score architecture patterns from requirements, validate tool schemas for Anthropic and OpenAI formats, and analyze execution logs for cost, latency, and failure bottlenecks. ## Core Features & Use Cases - Architecture planning: Feed a requirements JSON (goal, tasks, constraints, team size) into the planner to get a scored pattern choice (supervisor, swarm, pipeline, hierarchical), agent roles, communication links, a mermaid diagram, and an implementation roadmap. - Tool schema generation: Convert plain-language tool descriptions into validated provider-ready schemas, emitting both Anthropic and OpenAI formats with a hard gate that every schema must pass validation. - Execution log evaluation: Analyze agent run logs for success rate, latency distribution, cost breakdown, SLA compliance, bottleneck analysis, and prioritized optimization recommendations, with a verification loop that requires zero critical issues. - Use Case: You need to build a research automation system with several cooperating agents. Run the planner on your requirements to pick a supervisor pattern, generate and validate tool schemas for each agent, then evaluate a pilot run's logs and iterate until no critical issues remain. ## Quick Start Ask the agent to design a multi-agent architecture from your requirements, then generate validated tool schemas and evaluate a pilot run's execution logs for bottlenecks.

Frequently Asked Questions about agent-designer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between supervisor, swarm, and pipeline agent architectures?▼

Write a requirements JSON with your goal, tasks, constraints, and team size, then run the planner script. It deterministically scores patterns: supervisor fits central decomposition, pipeline fits sequential stages, and swarm fits parallel peers needing fault tolerance.

How do I generate Anthropic and OpenAI tool schemas for my agents?▼

Describe each tool in plain JSON, then run the tool schema generator with the --validate flag. It emits provider-specific schema files for both Anthropic and OpenAI formats, and every tool must report valid before you proceed.

How do I analyze agent execution logs for bottlenecks and cost?▼

Run the evaluator script on your execution logs JSON with the --detailed flag. It reports success rate, latency distribution, cost breakdown, bottleneck analysis, error analysis, SLA compliance, and prioritized optimization recommendations.

When should I not use a multi-agent architecture?▼

Avoid multi-agent designs for a single bounded task with fewer than about five tools; a single agent is simpler and more predictable. This Skill is also not for Claude Code workflow files or single-agent prompt design.

What inputs does the multi-agent planner require?▼

The planner expects a JSON file with a goal, a tasks array, constraints such as max response time, budget per task, and concurrent tasks, plus a team size. A sample requirements file is included in the skill's assets folder to copy.