| name | amia-label-taxonomy |
| description | GitHub label taxonomy reference for the Integrator Agent. Use when managing PR reviews, updating PR status, or applying review labels. Trigger with review label requests. Loaded by ai-maestro-integrator-agent-main-agent. |
| compatibility | Requires AI Maestro installed. |
| metadata | {"author":"Emasoft","version":"1.0.0"} |
| agent | ai-maestro-integrator-agent-main-agent |
| context | fork |
| user-invocable | false |
| license | MIT |
AMIA Label Taxonomy
Overview
Label taxonomy for the Integrator Agent (AMIA) role. Defines the review and status labels AMIA manages on PRs and issues, plus labels it reads from other roles.
Prerequisites
- GitHub CLI (
gh) installed and authenticated
- Active PR or issue number to label
- Understanding of AMIA role (see AGENT_OPERATIONS.md)
- Knowledge of current PR review state
Instructions
- Identify current PR state and existing labels
- Check
priority:* labels to determine review urgency
- Check
type:* labels to adjust review depth
- Update
review:* labels via gh pr edit as review progresses
- After merge, set issue
status:done and remove assign:* labels
Checklist
Copy this checklist and track your progress:
Output
| Output Type | Format | Example |
|---|
| Label update | CLI stdout | gh pr edit $PR --remove-label X --add-label Y |
| Current labels | JSON | gh pr view $PR --json labels |
| Label history | GitHub timeline | View in PR web interface |
Output discipline: Use gh pr edit and gh issue edit for all label operations.
Reference Documents
Operations:
Guides:
See detailed-guide for full reference:
- Error Handling
- Review Labels Detail
- Kanban Columns
- Status Labels AMIA Updates
- Labels AMIA Reads
- AMIA Label Commands
- Extended Examples
- Quick Reference Tables
Error Handling
Exit 1: invalid params. Exit 2-4: GitHub API errors. See the detailed guide in Resources.
Resources
Full reference: detailed-guide:
- Error Handling
- Review Labels Detail
- Kanban Columns
- Status Labels AMIA Updates
- Labels AMIA Reads
- Assignment Labels
- Priority Labels
- Type Labels
- AMIA Label Commands
- When Starting Review
- When Review Complete (Approved)
- When Changes Requested
- When PR Merged
- Extended Examples
- Quick Reference Tables
Examples
Example 1: Full Review Cycle
gh pr edit 45 --remove-label "review:needed" --add-label "review:in-progress"
gh pr edit 45 --remove-label "review:in-progress" --add-label "review:approved"
gh pr review 45 --approve
gh issue edit 78 --remove-label "status:ai-review" --add-label "status:done"