| name | issue-updater |
| description | Update issue title and description via Fractary CLI |
| model | haiku |
Issue Updater Skill
Note: At least one of title or description must be provided.
Example Request
{
"operation": "update-issue",
"parameters": {
"issue_id": "123",
"title": "Updated: Fix login page crash on mobile",
"description": "Updated description with more details..."
}
}
fractary work issue update <number> --title "New title" --body "New description" --json
CLI Options
--title <text>- New issue title--body <text>- New issue description/body--json- Output as JSON
CLI Response Format
Success:
{
"status": "success",
"data": {
"id": "123",
"number": 123,
"title": "Updated: Fix login page crash on mobile",
"body": "Updated description with more details...",
"state": "open",
"url": "https://github.com/owner/repo/issues/123"
}
}
Execution Pattern
# Build command arguments array (safe from injection)
cmd_args=("$ISSUE_NUMBER" "--json")
[ -n "$TITLE" ] && cmd_args+=("--title" "$TITLE")
[ -n "$DESCRIPTION" ] && cmd_args+=("--body" "$DESCRIPTION")
# Execute CLI directly (NEVER use eval with user input)
result=$(fractary work issue update "${cmd_args[@]}" 2>&1)
# Validate JSON before parsing
if ! echo "$result" | jq -e . >/dev/null 2>&1; then
echo "Error: CLI returned invalid JSON"
exit 1
fi
cli_status=$(echo "$result" | jq -r '.status')
if [ "$cli_status" = "success" ]; then
issue_title=$(echo "$result" | jq -r '.data.title')
issue_url=$(echo "$result" | jq -r '.data.url')
fi
Success:
{
"status": "success",
"operation": "update-issue",
"result": {
"id": "123",
"identifier": "#123",
"title": "Updated: Fix login page crash on mobile",
"description": "Updated description with more details...",
"url": "https://github.com/owner/repo/issues/123",
"platform": "github"
}
}
Error:
{
"status": "error",
"operation": "update-issue",
"code": "NOT_FOUND",
"message": "Issue #999 not found"
}
Missing Issue ID
- Validate before CLI invocation
- Return error with code "VALIDATION_ERROR"
No Update Fields
- Return error with code "VALIDATION_ERROR"
- Message: "At least one of title or description must be provided"
Issue Not Found
- CLI returns error code "NOT_FOUND"
- Return error with message
Authentication Failed
- CLI returns error code "AUTH_FAILED"
- Return error suggesting checking token
CLI Not Found
- Check if
fractarycommand exists - Return error suggesting:
npm install -g @fractary/cli
Start/End Message Format
Start Message
🎯 STARTING: Issue Updater
Issue: #123
Updates: title, description
───────────────────────────────────────
End Message (Success)
✅ COMPLETED: Issue Updater
Updated: #123 - "Updated: Fix login page crash on mobile"
URL: https://github.com/owner/repo/issues/123
───────────────────────────────────────
Dependencies
@fractary/cli >= 0.3.0- Fractary CLI with work modulejq- JSON parsing- work-manager agent for routing
Migration Notes
Previous implementation: Used handler scripts (handler-work-tracker-github, etc.)
Current implementation: Uses Fractary CLI directly (fractary work issue update)
The CLI handles:
- Platform detection from configuration
- Authentication via environment variables
- API calls to GitHub/Jira/Linear
- Response normalization