Awesome-omni-skill eama-label-taxonomy
Use when managing GitHub issue labels for user requests, setting priorities, or reporting status to users. Covers priority and status label taxonomy. Trigger with `/eama-label-taxonomy`.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/eama-label-taxonomy" ~/.claude/skills/diegosouzapw-awesome-omni-skill-eama-label-taxonomy && rm -rf "$T"
skills/tools/eama-label-taxonomy/SKILL.mdEAMA Label Taxonomy
Overview
This skill provides the label taxonomy relevant to the Assistant Manager Agent (EAMA) role. Each role plugin has its own label-taxonomy skill covering the labels that role manages.
Prerequisites
- Access to GitHub CLI (
) commandgh - Repository with GitHub issue tracking enabled
- Understanding of EAMA role responsibilities (user communication and role routing)
- Familiarity with GitHub issue label syntax
Instructions
Follow these steps to manage labels as EAMA:
- Analyze user request to determine appropriate priority and type labels
- Create issue with initial labels (
,status:backlog
,priority:*
)type:* - Monitor status changes from other agents and translate to user-friendly messages
- Update priorities when user expresses urgency or changes priority
- Set blocked status when user requests pause (
)status:blocked - Report status by querying issues with relevant labels
- Explain labels to user in clear, non-technical language
- Facilitate human review when Integrator (EIA) escalates significant tasks for user testing/review
Checklist for label management:
Copy this checklist and track your progress:
- Determine priority from user request context
- Apply appropriate type label (bug/feature/etc)
- Set initial status to
backlog - Monitor for status changes by other agents
- Update labels when user changes requirements
- Facilitate human review when
is setstatus:human-review - Generate user-friendly status reports
Labels EAMA Manages
Priority Labels (priority:*
)
priority:*EAMA has authority to set and change priorities based on user input.
| Label | Description | When EAMA Sets It |
|---|---|---|
| Must fix immediately | User reports production issue |
| High priority | User emphasizes importance |
| Standard priority | Default for new issues |
| Nice to have | User indicates low urgency |
EAMA Priority Responsibilities:
- Set initial priority based on user request
- Escalate priority when user expresses urgency
- De-escalate when user indicates reduced urgency
Kanban Columns (Canonical 8-Column System)
The full workflow uses these 8 status columns:
| # | Column Code | Display Name | Label | Description |
|---|---|---|---|---|
| 1 | | Backlog | | Entry point for new tasks |
| 2 | | Todo | | Ready to start |
| 3 | | In Progress | | Active work |
| 4 | | AI Review | | Integrator agent reviews ALL tasks |
| 5 | | Human Review | | User reviews BIG tasks only (via EAMA) |
| 6 | | Merge/Release | | Ready to merge |
| 7 | | Done | | Completed |
| 8 | | Blocked | | Blocked at any stage |
Task Routing Rules:
- Small tasks: In Progress -> AI Review -> Merge/Release -> Done
- Big tasks: In Progress -> AI Review -> Human Review -> Merge/Release -> Done
- Human Review is requested via EAMA (Assistant Manager asks user to test/review)
- Not all tasks go through Human Review -- only significant changes requiring human judgment
Status Labels EAMA Updates
| Label | When EAMA Sets It |
|---|---|
| When creating new issue from user request |
| When EIA escalates a significant task for user review |
| When user requests pause or issue cannot proceed |
Labels EAMA Monitors
Status Labels (status:*
)
status:*EAMA reports status to user:
- "Your request has been logged"status:backlog
- "Your request is queued and ready to start"status:todo
- "Work has started on your request"status:in-progress
- "The AI integrator is reviewing the work"status:ai-review
- "This needs your review and testing"status:human-review
- "Code is approved and ready to merge"status:merge-release
- "There's a blocker, may need your input"status:blocked
- "Your request is complete"status:done
Assignment Labels (assign:*
)
assign:*EAMA explains assignments to user:
- "An AI agent is working on this"assign:implementer-*
- "This needs human attention"assign:human
- "The orchestrator is handling this"assign:orchestrator
EAMA Label Commands
When User Creates Request
# Create issue with initial labels gh issue create \ --title "$USER_REQUEST_TITLE" \ --body "$USER_REQUEST_BODY" \ --label "status:backlog" \ --label "priority:$PRIORITY" \ --label "type:$TYPE"
When User Changes Priority
# Update priority gh issue edit $ISSUE_NUMBER --remove-label "priority:normal" --add-label "priority:high"
When User Puts on Hold
# Mark blocked gh issue edit $ISSUE_NUMBER --remove-label "status:in-progress" --add-label "status:blocked"
When Facilitating Human Review
# Present the task to the user for review (escalated from AI Review) gh issue view $ISSUE_NUMBER --json title,body,labels # After user approves: gh issue edit $ISSUE_NUMBER --remove-label "status:human-review" --add-label "status:merge-release" # After user requests changes: gh issue edit $ISSUE_NUMBER --remove-label "status:human-review" --add-label "status:in-progress"
When Generating Status Report
# Get all active issues for user gh issue list --label "status:in-progress" --json number,title,labels # Get issues in AI review gh issue list --label "status:ai-review" --json number,title,labels # Get issues awaiting human review gh issue list --label "status:human-review" --json number,title,labels # Get blocked issues needing attention gh issue list --label "status:blocked" --json number,title,labels # Get completed issues gh issue list --label "status:done" --state closed --json number,title
User Communication Patterns
Explaining Labels to User
When user asks "What's happening with my request?":
**Issue #42: Add user authentication** - **Status**: In Progress (`status:in-progress`) - **Priority**: High (`priority:high`) - **Assigned to**: Implementation Agent 1 (`assign:implementer-1`) - **Type**: New Feature (`type:feature`) The implementation agent is actively working on this task.
Translating User Requests to Labels
| User Says | Labels to Apply |
|---|---|
| "This is urgent!" | |
| "When you get a chance..." | |
| "Something is broken" | , |
| "Can you add..." | |
| "Put this on hold" | |
| "Resume this" | Remove , add |
Quick Reference
EAMA Label Responsibilities
| Action | Labels Involved |
|---|---|
| Create issue | , , |
| Change priority | Update |
| Pause work | Add |
| Resume work | Remove , add |
| Facilitate human review | Manage transitions |
| Report to user | Read all labels for status |
Labels EAMA Never Sets
- Set by EOA/ECOSassign:*
- Managed by EIAreview:*
- Set by EOA during triageeffort:*
- Set by EOA/EAAcomponent:*
EAMA's Approval Authority
EAMA can approve:
- Priority changes requested by other agents
- Scope changes that affect user expectations
- Deadline/milestone changes
EAMA must approve:
- Any change to
priority:critical - Reassignment to
assign:human - Project-level decisions
Output
| Output Type | Format | When Generated |
|---|---|---|
| Issue creation | GitHub issue URL with labels | When user creates new request |
| Label update confirmation | "Priority updated to high" | When labels modified |
| Status report | Markdown table of issues and labels | When user requests status |
| Label explanation | Plain text translation of label meaning | When user asks "what's happening?" |
Error Handling
| Error | Cause | Resolution |
|---|---|---|
| Label not found | Typo or label doesn't exist in repo | Create label or fix typo |
| Permission denied | Insufficient GitHub permissions | Request repo access from user |
| Issue not found | Invalid issue number | Verify issue number with user |
| Conflicting labels | Multiple priority labels applied | Remove old label before adding new |
| API rate limit | Too many GitHub API calls | Wait and retry, batch operations |
Examples
Example 1: Creating Issue with Labels
User request: "The login page is broken, fix it urgently!"
EAMA actions:
gh issue create \ --title "Login page broken" \ --body "User reported urgent login page issue" \ --label "type:bug" \ --label "priority:critical" \ --label "status:backlog"
User response: "Created issue #123 with critical priority. The orchestrator will triage this shortly."
Example 2: Reporting Status with Labels
User request: "What's the status of my authentication work?"
EAMA actions:
gh issue list --label "component:auth" --json number,title,labels
User response:
**Authentication Issues**: - **#42**: Add OAuth support - Status: In Progress (`status:in-progress`) - Priority: High (`priority:high`) - Assigned to: Implementation Agent 1 - **#45**: Fix password reset - Status: Blocked (`status:blocked`) - Priority: Normal (`priority:normal`) - Blocker: Waiting for email service setup
Example 3: Updating Priority
User request: "Actually, make that password reset high priority too."
EAMA actions:
gh issue edit 45 --remove-label "priority:normal" --add-label "priority:high"
User response: "Priority updated to high for issue #45."
Resources
- AGENT_OPERATIONS.md - Core agent operational patterns
- eama-status-reporting - User communication patterns
- eama-user-communication - Communication style guidelines
- eama-role-routing - Role delegation patterns