Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/llm-as-judge-skills/agents/index.md
1# Agents Index23Agents are reusable AI components with defined capabilities, tools, and instructions.45## Available Agents67### Evaluator Agent8**Path**: `agents/evaluator-agent/evaluator-agent.md`9**Purpose**: Assess the quality of LLM-generated responses1011**Capabilities**:12- Direct scoring against rubrics13- Pairwise comparison of responses14- Criteria extraction from task descriptions15- Rubric generation for evaluation1617**Tools Used**:18- `directScore`19- `pairwiseCompare`20- `extractCriteria`21- `generateRubric`2223**Best For**:24- Quality gates in content pipelines25- Model comparison studies26- RLHF preference data generation27- Output validation before delivery2829---3031### Research Agent32**Path**: `agents/research-agent/research-agent.md`33**Purpose**: Gather, verify, and synthesize information from multiple sources3435**Capabilities**:36- Web search and result analysis37- URL content extraction38- Claim extraction and verification39- Research synthesis4041**Tools Used**:42- `webSearch`43- `readUrl`44- `extractClaims`45- `verifyClaim`46- `synthesize`4748**Best For**:49- Knowledge base building50- Fact checking51- Market research52- Technical documentation5354---5556### Orchestrator Agent57**Path**: `agents/orchestrator-agent/orchestrator-agent.md`58**Purpose**: Coordinate multi-agent workflows for complex tasks5960**Capabilities**:61- Task decomposition and assignment62- Parallel task execution63- Result synthesis64- Error handling and recovery6566**Tools Used**:67- `delegateToAgent`68- `parallelExecution`69- `waitForCompletion`70- `synthesizeResults`71- `handleError`7273**Best For**:74- Complex multi-step tasks75- Cross-capability workflows76- Quality-assured pipelines77- Long-running operations7879## Agent Interaction Patterns8081### Sequential Pipeline82```83Input → Agent A → Agent B → Agent C → Output84```85Use when each step depends on the previous.8687### Parallel Fan-Out88```89┌→ Agent A ─┐90Input ──┼→ Agent B ──┼→ Synthesis → Output91└→ Agent C ─┘92```93Use for independent subtasks that can run concurrently.9495### Iterative Refinement96```97Input → Agent → Evaluator ─┬→ Output (if pass)98└→ Agent (if fail, with feedback)99```100Use for quality-critical outputs.101102## Adding New Agents1031041. Create agent directory: `agents/<agent-name>/`1052. Create main file: `agents/<agent-name>/<agent-name>.md`1063. Define:107- Purpose and role108- System instructions109- Tool assignments110- Configuration options111- Usage examples1124. Update this index1135. Register with orchestrator if applicable114115