hierarchical-agents
This document describes the hierarchical agent management system in GitHub Agentic Workflows, which provides meta-orchestration capabilities to manage the 120+…
This guide explains the new meta-orchestrator agents and their operational usage.
$ npx -y skills add github/gh-aw --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
This guide explains the new meta-orchestrator agents and their operational usage.
This guide explains the new meta-orchestrator agents and their operational usage.
Meta-orchestrators are specialized workflows that oversee and coordinate other agents in the repository. They provide status tracking and coordination across multiple workflows.
**What it does:** Manages campaign portfolio status and coordination
**When it runs:** Daily
**What you'll see:**
**Example outputs:**
# Campaign Portfolio Report - 2025-12-20 ## Executive Summary - 2 active campaigns (1 high-priority, 1 medium-priority) - Overall completion: 45% - Campaigns on track: 1 | Behind schedule: 1 ## Campaigns Needing Attention - Security Q1 (55/100) - Stalled, no progress in 7 days Issue #123 created with recommendations
**When to check it:**
**What it does:** Monitors workflow health and execution status for failures and performance issues
**When it runs:** Daily
**What you'll see:**
**Example outputs:**
# Workflow Health Dashboard - 2025-12-20 ## Critical Issues - daily-file-diet: Failing (8/10 runs failed) Error: Permission denied accessing GitHub API Issue #456 created ## Warnings - ci-coach: Compilation warnings Issue #457 created with migration guide
**When to check it:**
**What it does:** Evaluates agent output quality and effectiveness
**When it runs:** Daily
**What you'll see:**
**Example outputs:**
# Agent Performance Report - Week of 2025-12-20 ## Top Performers 1. Campaign Manager (95/100) - High quality, good effectiveness 2. CI Coach (90/100) - Clear outputs, high merge rate ## Needs Improvement 1. Workflow X (45/100) Issues: Incomplete outputs, high PR rejection rate Recommendations: Refine prompt, add quality checks Issue #789 created
**When to check it:**
All three meta-orchestrators share a common repository memory at `memory/meta-orchestrators/` where they exchange insights and coordinate actions.
graph TD
A[Meta-Orchestrators] --> B[Campaign Manager]
A --> C[Workflow Health Manager]
A --> D[Agent Performance Analyzer]
B --> E[Shared Memory]
C --> E
D --> E
E --> F[memory/meta-orchestrators/]
F --> G[Run Summaries]
F --> H[Cross-cutting Alerts]
F --> I[Historical Trends]
F --> J[Action Items]
G --> K[Coordinated Actions]
H --> K
I --> K
J --> K**What's shared:**
**How it helps:**
**Example coordination:** 1. Workflow Health Manager detects that `daily-metrics` workflow is failing (80% failure rate) 2. Campaign Manager sees this and notes that "Metrics Campaign" relies on this workflow 3. Agent Performance Analyzer identifies the agent has quality issues in this workflow 4. Result: Single coordinated issue created referencing all three perspectives
**You don't need to do anything** - the coordination happens automatically through shared memory.
**Daily:** 1. Check Workflow Health Dashboard pinned issue for critical issues 2. Address P0/P1 issues immediately 3. Review Campaign Manager report if campaigns are active 4. Review Agent Performance Report discussion
**Weekly:** 1. Review and prioritize improvement issues 2. Update agent prompts based on recommendations
**Monthly:** 1. Review trends across all three reports 2. Adjust meta-orchestrator schedules if needed 3. Refine meta-orchestrator prompts based on learnings
**When creating a workflow:** 1. Check Agent Performance report for best practices 2. Review similar high-performing workflows 3. Avoid patterns flagged in health reports
**When your workflow has issues:** 1. Check if Workflow Health Manager created an issue 2. Follow recommendations in the issue 3. Comment on the issue when fixed so it gets closed
**When starting a campaign:** 1. Check Campaign Manager for potential conflicts 2. Review coordination notes with related campaigns 3. Set up project board properly
**During campaign:** 1. Monitor your campaign's health score 2. Address flagged issues promptly 3. Coordinate with other campaigns as suggested
Scores are 0-100, calculated as:
Agent quick links Hello fellow agent! Welcome to GitHub Agentic Workflows = Actions + Agent + Safety. Here are some pointers to get you started in using this tool.
Repo: github/gh-aw
This document describes the hierarchical agent management system in GitHub Agentic Workflows, which provides meta-orchestration capabilities to manage the 120+…