Assign and unassign issues to users (CLI not yet available)
Assigns or unassigns users to/from issues using the Fractary CLI. Triggers on `assign-issue` or `unassign-issue` operations with issue ID and username parameters.
/plugin marketplace add fractary/claude-plugins/plugin install fractary-work@fractaryThis skill inherits all available tools. When active, it can use any tool Claude has access to.
NOTE: The Fractary CLI issue assign command is not yet implemented. This skill currently returns NOT_IMPLEMENTED errors. See specs/WORK-00356-1-missing-cli-work-commands.md for tracking.
</CONTEXT>
<CRITICAL_RULES>
fractary work issue assign is NOT YET AVAILABLE{
"operation": "assign-issue",
"parameters": {
"issue_id": "123",
"assignee_username": "johndoe"
}
}
</INPUTS>
<WORKFLOW>
1. Output start message with operation and parameters
2. Validate required parameters (issue_id, assignee_username)
3. Return NOT_IMPLEMENTED error (CLI command not yet available)
4. Output end message with status
5. Return error response to work-manager agent
</WORKFLOW>
<CLI_INVOCATION>
# Future CLI command (when implemented)
fractary work issue assign <number> --user <username> --json
fractary work issue unassign <number> --user <username> --json
Status: ā Not yet implemented in @fractary/cli
See specs/WORK-00356-1-missing-cli-work-commands.md for implementation tracking.
</CLI_INVOCATION>
Future Success Response (when CLI available):
{
"status": "success",
"operation": "assign-issue",
"result": {
"issue_id": "123",
"assignee": "johndoe",
"action": "assigned",
"platform": "github"
}
}
</OUTPUTS>
<ERROR_HANDLING>
All operations return NOT_IMPLEMENTED until CLI support is added:
{
"status": "error",
"operation": "assign-issue",
"code": "NOT_IMPLEMENTED",
"message": "CLI command 'issue assign' not yet available"
}
šÆ STARTING: Issue Assigner
Operation: assign-issue
Issue: #123
Assignee: johndoe
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā ļø NOT IMPLEMENTED: Issue Assigner
Operation: assign-issue
CLI command not yet available
See: WORK-00356-1-missing-cli-work-commands.md
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
@fractary/cli >= 0.4.0 (future) - Fractary CLI with assign commandPrevious implementation: Used handler scripts (handler-work-tracker-github, etc.) Current implementation: Awaiting CLI implementation
specs/WORK-00356-1-missing-cli-work-commands.mdfractary work issue assign <number> --user <username> --jsonfractary work issue unassign <number> --user <username> --json