Skip to content

Instantly share code, notes, and snippets.

---
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
{
"updatedAt": "2025-05-05T00:00:00Z",
"words":
[
{
"id": "5a70372f-f6a1-45af-83b7-5fe4e14a675f",
"romaji": "noboru",
"hiragana": "のぼる",
"katakana": "ノボル",
"meaning": "to climb",
@gilserrap
gilserrap / gist:5988b982c3ae7f2ae081
Created July 9, 2014 10:28
Getting coordinates for a MKPolyline
- (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