This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: jira-to-prompt | |
| description: Use this agent when the user provides a Jira ticket description, issue key, or link and needs it transformed into a clear, actionable Claude Code prompt. This agent should be used proactively when you detect:\n\n<example>\nContext: User is working on iOS development and mentions a Jira ticket.\nuser: "I need to work on IJ-12345 about adding a new notification feature"\nassistant: "Let me use the jira-to-prompt agent to convert that Jira ticket into a clear development prompt."\n<uses Task tool to launch jira-to-prompt agent>\n</example>\n\n<example>\nContext: User pastes a Jira description in Spanish about fixing a UI bug.\nuser: "[pastes Spanish Jira description about fixing button alignment in settings screen]"\nassistant: "I'll use the jira-to-prompt agent to translate this and create a structured prompt for implementing the fix."\n<uses Task tool to launch jira-to-prompt agent>\n</example>\n\n<example>\nContext: User mentions working on a ticket without providing full |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "updatedAt": "2025-05-05T00:00:00Z", | |
| "words": | |
| [ | |
| { | |
| "id": "5a70372f-f6a1-45af-83b7-5fe4e14a675f", | |
| "romaji": "noboru", | |
| "hiragana": "のぼる", | |
| "katakana": "ノボル", | |
| "meaning": "to climb", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)testThis:(MKPolyline *)stepPolyline | |
| { | |
| //route is the MKRoute in this example | |
| //but the polyline can be any MKPolyline | |
| NSUInteger pointCount = stepPolyline.pointCount; | |
| //allocate a C array to hold this many points/coordinates... | |
| CLLocationCoordinate2D *routeCoordinates |