List all labels on an issue
Lists all labels on a specified issue number.
/plugin marketplace add fractary/claude-plugins/plugin install fractary-work@fractary<number>claude-haiku-4-5<CRITICAL_RULES> YOU MUST:
YOU MUST NOT:
THIS COMMAND IS ONLY A ROUTER. </CRITICAL_RULES>
<WORKFLOW> 1. **Parse user input** - Extract issue number (required) - Validate required arguments are presentCapture working directory context
WORK_CWD="${PWD}"Build structured request
ACTUALLY INVOKE the Task tool
IF THE TASK TOOL INVOCATION FAILS:
Return response
<ARGUMENT_SYNTAX>
This command takes a simple positional argument:
/fractary-work:label-list <number>✅ /fractary-work:label-list 123
✅ /fractary-work:label-list 42
❌ /fractary-work:label-list #123 # Don't include # symbol
❌ /fractary-work:label-list # Issue number required
</ARGUMENT_SYNTAX>
<ARGUMENT_PARSING>
Required Arguments:
number (number): Issue number (e.g., 123, not "#123")Maps to: list-labels operation </ARGUMENT_PARSING>
<EXAMPLES> ## Usage Examples# List all labels on an issue
/fractary-work:label-list 123
# List labels on different issue
/fractary-work:label-list 456
</EXAMPLES>
<AGENT_INVOCATION>
After parsing arguments, invoke the work-manager agent with a structured request.
Invoke the fractary-work:work-manager agent with the following request:
{
"operation": "list-labels",
"parameters": {
"issue_number": "123"
}
}
The work-manager agent will:
<ERROR_HANDLING> Common errors to handle:
Missing issue number:
Error: issue_number is required
Usage: /fractary-work:label-list <number>
Invalid issue number:
Error: Issue not found: #999
Verify the issue number and try again
</ERROR_HANDLING>
<NOTES> ## Common LabelsStandard labels include:
FABER workflows use special labels:
faber-in-progress - Issue in FABER workflowfaber-in-review - Awaiting reviewfaber-completed - Successfully completedfaber-error - Workflow encountered errorThis command works with:
Platform is configured via /fractary-work:init and stored in .fractary/plugins/work/config.json.
For detailed documentation, see: /docs/commands/work-label.md
Related commands:
/fractary-work:label-add - Add label/fractary-work:label-remove - Remove label/fractary-work:label-set - Set all labels/work:issue-fetch - Fetch issue details/fractary-work:init - Configure work plugin
</NOTES>