[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-triage-issue":3,"mdc-eh4576-key":36,"related-org-openai-triage-issue":1987,"related-repo-openai-triage-issue":2194},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"triage-issue","triage bug reports and manage Jira issues","Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket with proper context, or (5) Add information to an existing ticket. Searches Jira for similar issues, identifies duplicates, checks fix history, and helps create well-structured bug reports.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Jira","jira","tag",{"name":17,"slug":18,"type":15},"Customer Support","customer-support",{"name":20,"slug":21,"type":15},"Triage","triage",{"name":23,"slug":24,"type":15},"Debugging","debugging",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-16T05:12:07.172283",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fatlassian-rovo\u002Fskills\u002Ftriage-issue","---\nname: triage-issue\ndescription: \"Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket with proper context, or (5) Add information to an existing ticket. Searches Jira for similar issues, identifies duplicates, checks fix history, and helps create well-structured bug reports.\"\n---\n\n# Triage Issue\n\n## Keywords\ntriage bug, check duplicate, is this a duplicate, search for similar issues, create bug ticket, file a bug, report this error, triage this error, bug report, error message, similar issues, duplicate bug, who fixed this, has this been reported, search bugs, find similar bugs, create issue, file issue\n\n## Overview\n\nAutomatically triage bug reports and error messages by searching Jira for duplicates, identifying similar past issues, and helping create well-structured bug tickets or add context to existing issues. This skill eliminates manual duplicate checking and ensures bugs are properly documented with relevant historical context.\n\n**Use this skill when:** Users need to triage error messages, bug reports, or issues to determine if they're duplicates and take appropriate action.\n\n---\n\n## Workflow\n\nFollow this 6-step process to effectively triage issues:\n\n### Step 1: Extract Key Information\n\nAnalyze the bug report or error message to identify search terms.\n\n#### Extract These Elements:\n\n**Error signature:**\n- Error type or exception name (e.g., \"NullPointerException\", \"TimeoutError\")\n- Error code or status (e.g., \"500\", \"404\", \"ERR_CONNECTION_REFUSED\")\n- Specific error message text (key phrases, not full stack trace)\n\n**Context:**\n- Component or system affected (e.g., \"authentication\", \"payment gateway\", \"API\")\n- Environment (e.g., \"production\", \"staging\", \"mobile app\")\n- User actions leading to error (e.g., \"during login\", \"when uploading file\")\n\n**Symptoms:**\n- Observable behavior (e.g., \"page blank\", \"infinite loading\", \"data not saving\")\n- Impact (e.g., \"users can't login\", \"payments failing\")\n\n#### Example Extractions:\n\n**Input:** \"Users getting 'Connection timeout' error when trying to login on mobile app\"\n**Extracted:**\n- Error: \"Connection timeout\"\n- Component: \"login\", \"mobile app\"\n- Symptom: \"can't login\"\n\n**Input:** \"NullPointerException in PaymentProcessor.processRefund() line 245\"\n**Extracted:**\n- Error: \"NullPointerException\"\n- Component: \"PaymentProcessor\", \"refund\"\n- Location: \"processRefund line 245\"\n\n---\n\n### Step 2: Search for Duplicates\n\nSearch Jira using extracted keywords to find similar or duplicate issues.\n\n#### Search Strategy:\n\nExecute **multiple targeted searches** to catch duplicates that may use different wording:\n\n**Search 1: Error-focused**\n```\nsearchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND (text ~ \"error signature\" OR summary ~ \"error signature\") AND type = Bug ORDER BY created DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n```\n\n**Search 2: Component-focused**\n```\nsearchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND text ~ \"component keywords\" AND type = Bug ORDER BY updated DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n```\n\n**Search 3: Symptom-focused**\n```\nsearchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND summary ~ \"symptom keywords\" AND type = Bug ORDER BY priority DESC, updated DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n```\n\n#### Search Tips:\n\n**Use key terms only:**\n- ✅ \"timeout login mobile\"\n- ✅ \"NullPointerException PaymentProcessor refund\"\n- ❌ \"Users are getting a connection timeout error when...\" (too verbose)\n\n**Search recent first:**\n- Order by `created DESC` or `updated DESC` to find recent similar issues\n- Recent bugs are more likely to be relevant duplicates\n\n**Don't over-filter:**\n- Include resolved issues (might have been reopened or regression)\n- Search across all bug statuses to find fix history\n\n---\n\n### Step 3: Analyze Search Results\n\nEvaluate the search results to determine if this is a duplicate or a new issue.\n\n#### Duplicate Detection:\n\n**High confidence duplicate (>90%):**\n- Exact same error message in summary or description\n- Same component + same error type\n- Recent issue (\u003C 30 days) with identical symptoms\n- **Action:** Strongly recommend adding comment to existing issue\n\n**Likely duplicate (70-90%):**\n- Similar error with slight variations\n- Same component but different context\n- Resolved issue with same root cause\n- **Action:** Present as possible duplicate, let user decide\n\n**Possibly related (40-70%):**\n- Similar symptoms but different error\n- Same component area but different specific error\n- Old issue (> 6 months) that might be unrelated\n- **Action:** Mention as potentially related\n\n**Likely new issue (\u003C40%):**\n- No similar issues found\n- Different error signature and component\n- Unique symptom or context\n- **Action:** Recommend creating new issue\n\n#### Check Fix History:\n\nIf similar resolved issues are found:\n\n**Extract relevant information:**\n- Who fixed it? (assignee on resolved issues)\n- How was it fixed? (resolution comment or linked PRs)\n- When was it fixed? (resolution date)\n- Has it regressed? (any reopened issues)\n\n**Present this context** to help with triage decision.\n\n---\n\n### Step 4: Present Findings to User\n\n**CRITICAL:** Always present findings and wait for user decision before taking any action.\n\n#### Format for Likely Duplicate:\n\n```\n🔍 **Triage Results: Likely Duplicate**\n\nI found a very similar issue already reported:\n\n**PROJ-456** - Connection timeout during mobile login\nStatus: Open | Priority: High | Created: 3 days ago\nAssignee: @john.doe\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456\n\n**Similarity:**\n- Same error: \"Connection timeout\"\n- Same component: Mobile app login\n- Same symptoms: Users unable to login\n\n**Difference:**\n- Original report mentioned iOS specifically, this report doesn't specify platform\n\n**Recommendation:** Add your details as a comment to PROJ-456\n\nWould you like me to:\n1. Add a comment to PROJ-456 with your error details\n2. Create a new issue anyway (if you think this is different)\n3. Show me more details about PROJ-456 first\n```\n\n#### Format for Possibly Related:\n\n```\n🔍 **Triage Results: Possibly Related Issues Found**\n\nI found 2 potentially related issues:\n\n**1. PROJ-789** - Mobile app authentication failures\nStatus: Resolved | Fixed: 2 weeks ago | Fixed by: @jane.smith\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-789\n\n**2. PROJ-234** - Login timeout on slow connections\nStatus: Open | Priority: Medium | Created: 1 month ago\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-234\n\n**Assessment:** Your error seems related but has unique aspects\n\n**Recommendation:** Create a new issue, but reference these related tickets\n\nWould you like me to create a new bug ticket?\n```\n\n#### Format for No Duplicates:\n\n```\n🔍 **Triage Results: No Duplicates Found**\n\nI searched Jira for:\n- \"Connection timeout\" errors\n- Mobile login issues\n- Authentication failures\n\nNo similar open or recent issues found.\n\n**Recommendation:** Create a new bug ticket\n\n**Note:** I found 1 old resolved issue (PROJ-123 from 8 months ago) about login timeouts, but it was for web, not mobile, and was resolved as \"configuration error.\"\n\nWould you like me to create a new bug ticket for this issue?\n```\n\n---\n\n### Step 5: Execute User Decision\n\nBased on user's choice, either add a comment or create a new issue.\n\n#### Option A: Add Comment to Existing Issue\n\nIf user wants to add to existing issue:\n\n**Fetch the full issue first** to understand context:\n```\ngetJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-456\"\n)\n```\n\n**Then add the comment:**\n```\naddCommentToJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-456\",\n  commentBody=\"[formatted comment - see below]\"\n)\n```\n\n**Comment Structure:**\n```markdown\n## Additional Instance Reported\n\n**Reporter:** [User's name or context]\n**Date:** [Current date]\n\n**Error Details:**\n[Paste relevant error message or stack trace]\n\n**Context:**\n- Environment: [e.g., Production, iOS 16.5]\n- User Impact: [e.g., 50+ users affected in last hour]\n- Steps to Reproduce: [if provided]\n\n**Additional Notes:**\n[Any unique aspects of this instance]\n\n---\n*Added via triage automation*\n```\n\n#### Option B: Create New Issue\n\nIf user wants to create new issue:\n\n**First, check available issue types:**\n```\ngetJiraProjectIssueTypesMetadata(\n  cloudId=\"...\",\n  projectIdOrKey=\"PROJ\"\n)\n```\n\n**Determine appropriate issue type:**\n- For bugs\u002Ferrors → Use \"Bug\" (if available)\n- For issues without errors → Use \"Task\" or \"Issue\" \n- Fallback → First available non-Epic, non-Subtask type\n\n**Create the issue:**\n```\ncreateJiraIssue(\n  cloudId=\"...\",\n  projectKey=\"PROJ\",\n  issueTypeName=\"Bug\",\n  summary=\"[Clear, specific summary - see below]\",\n  description=\"[Detailed description - see below]\",\n  additional_fields={\n    \"priority\": {\"name\": \"Medium\"}  # Adjust based on user input severity assessment\n  }\n)\n```\n\n**Summary Format:**\nUse the pattern: `[Component] [Error Type] - [Brief Symptom]`\n\n**Examples:**\n- ✅ \"Mobile Login: Connection timeout during authentication\"\n- ✅ \"Payment API: NullPointerException in refund processing\"\n- ✅ \"Dashboard: Infinite loading on reports page\"\n- ❌ \"Error in production\" (too vague)\n- ❌ \"Users experiencing issues\" (not specific)\n\n**Description Structure:**\n```markdown\n## Issue Description\n[1-2 sentence summary of the problem]\n\n## Error Details\n```\n[Error message or stack trace]\n```\n\n## Environment\n- **Platform:** [e.g., Mobile iOS, Web, API]\n- **Version:** [if known]\n- **Environment:** [Production\u002FStaging\u002Fetc]\n\n## Steps to Reproduce\n1. [Step 1]\n2. [Step 2]\n3. [Step 3]\n\n## Expected Behavior\n[What should happen]\n\n## Actual Behavior\n[What actually happens]\n\n## User Impact\n- **Frequency:** [e.g., Every time, Intermittent]\n- **Affected Users:** [e.g., All users, Mobile users only]\n- **Severity:** [e.g., Users cannot complete checkout]\n\n## Additional Context\n[Any other relevant information]\n\n## Related Issues\n[If applicable, reference similar issues found during triage]\n- See also: PROJ-123 (similar but resolved)\n\n---\n*Created via automated triage*\n```\n\n---\n\n### Step 6: Provide Summary\n\nAfter taking action, confirm what was done.\n\n#### If Comment Added:\n\n```\n✅ **Comment Added Successfully**\n\nAdded details to existing issue: **PROJ-456**\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456\n\n**What I included:**\n- Your error details\n- Environment context\n- User impact information\n\n**Next Steps:**\n- The assignee (@john.doe) will be notified\n- Monitor PROJ-456 for updates\n- If this turns out to be different, we can still create a separate ticket\n```\n\n#### If New Issue Created:\n\n```\n✅ **New Issue Created**\n\n**PROJ-890** - Mobile Login: Connection timeout during authentication\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-890\n\nType: Bug | Priority: Medium | Status: Open\n\n**What's Included:**\n- Complete error details and stack trace\n- Environment and reproduction steps\n- User impact assessment\n- References to related issues (PROJ-123, PROJ-789)\n\n**Next Steps:**\n- Issue will be reviewed during next triage meeting\n- Consider setting priority based on user impact\n- Assign to appropriate team member\n```\n\n---\n\n## Edge Cases & Troubleshooting\n\n### Multiple Potential Duplicates\n\nIf you find 3+ very similar issues:\n\n```\n🔍 **Triage Results: Multiple Possible Duplicates**\n\nI found 3 issues that might be related:\n\n**Most Likely Duplicate:**\n**PROJ-456** - [summary] (Open, 2 days ago)\nMatch: 95% - Same error and component\n\n**Also Possibly Related:**\n**PROJ-234** - [summary] (Open, 1 month ago)\nMatch: 70% - Similar symptoms, different error\n\n**PROJ-123** - [summary] (Resolved, 8 months ago)\nMatch: 60% - Related component, but was fixed\n\n**Recommendation:** \n1. Add to PROJ-456 (most similar)\n2. Reference PROJ-234 in your comment (might be related)\n3. Note PROJ-123 was previously fixed (possible regression)\n\nWhich issue should I add your details to? (Or create new)\n```\n\n### Unclear Project Context\n\nIf user doesn't specify which project:\n\n```\nWhich Jira project should I search for similar issues?\n\nAvailable projects:\n- BACKEND (Backend Services)\n- MOBILE (Mobile Apps)\n- WEB (Web Platform)\n- INFRA (Infrastructure)\n\nOr tell me the project key directly (e.g., BACKEND, MOBILE)\n```\n\n### Insufficient Information\n\nIf the bug report lacks critical details:\n\n```\nI need more information to effectively triage this issue:\n\n**What I have:**\n- Error: \"Something went wrong\"\n\n**What would help:**\n- Specific error message or code\n- Which part of the system (login, payment, etc.)\n- What the user was trying to do\n- Which environment (production, staging, mobile, web)\n\nCan you provide any of these details?\n```\n\n### Resolved Regression\n\nIf you find a resolved issue that matches:\n\n```\n🔍 **Triage Results: Possible Regression**\n\nThis looks like it might be a regression of a previously fixed issue:\n\n**PROJ-567** - [Same issue description]\nStatus: Resolved (Fixed) | Fixed: 3 months ago | Fixed by: @jane.smith\nResolution: [Brief description of fix]\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-567\n\n**This suggests:**\n- The original fix may not have fully addressed the root cause\n- OR there's been a regression in recent changes\n- OR this is a different issue with similar symptoms\n\n**Recommendation:** Create a new issue and link it to PROJ-567 as \"may be related to\" or \"regression of\"\n\nShould I create a new issue with this context?\n```\n\n### Custom Required Fields\n\nIf creating an issue fails due to required fields:\n\n1. **Check what fields are required:**\n```\ngetJiraIssueTypeMetaWithFields(\n  cloudId=\"...\",\n  projectIdOrKey=\"PROJ\",\n  issueTypeId=\"10001\"\n)\n```\n\n2. **Ask user for values:**\n```\nThis project requires additional fields to create a Bug:\n- Severity: [High\u002FMedium\u002FLow]\n- Affected Version: [Version number]\n\nPlease provide these values so I can create the issue.\n```\n\n3. **Retry with additional fields:**\n```\ncreateJiraIssue(\n  ...existing parameters...,\n  additional_fields={\n    \"priority\": {\"name\": \"High\"},\n    \"customfield_10001\": {\"value\": \"Production\"}\n  }\n)\n```\n\n---\n\n## Tips for Effective Triage\n\n### For Search:\n\n**Do:**\n✅ Use multiple search queries with different angles\n✅ Include both open and resolved issues in search\n✅ Search for error signatures and symptoms separately\n✅ Look at recent issues first (last 30-90 days)\n✅ Check for patterns (multiple reports of same thing)\n\n**Don't:**\n❌ Search with entire error messages (too specific)\n❌ Only search open issues (miss fix history)\n❌ Ignore resolved issues (miss regressions)\n❌ Use too many keywords (reduces matches)\n\n### For Issue Creation:\n\n**Do:**\n✅ Write clear, specific summaries with component names\n✅ Include complete error messages in code blocks\n✅ Add environment and impact details\n✅ Reference related issues found during search\n✅ Use \"Bug\" issue type for actual bugs\n\n**Don't:**\n❌ Create vague summaries like \"Error in production\"\n❌ Paste entire stack traces in summary (use description)\n❌ Skip reproduction steps\n❌ Forget to mention user impact\n❌ Hard-code issue type without checking availability\n\n### For Duplicate Assessment:\n\n**High Confidence Duplicates:**\n- Exact same error + same component + recent (\u003C 30 days)\n- Same root cause identified\n\n**Likely Different Issues:**\n- Different error signatures\n- Different components\u002Fsystems\n- Significantly different contexts\n\n**When Unsure:**\n- Present both options to user\n- Lean toward creating new issue (can be closed as duplicate later)\n- Linking issues is better than hiding information\n\n---\n\n## Examples\n\n### Example 1: Clear Duplicate Found\n\n**User Input:**\n```\nTriage this error: \"Connection timeout error when users try to login on iOS app\"\n```\n\n**Process:**\n1. Extract: \"Connection timeout\", \"login\", \"iOS\"\n2. Search: Find PROJ-456 (open, 2 days ago) with exact same error\n3. Analyze: 95% match - same error, component, symptom\n4. Present: Show PROJ-456 as duplicate, recommend adding comment\n5. Execute: User confirms, add comment with iOS-specific details\n6. Confirm: Comment added to PROJ-456\n\n**Output:**\n```\n✅ Comment added to PROJ-456\n\nYour iOS-specific error details have been added to the existing issue.\nThe assignee will be notified.\n```\n\n### Example 2: New Issue with Related Context\n\n**User Input:**\n```\nError: NullPointerException in PaymentProcessor.processRefund() at line 245\nStack trace: [full stack trace]\n```\n\n**Process:**\n1. Extract: \"NullPointerException\", \"PaymentProcessor\", \"processRefund\", \"line 245\"\n2. Search: Find PROJ-789 (resolved, 3 weeks ago) about payment errors, but different line\n3. Analyze: Related component but different specific error\n4. Present: No duplicates, found related issue, recommend new ticket\n5. Execute: User confirms, create new Bug with context\n6. Confirm: PROJ-890 created\n\n**Output:**\n```\n✅ New Issue Created\n\nPROJ-890 - Payment API: NullPointerException in refund processing\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-890\n\nReferences related issue PROJ-789 for context.\n```\n\n### Example 3: Possible Regression\n\n**User Input:**\n```\nUsers can't upload files larger than 5MB, getting \"Upload failed\" error\n```\n\n**Process:**\n1. Extract: \"Upload failed\", \"5MB\", \"file upload\"\n2. Search: Find PROJ-234 (resolved 2 months ago) - exact same issue\n3. Analyze: Was fixed but now happening again\n4. Present: Possible regression, recommend new issue linked to old one\n5. Execute: Create new issue, link to PROJ-234 as \"may be caused by\"\n6. Confirm: PROJ-891 created with regression context\n\n**Output:**\n```\n✅ New Issue Created (Possible Regression)\n\nPROJ-891 - File Upload: Upload failed for files >5MB (Regression?)\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-891\n\nThis may be a regression of PROJ-234, which was resolved 2 months ago.\nIssue includes reference to original fix for investigation.\n```\n\n---\n\n## When NOT to Use This Skill\n\nThis skill is for **triaging bugs and errors only**. Do NOT use for:\n\n❌ Feature requests (use spec-to-backlog)\n❌ General task creation (use capture-tasks-from-meeting-notes)\n❌ Searching for information (use search-company-knowledge)\n❌ Generating status reports (use generate-status-report)\n\n**Use this skill specifically for:**\n✅ \"Is this a duplicate bug?\"\n✅ \"Triage this error message\"\n✅ \"Has this been reported before?\"\n✅ \"Create a bug ticket for this\"\n\n---\n\n## Quick Reference\n\n**Primary workflow:** Extract → Search → Analyze → Present → Execute → Confirm\n\n**Search tool:** `searchJiraIssuesUsingJql(cloudId, jql, fields, maxResults)`\n\n**Action tools:**\n- `addCommentToJiraIssue(cloudId, issueIdOrKey, commentBody)` - Add to existing\n- `createJiraIssue(cloudId, projectKey, issueTypeName, summary, description)` - Create new\n\n**Issue type:** Always prefer \"Bug\" for error reports, check with `getJiraProjectIssueTypesMetadata`\n\n**Remember:**\n- Multiple searches catch more duplicates\n- Present findings before acting\n- Include error details and context\n- Reference related issues\n- Use \"Bug\" issue type when available\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,56,62,68,73,84,88,94,99,106,111,118,126,146,154,172,180,193,199,214,232,245,263,266,272,277,283,295,303,316,324,333,341,350,356,364,382,390,419,427,440,443,449,454,460,468,496,504,531,539,566,574,601,607,612,620,643,653,656,662,672,678,687,693,702,708,717,720,726,731,737,742,752,761,769,778,786,1042,1048,1053,1061,1070,1078,1096,1104,1113,1129,1137,1165,1173,1219,1227,1236,1239,1245,1250,1256,1265,1271,1280,1283,1289,1295,1300,1309,1315,1320,1329,1335,1340,1349,1355,1360,1369,1375,1380,1392,1401,1412,1421,1432,1441,1444,1450,1456,1466,1476,1482,1491,1500,1506,1514,1527,1535,1553,1561,1579,1582,1588,1594,1602,1611,1619,1652,1660,1669,1675,1682,1691,1698,1731,1738,1747,1753,1760,1769,1776,1809,1816,1825,1828,1834,1846,1851,1861,1864,1870,1880,1896,1904,1929,1945,1953,1981],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Triage Issue",{"type":42,"tag":50,"props":51,"children":53},"h2",{"id":52},"keywords",[54],{"type":47,"value":55},"Keywords",{"type":42,"tag":57,"props":58,"children":59},"p",{},[60],{"type":47,"value":61},"triage bug, check duplicate, is this a duplicate, search for similar issues, create bug ticket, file a bug, report this error, triage this error, bug report, error message, similar issues, duplicate bug, who fixed this, has this been reported, search bugs, find similar bugs, create issue, file issue",{"type":42,"tag":50,"props":63,"children":65},{"id":64},"overview",[66],{"type":47,"value":67},"Overview",{"type":42,"tag":57,"props":69,"children":70},{},[71],{"type":47,"value":72},"Automatically triage bug reports and error messages by searching Jira for duplicates, identifying similar past issues, and helping create well-structured bug tickets or add context to existing issues. This skill eliminates manual duplicate checking and ensures bugs are properly documented with relevant historical context.",{"type":42,"tag":57,"props":74,"children":75},{},[76,82],{"type":42,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":47,"value":81},"Use this skill when:",{"type":47,"value":83}," Users need to triage error messages, bug reports, or issues to determine if they're duplicates and take appropriate action.",{"type":42,"tag":85,"props":86,"children":87},"hr",{},[],{"type":42,"tag":50,"props":89,"children":91},{"id":90},"workflow",[92],{"type":47,"value":93},"Workflow",{"type":42,"tag":57,"props":95,"children":96},{},[97],{"type":47,"value":98},"Follow this 6-step process to effectively triage issues:",{"type":42,"tag":100,"props":101,"children":103},"h3",{"id":102},"step-1-extract-key-information",[104],{"type":47,"value":105},"Step 1: Extract Key Information",{"type":42,"tag":57,"props":107,"children":108},{},[109],{"type":47,"value":110},"Analyze the bug report or error message to identify search terms.",{"type":42,"tag":112,"props":113,"children":115},"h4",{"id":114},"extract-these-elements",[116],{"type":47,"value":117},"Extract These Elements:",{"type":42,"tag":57,"props":119,"children":120},{},[121],{"type":42,"tag":77,"props":122,"children":123},{},[124],{"type":47,"value":125},"Error signature:",{"type":42,"tag":127,"props":128,"children":129},"ul",{},[130,136,141],{"type":42,"tag":131,"props":132,"children":133},"li",{},[134],{"type":47,"value":135},"Error type or exception name (e.g., \"NullPointerException\", \"TimeoutError\")",{"type":42,"tag":131,"props":137,"children":138},{},[139],{"type":47,"value":140},"Error code or status (e.g., \"500\", \"404\", \"ERR_CONNECTION_REFUSED\")",{"type":42,"tag":131,"props":142,"children":143},{},[144],{"type":47,"value":145},"Specific error message text (key phrases, not full stack trace)",{"type":42,"tag":57,"props":147,"children":148},{},[149],{"type":42,"tag":77,"props":150,"children":151},{},[152],{"type":47,"value":153},"Context:",{"type":42,"tag":127,"props":155,"children":156},{},[157,162,167],{"type":42,"tag":131,"props":158,"children":159},{},[160],{"type":47,"value":161},"Component or system affected (e.g., \"authentication\", \"payment gateway\", \"API\")",{"type":42,"tag":131,"props":163,"children":164},{},[165],{"type":47,"value":166},"Environment (e.g., \"production\", \"staging\", \"mobile app\")",{"type":42,"tag":131,"props":168,"children":169},{},[170],{"type":47,"value":171},"User actions leading to error (e.g., \"during login\", \"when uploading file\")",{"type":42,"tag":57,"props":173,"children":174},{},[175],{"type":42,"tag":77,"props":176,"children":177},{},[178],{"type":47,"value":179},"Symptoms:",{"type":42,"tag":127,"props":181,"children":182},{},[183,188],{"type":42,"tag":131,"props":184,"children":185},{},[186],{"type":47,"value":187},"Observable behavior (e.g., \"page blank\", \"infinite loading\", \"data not saving\")",{"type":42,"tag":131,"props":189,"children":190},{},[191],{"type":47,"value":192},"Impact (e.g., \"users can't login\", \"payments failing\")",{"type":42,"tag":112,"props":194,"children":196},{"id":195},"example-extractions",[197],{"type":47,"value":198},"Example Extractions:",{"type":42,"tag":57,"props":200,"children":201},{},[202,207,209],{"type":42,"tag":77,"props":203,"children":204},{},[205],{"type":47,"value":206},"Input:",{"type":47,"value":208}," \"Users getting 'Connection timeout' error when trying to login on mobile app\"\n",{"type":42,"tag":77,"props":210,"children":211},{},[212],{"type":47,"value":213},"Extracted:",{"type":42,"tag":127,"props":215,"children":216},{},[217,222,227],{"type":42,"tag":131,"props":218,"children":219},{},[220],{"type":47,"value":221},"Error: \"Connection timeout\"",{"type":42,"tag":131,"props":223,"children":224},{},[225],{"type":47,"value":226},"Component: \"login\", \"mobile app\"",{"type":42,"tag":131,"props":228,"children":229},{},[230],{"type":47,"value":231},"Symptom: \"can't login\"",{"type":42,"tag":57,"props":233,"children":234},{},[235,239,241],{"type":42,"tag":77,"props":236,"children":237},{},[238],{"type":47,"value":206},{"type":47,"value":240}," \"NullPointerException in PaymentProcessor.processRefund() line 245\"\n",{"type":42,"tag":77,"props":242,"children":243},{},[244],{"type":47,"value":213},{"type":42,"tag":127,"props":246,"children":247},{},[248,253,258],{"type":42,"tag":131,"props":249,"children":250},{},[251],{"type":47,"value":252},"Error: \"NullPointerException\"",{"type":42,"tag":131,"props":254,"children":255},{},[256],{"type":47,"value":257},"Component: \"PaymentProcessor\", \"refund\"",{"type":42,"tag":131,"props":259,"children":260},{},[261],{"type":47,"value":262},"Location: \"processRefund line 245\"",{"type":42,"tag":85,"props":264,"children":265},{},[],{"type":42,"tag":100,"props":267,"children":269},{"id":268},"step-2-search-for-duplicates",[270],{"type":47,"value":271},"Step 2: Search for Duplicates",{"type":42,"tag":57,"props":273,"children":274},{},[275],{"type":47,"value":276},"Search Jira using extracted keywords to find similar or duplicate issues.",{"type":42,"tag":112,"props":278,"children":280},{"id":279},"search-strategy",[281],{"type":47,"value":282},"Search Strategy:",{"type":42,"tag":57,"props":284,"children":285},{},[286,288,293],{"type":47,"value":287},"Execute ",{"type":42,"tag":77,"props":289,"children":290},{},[291],{"type":47,"value":292},"multiple targeted searches",{"type":47,"value":294}," to catch duplicates that may use different wording:",{"type":42,"tag":57,"props":296,"children":297},{},[298],{"type":42,"tag":77,"props":299,"children":300},{},[301],{"type":47,"value":302},"Search 1: Error-focused",{"type":42,"tag":304,"props":305,"children":309},"pre",{"className":306,"code":308,"language":47},[307],"language-text","searchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND (text ~ \"error signature\" OR summary ~ \"error signature\") AND type = Bug ORDER BY created DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n",[310],{"type":42,"tag":311,"props":312,"children":314},"code",{"__ignoreMap":313},"",[315],{"type":47,"value":308},{"type":42,"tag":57,"props":317,"children":318},{},[319],{"type":42,"tag":77,"props":320,"children":321},{},[322],{"type":47,"value":323},"Search 2: Component-focused",{"type":42,"tag":304,"props":325,"children":328},{"className":326,"code":327,"language":47},[307],"searchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND text ~ \"component keywords\" AND type = Bug ORDER BY updated DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n",[329],{"type":42,"tag":311,"props":330,"children":331},{"__ignoreMap":313},[332],{"type":47,"value":327},{"type":42,"tag":57,"props":334,"children":335},{},[336],{"type":42,"tag":77,"props":337,"children":338},{},[339],{"type":47,"value":340},"Search 3: Symptom-focused",{"type":42,"tag":304,"props":342,"children":345},{"className":343,"code":344,"language":47},[307],"searchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql='project = \"PROJ\" AND summary ~ \"symptom keywords\" AND type = Bug ORDER BY priority DESC, updated DESC',\n  fields=[\"summary\", \"description\", \"status\", \"resolution\", \"created\", \"updated\", \"assignee\"],\n  maxResults=20\n)\n",[346],{"type":42,"tag":311,"props":347,"children":348},{"__ignoreMap":313},[349],{"type":47,"value":344},{"type":42,"tag":112,"props":351,"children":353},{"id":352},"search-tips",[354],{"type":47,"value":355},"Search Tips:",{"type":42,"tag":57,"props":357,"children":358},{},[359],{"type":42,"tag":77,"props":360,"children":361},{},[362],{"type":47,"value":363},"Use key terms only:",{"type":42,"tag":127,"props":365,"children":366},{},[367,372,377],{"type":42,"tag":131,"props":368,"children":369},{},[370],{"type":47,"value":371},"✅ \"timeout login mobile\"",{"type":42,"tag":131,"props":373,"children":374},{},[375],{"type":47,"value":376},"✅ \"NullPointerException PaymentProcessor refund\"",{"type":42,"tag":131,"props":378,"children":379},{},[380],{"type":47,"value":381},"❌ \"Users are getting a connection timeout error when...\" (too verbose)",{"type":42,"tag":57,"props":383,"children":384},{},[385],{"type":42,"tag":77,"props":386,"children":387},{},[388],{"type":47,"value":389},"Search recent first:",{"type":42,"tag":127,"props":391,"children":392},{},[393,414],{"type":42,"tag":131,"props":394,"children":395},{},[396,398,404,406,412],{"type":47,"value":397},"Order by ",{"type":42,"tag":311,"props":399,"children":401},{"className":400},[],[402],{"type":47,"value":403},"created DESC",{"type":47,"value":405}," or ",{"type":42,"tag":311,"props":407,"children":409},{"className":408},[],[410],{"type":47,"value":411},"updated DESC",{"type":47,"value":413}," to find recent similar issues",{"type":42,"tag":131,"props":415,"children":416},{},[417],{"type":47,"value":418},"Recent bugs are more likely to be relevant duplicates",{"type":42,"tag":57,"props":420,"children":421},{},[422],{"type":42,"tag":77,"props":423,"children":424},{},[425],{"type":47,"value":426},"Don't over-filter:",{"type":42,"tag":127,"props":428,"children":429},{},[430,435],{"type":42,"tag":131,"props":431,"children":432},{},[433],{"type":47,"value":434},"Include resolved issues (might have been reopened or regression)",{"type":42,"tag":131,"props":436,"children":437},{},[438],{"type":47,"value":439},"Search across all bug statuses to find fix history",{"type":42,"tag":85,"props":441,"children":442},{},[],{"type":42,"tag":100,"props":444,"children":446},{"id":445},"step-3-analyze-search-results",[447],{"type":47,"value":448},"Step 3: Analyze Search Results",{"type":42,"tag":57,"props":450,"children":451},{},[452],{"type":47,"value":453},"Evaluate the search results to determine if this is a duplicate or a new issue.",{"type":42,"tag":112,"props":455,"children":457},{"id":456},"duplicate-detection",[458],{"type":47,"value":459},"Duplicate Detection:",{"type":42,"tag":57,"props":461,"children":462},{},[463],{"type":42,"tag":77,"props":464,"children":465},{},[466],{"type":47,"value":467},"High confidence duplicate (>90%):",{"type":42,"tag":127,"props":469,"children":470},{},[471,476,481,486],{"type":42,"tag":131,"props":472,"children":473},{},[474],{"type":47,"value":475},"Exact same error message in summary or description",{"type":42,"tag":131,"props":477,"children":478},{},[479],{"type":47,"value":480},"Same component + same error type",{"type":42,"tag":131,"props":482,"children":483},{},[484],{"type":47,"value":485},"Recent issue (\u003C 30 days) with identical symptoms",{"type":42,"tag":131,"props":487,"children":488},{},[489,494],{"type":42,"tag":77,"props":490,"children":491},{},[492],{"type":47,"value":493},"Action:",{"type":47,"value":495}," Strongly recommend adding comment to existing issue",{"type":42,"tag":57,"props":497,"children":498},{},[499],{"type":42,"tag":77,"props":500,"children":501},{},[502],{"type":47,"value":503},"Likely duplicate (70-90%):",{"type":42,"tag":127,"props":505,"children":506},{},[507,512,517,522],{"type":42,"tag":131,"props":508,"children":509},{},[510],{"type":47,"value":511},"Similar error with slight variations",{"type":42,"tag":131,"props":513,"children":514},{},[515],{"type":47,"value":516},"Same component but different context",{"type":42,"tag":131,"props":518,"children":519},{},[520],{"type":47,"value":521},"Resolved issue with same root cause",{"type":42,"tag":131,"props":523,"children":524},{},[525,529],{"type":42,"tag":77,"props":526,"children":527},{},[528],{"type":47,"value":493},{"type":47,"value":530}," Present as possible duplicate, let user decide",{"type":42,"tag":57,"props":532,"children":533},{},[534],{"type":42,"tag":77,"props":535,"children":536},{},[537],{"type":47,"value":538},"Possibly related (40-70%):",{"type":42,"tag":127,"props":540,"children":541},{},[542,547,552,557],{"type":42,"tag":131,"props":543,"children":544},{},[545],{"type":47,"value":546},"Similar symptoms but different error",{"type":42,"tag":131,"props":548,"children":549},{},[550],{"type":47,"value":551},"Same component area but different specific error",{"type":42,"tag":131,"props":553,"children":554},{},[555],{"type":47,"value":556},"Old issue (> 6 months) that might be unrelated",{"type":42,"tag":131,"props":558,"children":559},{},[560,564],{"type":42,"tag":77,"props":561,"children":562},{},[563],{"type":47,"value":493},{"type":47,"value":565}," Mention as potentially related",{"type":42,"tag":57,"props":567,"children":568},{},[569],{"type":42,"tag":77,"props":570,"children":571},{},[572],{"type":47,"value":573},"Likely new issue (\u003C40%):",{"type":42,"tag":127,"props":575,"children":576},{},[577,582,587,592],{"type":42,"tag":131,"props":578,"children":579},{},[580],{"type":47,"value":581},"No similar issues found",{"type":42,"tag":131,"props":583,"children":584},{},[585],{"type":47,"value":586},"Different error signature and component",{"type":42,"tag":131,"props":588,"children":589},{},[590],{"type":47,"value":591},"Unique symptom or context",{"type":42,"tag":131,"props":593,"children":594},{},[595,599],{"type":42,"tag":77,"props":596,"children":597},{},[598],{"type":47,"value":493},{"type":47,"value":600}," Recommend creating new issue",{"type":42,"tag":112,"props":602,"children":604},{"id":603},"check-fix-history",[605],{"type":47,"value":606},"Check Fix History:",{"type":42,"tag":57,"props":608,"children":609},{},[610],{"type":47,"value":611},"If similar resolved issues are found:",{"type":42,"tag":57,"props":613,"children":614},{},[615],{"type":42,"tag":77,"props":616,"children":617},{},[618],{"type":47,"value":619},"Extract relevant information:",{"type":42,"tag":127,"props":621,"children":622},{},[623,628,633,638],{"type":42,"tag":131,"props":624,"children":625},{},[626],{"type":47,"value":627},"Who fixed it? (assignee on resolved issues)",{"type":42,"tag":131,"props":629,"children":630},{},[631],{"type":47,"value":632},"How was it fixed? (resolution comment or linked PRs)",{"type":42,"tag":131,"props":634,"children":635},{},[636],{"type":47,"value":637},"When was it fixed? (resolution date)",{"type":42,"tag":131,"props":639,"children":640},{},[641],{"type":47,"value":642},"Has it regressed? (any reopened issues)",{"type":42,"tag":57,"props":644,"children":645},{},[646,651],{"type":42,"tag":77,"props":647,"children":648},{},[649],{"type":47,"value":650},"Present this context",{"type":47,"value":652}," to help with triage decision.",{"type":42,"tag":85,"props":654,"children":655},{},[],{"type":42,"tag":100,"props":657,"children":659},{"id":658},"step-4-present-findings-to-user",[660],{"type":47,"value":661},"Step 4: Present Findings to User",{"type":42,"tag":57,"props":663,"children":664},{},[665,670],{"type":42,"tag":77,"props":666,"children":667},{},[668],{"type":47,"value":669},"CRITICAL:",{"type":47,"value":671}," Always present findings and wait for user decision before taking any action.",{"type":42,"tag":112,"props":673,"children":675},{"id":674},"format-for-likely-duplicate",[676],{"type":47,"value":677},"Format for Likely Duplicate:",{"type":42,"tag":304,"props":679,"children":682},{"className":680,"code":681,"language":47},[307],"🔍 **Triage Results: Likely Duplicate**\n\nI found a very similar issue already reported:\n\n**PROJ-456** - Connection timeout during mobile login\nStatus: Open | Priority: High | Created: 3 days ago\nAssignee: @john.doe\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456\n\n**Similarity:**\n- Same error: \"Connection timeout\"\n- Same component: Mobile app login\n- Same symptoms: Users unable to login\n\n**Difference:**\n- Original report mentioned iOS specifically, this report doesn't specify platform\n\n**Recommendation:** Add your details as a comment to PROJ-456\n\nWould you like me to:\n1. Add a comment to PROJ-456 with your error details\n2. Create a new issue anyway (if you think this is different)\n3. Show me more details about PROJ-456 first\n",[683],{"type":42,"tag":311,"props":684,"children":685},{"__ignoreMap":313},[686],{"type":47,"value":681},{"type":42,"tag":112,"props":688,"children":690},{"id":689},"format-for-possibly-related",[691],{"type":47,"value":692},"Format for Possibly Related:",{"type":42,"tag":304,"props":694,"children":697},{"className":695,"code":696,"language":47},[307],"🔍 **Triage Results: Possibly Related Issues Found**\n\nI found 2 potentially related issues:\n\n**1. PROJ-789** - Mobile app authentication failures\nStatus: Resolved | Fixed: 2 weeks ago | Fixed by: @jane.smith\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-789\n\n**2. PROJ-234** - Login timeout on slow connections\nStatus: Open | Priority: Medium | Created: 1 month ago\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-234\n\n**Assessment:** Your error seems related but has unique aspects\n\n**Recommendation:** Create a new issue, but reference these related tickets\n\nWould you like me to create a new bug ticket?\n",[698],{"type":42,"tag":311,"props":699,"children":700},{"__ignoreMap":313},[701],{"type":47,"value":696},{"type":42,"tag":112,"props":703,"children":705},{"id":704},"format-for-no-duplicates",[706],{"type":47,"value":707},"Format for No Duplicates:",{"type":42,"tag":304,"props":709,"children":712},{"className":710,"code":711,"language":47},[307],"🔍 **Triage Results: No Duplicates Found**\n\nI searched Jira for:\n- \"Connection timeout\" errors\n- Mobile login issues\n- Authentication failures\n\nNo similar open or recent issues found.\n\n**Recommendation:** Create a new bug ticket\n\n**Note:** I found 1 old resolved issue (PROJ-123 from 8 months ago) about login timeouts, but it was for web, not mobile, and was resolved as \"configuration error.\"\n\nWould you like me to create a new bug ticket for this issue?\n",[713],{"type":42,"tag":311,"props":714,"children":715},{"__ignoreMap":313},[716],{"type":47,"value":711},{"type":42,"tag":85,"props":718,"children":719},{},[],{"type":42,"tag":100,"props":721,"children":723},{"id":722},"step-5-execute-user-decision",[724],{"type":47,"value":725},"Step 5: Execute User Decision",{"type":42,"tag":57,"props":727,"children":728},{},[729],{"type":47,"value":730},"Based on user's choice, either add a comment or create a new issue.",{"type":42,"tag":112,"props":732,"children":734},{"id":733},"option-a-add-comment-to-existing-issue",[735],{"type":47,"value":736},"Option A: Add Comment to Existing Issue",{"type":42,"tag":57,"props":738,"children":739},{},[740],{"type":47,"value":741},"If user wants to add to existing issue:",{"type":42,"tag":57,"props":743,"children":744},{},[745,750],{"type":42,"tag":77,"props":746,"children":747},{},[748],{"type":47,"value":749},"Fetch the full issue first",{"type":47,"value":751}," to understand context:",{"type":42,"tag":304,"props":753,"children":756},{"className":754,"code":755,"language":47},[307],"getJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-456\"\n)\n",[757],{"type":42,"tag":311,"props":758,"children":759},{"__ignoreMap":313},[760],{"type":47,"value":755},{"type":42,"tag":57,"props":762,"children":763},{},[764],{"type":42,"tag":77,"props":765,"children":766},{},[767],{"type":47,"value":768},"Then add the comment:",{"type":42,"tag":304,"props":770,"children":773},{"className":771,"code":772,"language":47},[307],"addCommentToJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-456\",\n  commentBody=\"[formatted comment - see below]\"\n)\n",[774],{"type":42,"tag":311,"props":775,"children":776},{"__ignoreMap":313},[777],{"type":47,"value":772},{"type":42,"tag":57,"props":779,"children":780},{},[781],{"type":42,"tag":77,"props":782,"children":783},{},[784],{"type":47,"value":785},"Comment Structure:",{"type":42,"tag":304,"props":787,"children":791},{"className":788,"code":789,"language":790,"meta":313,"style":313},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","## Additional Instance Reported\n\n**Reporter:** [User's name or context]\n**Date:** [Current date]\n\n**Error Details:**\n[Paste relevant error message or stack trace]\n\n**Context:**\n- Environment: [e.g., Production, iOS 16.5]\n- User Impact: [e.g., 50+ users affected in last hour]\n- Steps to Reproduce: [if provided]\n\n**Additional Notes:**\n[Any unique aspects of this instance]\n\n---\n*Added via triage automation*\n","markdown",[792],{"type":42,"tag":311,"props":793,"children":794},{"__ignoreMap":313},[795,813,823,849,871,879,897,906,914,930,944,957,970,978,995,1004,1012,1021],{"type":42,"tag":796,"props":797,"children":800},"span",{"class":798,"line":799},"line",1,[801,807],{"type":42,"tag":796,"props":802,"children":804},{"style":803},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[805],{"type":47,"value":806},"## ",{"type":42,"tag":796,"props":808,"children":810},{"style":809},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[811],{"type":47,"value":812},"Additional Instance Reported\n",{"type":42,"tag":796,"props":814,"children":816},{"class":798,"line":815},2,[817],{"type":42,"tag":796,"props":818,"children":820},{"emptyLinePlaceholder":819},true,[821],{"type":47,"value":822},"\n",{"type":42,"tag":796,"props":824,"children":826},{"class":798,"line":825},3,[827,833,839,843],{"type":42,"tag":796,"props":828,"children":830},{"style":829},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[831],{"type":47,"value":832},"**",{"type":42,"tag":796,"props":834,"children":836},{"style":835},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[837],{"type":47,"value":838},"Reporter:",{"type":42,"tag":796,"props":840,"children":841},{"style":829},[842],{"type":47,"value":832},{"type":42,"tag":796,"props":844,"children":846},{"style":845},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[847],{"type":47,"value":848}," [User's name or context]\n",{"type":42,"tag":796,"props":850,"children":852},{"class":798,"line":851},4,[853,857,862,866],{"type":42,"tag":796,"props":854,"children":855},{"style":829},[856],{"type":47,"value":832},{"type":42,"tag":796,"props":858,"children":859},{"style":835},[860],{"type":47,"value":861},"Date:",{"type":42,"tag":796,"props":863,"children":864},{"style":829},[865],{"type":47,"value":832},{"type":42,"tag":796,"props":867,"children":868},{"style":845},[869],{"type":47,"value":870}," [Current date]\n",{"type":42,"tag":796,"props":872,"children":874},{"class":798,"line":873},5,[875],{"type":42,"tag":796,"props":876,"children":877},{"emptyLinePlaceholder":819},[878],{"type":47,"value":822},{"type":42,"tag":796,"props":880,"children":882},{"class":798,"line":881},6,[883,887,892],{"type":42,"tag":796,"props":884,"children":885},{"style":829},[886],{"type":47,"value":832},{"type":42,"tag":796,"props":888,"children":889},{"style":835},[890],{"type":47,"value":891},"Error Details:",{"type":42,"tag":796,"props":893,"children":894},{"style":829},[895],{"type":47,"value":896},"**\n",{"type":42,"tag":796,"props":898,"children":900},{"class":798,"line":899},7,[901],{"type":42,"tag":796,"props":902,"children":903},{"style":845},[904],{"type":47,"value":905},"[Paste relevant error message or stack trace]\n",{"type":42,"tag":796,"props":907,"children":909},{"class":798,"line":908},8,[910],{"type":42,"tag":796,"props":911,"children":912},{"emptyLinePlaceholder":819},[913],{"type":47,"value":822},{"type":42,"tag":796,"props":915,"children":917},{"class":798,"line":916},9,[918,922,926],{"type":42,"tag":796,"props":919,"children":920},{"style":829},[921],{"type":47,"value":832},{"type":42,"tag":796,"props":923,"children":924},{"style":835},[925],{"type":47,"value":153},{"type":42,"tag":796,"props":927,"children":928},{"style":829},[929],{"type":47,"value":896},{"type":42,"tag":796,"props":931,"children":933},{"class":798,"line":932},10,[934,939],{"type":42,"tag":796,"props":935,"children":936},{"style":803},[937],{"type":47,"value":938},"-",{"type":42,"tag":796,"props":940,"children":941},{"style":845},[942],{"type":47,"value":943}," Environment: [e.g., Production, iOS 16.5]\n",{"type":42,"tag":796,"props":945,"children":947},{"class":798,"line":946},11,[948,952],{"type":42,"tag":796,"props":949,"children":950},{"style":803},[951],{"type":47,"value":938},{"type":42,"tag":796,"props":953,"children":954},{"style":845},[955],{"type":47,"value":956}," User Impact: [e.g., 50+ users affected in last hour]\n",{"type":42,"tag":796,"props":958,"children":960},{"class":798,"line":959},12,[961,965],{"type":42,"tag":796,"props":962,"children":963},{"style":803},[964],{"type":47,"value":938},{"type":42,"tag":796,"props":966,"children":967},{"style":845},[968],{"type":47,"value":969}," Steps to Reproduce: [if provided]\n",{"type":42,"tag":796,"props":971,"children":973},{"class":798,"line":972},13,[974],{"type":42,"tag":796,"props":975,"children":976},{"emptyLinePlaceholder":819},[977],{"type":47,"value":822},{"type":42,"tag":796,"props":979,"children":981},{"class":798,"line":980},14,[982,986,991],{"type":42,"tag":796,"props":983,"children":984},{"style":829},[985],{"type":47,"value":832},{"type":42,"tag":796,"props":987,"children":988},{"style":835},[989],{"type":47,"value":990},"Additional Notes:",{"type":42,"tag":796,"props":992,"children":993},{"style":829},[994],{"type":47,"value":896},{"type":42,"tag":796,"props":996,"children":998},{"class":798,"line":997},15,[999],{"type":42,"tag":796,"props":1000,"children":1001},{"style":845},[1002],{"type":47,"value":1003},"[Any unique aspects of this instance]\n",{"type":42,"tag":796,"props":1005,"children":1007},{"class":798,"line":1006},16,[1008],{"type":42,"tag":796,"props":1009,"children":1010},{"emptyLinePlaceholder":819},[1011],{"type":47,"value":822},{"type":42,"tag":796,"props":1013,"children":1015},{"class":798,"line":1014},17,[1016],{"type":42,"tag":796,"props":1017,"children":1018},{"style":803},[1019],{"type":47,"value":1020},"---\n",{"type":42,"tag":796,"props":1022,"children":1024},{"class":798,"line":1023},18,[1025,1031,1037],{"type":42,"tag":796,"props":1026,"children":1028},{"style":1027},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1029],{"type":47,"value":1030},"*",{"type":42,"tag":796,"props":1032,"children":1034},{"style":1033},"--shiki-light:#E53935;--shiki-light-font-style:italic;--shiki-default:#F07178;--shiki-default-font-style:italic;--shiki-dark:#F07178;--shiki-dark-font-style:italic",[1035],{"type":47,"value":1036},"Added via triage automation",{"type":42,"tag":796,"props":1038,"children":1039},{"style":1027},[1040],{"type":47,"value":1041},"*\n",{"type":42,"tag":112,"props":1043,"children":1045},{"id":1044},"option-b-create-new-issue",[1046],{"type":47,"value":1047},"Option B: Create New Issue",{"type":42,"tag":57,"props":1049,"children":1050},{},[1051],{"type":47,"value":1052},"If user wants to create new issue:",{"type":42,"tag":57,"props":1054,"children":1055},{},[1056],{"type":42,"tag":77,"props":1057,"children":1058},{},[1059],{"type":47,"value":1060},"First, check available issue types:",{"type":42,"tag":304,"props":1062,"children":1065},{"className":1063,"code":1064,"language":47},[307],"getJiraProjectIssueTypesMetadata(\n  cloudId=\"...\",\n  projectIdOrKey=\"PROJ\"\n)\n",[1066],{"type":42,"tag":311,"props":1067,"children":1068},{"__ignoreMap":313},[1069],{"type":47,"value":1064},{"type":42,"tag":57,"props":1071,"children":1072},{},[1073],{"type":42,"tag":77,"props":1074,"children":1075},{},[1076],{"type":47,"value":1077},"Determine appropriate issue type:",{"type":42,"tag":127,"props":1079,"children":1080},{},[1081,1086,1091],{"type":42,"tag":131,"props":1082,"children":1083},{},[1084],{"type":47,"value":1085},"For bugs\u002Ferrors → Use \"Bug\" (if available)",{"type":42,"tag":131,"props":1087,"children":1088},{},[1089],{"type":47,"value":1090},"For issues without errors → Use \"Task\" or \"Issue\"",{"type":42,"tag":131,"props":1092,"children":1093},{},[1094],{"type":47,"value":1095},"Fallback → First available non-Epic, non-Subtask type",{"type":42,"tag":57,"props":1097,"children":1098},{},[1099],{"type":42,"tag":77,"props":1100,"children":1101},{},[1102],{"type":47,"value":1103},"Create the issue:",{"type":42,"tag":304,"props":1105,"children":1108},{"className":1106,"code":1107,"language":47},[307],"createJiraIssue(\n  cloudId=\"...\",\n  projectKey=\"PROJ\",\n  issueTypeName=\"Bug\",\n  summary=\"[Clear, specific summary - see below]\",\n  description=\"[Detailed description - see below]\",\n  additional_fields={\n    \"priority\": {\"name\": \"Medium\"}  # Adjust based on user input severity assessment\n  }\n)\n",[1109],{"type":42,"tag":311,"props":1110,"children":1111},{"__ignoreMap":313},[1112],{"type":47,"value":1107},{"type":42,"tag":57,"props":1114,"children":1115},{},[1116,1121,1123],{"type":42,"tag":77,"props":1117,"children":1118},{},[1119],{"type":47,"value":1120},"Summary Format:",{"type":47,"value":1122},"\nUse the pattern: ",{"type":42,"tag":311,"props":1124,"children":1126},{"className":1125},[],[1127],{"type":47,"value":1128},"[Component] [Error Type] - [Brief Symptom]",{"type":42,"tag":57,"props":1130,"children":1131},{},[1132],{"type":42,"tag":77,"props":1133,"children":1134},{},[1135],{"type":47,"value":1136},"Examples:",{"type":42,"tag":127,"props":1138,"children":1139},{},[1140,1145,1150,1155,1160],{"type":42,"tag":131,"props":1141,"children":1142},{},[1143],{"type":47,"value":1144},"✅ \"Mobile Login: Connection timeout during authentication\"",{"type":42,"tag":131,"props":1146,"children":1147},{},[1148],{"type":47,"value":1149},"✅ \"Payment API: NullPointerException in refund processing\"",{"type":42,"tag":131,"props":1151,"children":1152},{},[1153],{"type":47,"value":1154},"✅ \"Dashboard: Infinite loading on reports page\"",{"type":42,"tag":131,"props":1156,"children":1157},{},[1158],{"type":47,"value":1159},"❌ \"Error in production\" (too vague)",{"type":42,"tag":131,"props":1161,"children":1162},{},[1163],{"type":47,"value":1164},"❌ \"Users experiencing issues\" (not specific)",{"type":42,"tag":57,"props":1166,"children":1167},{},[1168],{"type":42,"tag":77,"props":1169,"children":1170},{},[1171],{"type":47,"value":1172},"Description Structure:",{"type":42,"tag":304,"props":1174,"children":1176},{"className":788,"code":1175,"language":790,"meta":313,"style":313},"## Issue Description\n[1-2 sentence summary of the problem]\n\n## Error Details\n",[1177],{"type":42,"tag":311,"props":1178,"children":1179},{"__ignoreMap":313},[1180,1192,1200,1207],{"type":42,"tag":796,"props":1181,"children":1182},{"class":798,"line":799},[1183,1187],{"type":42,"tag":796,"props":1184,"children":1185},{"style":803},[1186],{"type":47,"value":806},{"type":42,"tag":796,"props":1188,"children":1189},{"style":809},[1190],{"type":47,"value":1191},"Issue Description\n",{"type":42,"tag":796,"props":1193,"children":1194},{"class":798,"line":815},[1195],{"type":42,"tag":796,"props":1196,"children":1197},{"style":845},[1198],{"type":47,"value":1199},"[1-2 sentence summary of the problem]\n",{"type":42,"tag":796,"props":1201,"children":1202},{"class":798,"line":825},[1203],{"type":42,"tag":796,"props":1204,"children":1205},{"emptyLinePlaceholder":819},[1206],{"type":47,"value":822},{"type":42,"tag":796,"props":1208,"children":1209},{"class":798,"line":851},[1210,1214],{"type":42,"tag":796,"props":1211,"children":1212},{"style":803},[1213],{"type":47,"value":806},{"type":42,"tag":796,"props":1215,"children":1216},{"style":809},[1217],{"type":47,"value":1218},"Error Details\n",{"type":42,"tag":57,"props":1220,"children":1221},{},[1222],{"type":42,"tag":796,"props":1223,"children":1224},{},[1225],{"type":47,"value":1226},"Error message or stack trace",{"type":42,"tag":304,"props":1228,"children":1231},{"className":1229,"code":1230,"language":47},[307],"\n## Environment\n- **Platform:** [e.g., Mobile iOS, Web, API]\n- **Version:** [if known]\n- **Environment:** [Production\u002FStaging\u002Fetc]\n\n## Steps to Reproduce\n1. [Step 1]\n2. [Step 2]\n3. [Step 3]\n\n## Expected Behavior\n[What should happen]\n\n## Actual Behavior\n[What actually happens]\n\n## User Impact\n- **Frequency:** [e.g., Every time, Intermittent]\n- **Affected Users:** [e.g., All users, Mobile users only]\n- **Severity:** [e.g., Users cannot complete checkout]\n\n## Additional Context\n[Any other relevant information]\n\n## Related Issues\n[If applicable, reference similar issues found during triage]\n- See also: PROJ-123 (similar but resolved)\n\n---\n*Created via automated triage*\n",[1232],{"type":42,"tag":311,"props":1233,"children":1234},{"__ignoreMap":313},[1235],{"type":47,"value":1230},{"type":42,"tag":85,"props":1237,"children":1238},{},[],{"type":42,"tag":100,"props":1240,"children":1242},{"id":1241},"step-6-provide-summary",[1243],{"type":47,"value":1244},"Step 6: Provide Summary",{"type":42,"tag":57,"props":1246,"children":1247},{},[1248],{"type":47,"value":1249},"After taking action, confirm what was done.",{"type":42,"tag":112,"props":1251,"children":1253},{"id":1252},"if-comment-added",[1254],{"type":47,"value":1255},"If Comment Added:",{"type":42,"tag":304,"props":1257,"children":1260},{"className":1258,"code":1259,"language":47},[307],"✅ **Comment Added Successfully**\n\nAdded details to existing issue: **PROJ-456**\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456\n\n**What I included:**\n- Your error details\n- Environment context\n- User impact information\n\n**Next Steps:**\n- The assignee (@john.doe) will be notified\n- Monitor PROJ-456 for updates\n- If this turns out to be different, we can still create a separate ticket\n",[1261],{"type":42,"tag":311,"props":1262,"children":1263},{"__ignoreMap":313},[1264],{"type":47,"value":1259},{"type":42,"tag":112,"props":1266,"children":1268},{"id":1267},"if-new-issue-created",[1269],{"type":47,"value":1270},"If New Issue Created:",{"type":42,"tag":304,"props":1272,"children":1275},{"className":1273,"code":1274,"language":47},[307],"✅ **New Issue Created**\n\n**PROJ-890** - Mobile Login: Connection timeout during authentication\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-890\n\nType: Bug | Priority: Medium | Status: Open\n\n**What's Included:**\n- Complete error details and stack trace\n- Environment and reproduction steps\n- User impact assessment\n- References to related issues (PROJ-123, PROJ-789)\n\n**Next Steps:**\n- Issue will be reviewed during next triage meeting\n- Consider setting priority based on user impact\n- Assign to appropriate team member\n",[1276],{"type":42,"tag":311,"props":1277,"children":1278},{"__ignoreMap":313},[1279],{"type":47,"value":1274},{"type":42,"tag":85,"props":1281,"children":1282},{},[],{"type":42,"tag":50,"props":1284,"children":1286},{"id":1285},"edge-cases-troubleshooting",[1287],{"type":47,"value":1288},"Edge Cases & Troubleshooting",{"type":42,"tag":100,"props":1290,"children":1292},{"id":1291},"multiple-potential-duplicates",[1293],{"type":47,"value":1294},"Multiple Potential Duplicates",{"type":42,"tag":57,"props":1296,"children":1297},{},[1298],{"type":47,"value":1299},"If you find 3+ very similar issues:",{"type":42,"tag":304,"props":1301,"children":1304},{"className":1302,"code":1303,"language":47},[307],"🔍 **Triage Results: Multiple Possible Duplicates**\n\nI found 3 issues that might be related:\n\n**Most Likely Duplicate:**\n**PROJ-456** - [summary] (Open, 2 days ago)\nMatch: 95% - Same error and component\n\n**Also Possibly Related:**\n**PROJ-234** - [summary] (Open, 1 month ago)\nMatch: 70% - Similar symptoms, different error\n\n**PROJ-123** - [summary] (Resolved, 8 months ago)\nMatch: 60% - Related component, but was fixed\n\n**Recommendation:** \n1. Add to PROJ-456 (most similar)\n2. Reference PROJ-234 in your comment (might be related)\n3. Note PROJ-123 was previously fixed (possible regression)\n\nWhich issue should I add your details to? (Or create new)\n",[1305],{"type":42,"tag":311,"props":1306,"children":1307},{"__ignoreMap":313},[1308],{"type":47,"value":1303},{"type":42,"tag":100,"props":1310,"children":1312},{"id":1311},"unclear-project-context",[1313],{"type":47,"value":1314},"Unclear Project Context",{"type":42,"tag":57,"props":1316,"children":1317},{},[1318],{"type":47,"value":1319},"If user doesn't specify which project:",{"type":42,"tag":304,"props":1321,"children":1324},{"className":1322,"code":1323,"language":47},[307],"Which Jira project should I search for similar issues?\n\nAvailable projects:\n- BACKEND (Backend Services)\n- MOBILE (Mobile Apps)\n- WEB (Web Platform)\n- INFRA (Infrastructure)\n\nOr tell me the project key directly (e.g., BACKEND, MOBILE)\n",[1325],{"type":42,"tag":311,"props":1326,"children":1327},{"__ignoreMap":313},[1328],{"type":47,"value":1323},{"type":42,"tag":100,"props":1330,"children":1332},{"id":1331},"insufficient-information",[1333],{"type":47,"value":1334},"Insufficient Information",{"type":42,"tag":57,"props":1336,"children":1337},{},[1338],{"type":47,"value":1339},"If the bug report lacks critical details:",{"type":42,"tag":304,"props":1341,"children":1344},{"className":1342,"code":1343,"language":47},[307],"I need more information to effectively triage this issue:\n\n**What I have:**\n- Error: \"Something went wrong\"\n\n**What would help:**\n- Specific error message or code\n- Which part of the system (login, payment, etc.)\n- What the user was trying to do\n- Which environment (production, staging, mobile, web)\n\nCan you provide any of these details?\n",[1345],{"type":42,"tag":311,"props":1346,"children":1347},{"__ignoreMap":313},[1348],{"type":47,"value":1343},{"type":42,"tag":100,"props":1350,"children":1352},{"id":1351},"resolved-regression",[1353],{"type":47,"value":1354},"Resolved Regression",{"type":42,"tag":57,"props":1356,"children":1357},{},[1358],{"type":47,"value":1359},"If you find a resolved issue that matches:",{"type":42,"tag":304,"props":1361,"children":1364},{"className":1362,"code":1363,"language":47},[307],"🔍 **Triage Results: Possible Regression**\n\nThis looks like it might be a regression of a previously fixed issue:\n\n**PROJ-567** - [Same issue description]\nStatus: Resolved (Fixed) | Fixed: 3 months ago | Fixed by: @jane.smith\nResolution: [Brief description of fix]\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-567\n\n**This suggests:**\n- The original fix may not have fully addressed the root cause\n- OR there's been a regression in recent changes\n- OR this is a different issue with similar symptoms\n\n**Recommendation:** Create a new issue and link it to PROJ-567 as \"may be related to\" or \"regression of\"\n\nShould I create a new issue with this context?\n",[1365],{"type":42,"tag":311,"props":1366,"children":1367},{"__ignoreMap":313},[1368],{"type":47,"value":1363},{"type":42,"tag":100,"props":1370,"children":1372},{"id":1371},"custom-required-fields",[1373],{"type":47,"value":1374},"Custom Required Fields",{"type":42,"tag":57,"props":1376,"children":1377},{},[1378],{"type":47,"value":1379},"If creating an issue fails due to required fields:",{"type":42,"tag":1381,"props":1382,"children":1383},"ol",{},[1384],{"type":42,"tag":131,"props":1385,"children":1386},{},[1387],{"type":42,"tag":77,"props":1388,"children":1389},{},[1390],{"type":47,"value":1391},"Check what fields are required:",{"type":42,"tag":304,"props":1393,"children":1396},{"className":1394,"code":1395,"language":47},[307],"getJiraIssueTypeMetaWithFields(\n  cloudId=\"...\",\n  projectIdOrKey=\"PROJ\",\n  issueTypeId=\"10001\"\n)\n",[1397],{"type":42,"tag":311,"props":1398,"children":1399},{"__ignoreMap":313},[1400],{"type":47,"value":1395},{"type":42,"tag":1381,"props":1402,"children":1403},{"start":815},[1404],{"type":42,"tag":131,"props":1405,"children":1406},{},[1407],{"type":42,"tag":77,"props":1408,"children":1409},{},[1410],{"type":47,"value":1411},"Ask user for values:",{"type":42,"tag":304,"props":1413,"children":1416},{"className":1414,"code":1415,"language":47},[307],"This project requires additional fields to create a Bug:\n- Severity: [High\u002FMedium\u002FLow]\n- Affected Version: [Version number]\n\nPlease provide these values so I can create the issue.\n",[1417],{"type":42,"tag":311,"props":1418,"children":1419},{"__ignoreMap":313},[1420],{"type":47,"value":1415},{"type":42,"tag":1381,"props":1422,"children":1423},{"start":825},[1424],{"type":42,"tag":131,"props":1425,"children":1426},{},[1427],{"type":42,"tag":77,"props":1428,"children":1429},{},[1430],{"type":47,"value":1431},"Retry with additional fields:",{"type":42,"tag":304,"props":1433,"children":1436},{"className":1434,"code":1435,"language":47},[307],"createJiraIssue(\n  ...existing parameters...,\n  additional_fields={\n    \"priority\": {\"name\": \"High\"},\n    \"customfield_10001\": {\"value\": \"Production\"}\n  }\n)\n",[1437],{"type":42,"tag":311,"props":1438,"children":1439},{"__ignoreMap":313},[1440],{"type":47,"value":1435},{"type":42,"tag":85,"props":1442,"children":1443},{},[],{"type":42,"tag":50,"props":1445,"children":1447},{"id":1446},"tips-for-effective-triage",[1448],{"type":47,"value":1449},"Tips for Effective Triage",{"type":42,"tag":100,"props":1451,"children":1453},{"id":1452},"for-search",[1454],{"type":47,"value":1455},"For Search:",{"type":42,"tag":57,"props":1457,"children":1458},{},[1459,1464],{"type":42,"tag":77,"props":1460,"children":1461},{},[1462],{"type":47,"value":1463},"Do:",{"type":47,"value":1465},"\n✅ Use multiple search queries with different angles\n✅ Include both open and resolved issues in search\n✅ Search for error signatures and symptoms separately\n✅ Look at recent issues first (last 30-90 days)\n✅ Check for patterns (multiple reports of same thing)",{"type":42,"tag":57,"props":1467,"children":1468},{},[1469,1474],{"type":42,"tag":77,"props":1470,"children":1471},{},[1472],{"type":47,"value":1473},"Don't:",{"type":47,"value":1475},"\n❌ Search with entire error messages (too specific)\n❌ Only search open issues (miss fix history)\n❌ Ignore resolved issues (miss regressions)\n❌ Use too many keywords (reduces matches)",{"type":42,"tag":100,"props":1477,"children":1479},{"id":1478},"for-issue-creation",[1480],{"type":47,"value":1481},"For Issue Creation:",{"type":42,"tag":57,"props":1483,"children":1484},{},[1485,1489],{"type":42,"tag":77,"props":1486,"children":1487},{},[1488],{"type":47,"value":1463},{"type":47,"value":1490},"\n✅ Write clear, specific summaries with component names\n✅ Include complete error messages in code blocks\n✅ Add environment and impact details\n✅ Reference related issues found during search\n✅ Use \"Bug\" issue type for actual bugs",{"type":42,"tag":57,"props":1492,"children":1493},{},[1494,1498],{"type":42,"tag":77,"props":1495,"children":1496},{},[1497],{"type":47,"value":1473},{"type":47,"value":1499},"\n❌ Create vague summaries like \"Error in production\"\n❌ Paste entire stack traces in summary (use description)\n❌ Skip reproduction steps\n❌ Forget to mention user impact\n❌ Hard-code issue type without checking availability",{"type":42,"tag":100,"props":1501,"children":1503},{"id":1502},"for-duplicate-assessment",[1504],{"type":47,"value":1505},"For Duplicate Assessment:",{"type":42,"tag":57,"props":1507,"children":1508},{},[1509],{"type":42,"tag":77,"props":1510,"children":1511},{},[1512],{"type":47,"value":1513},"High Confidence Duplicates:",{"type":42,"tag":127,"props":1515,"children":1516},{},[1517,1522],{"type":42,"tag":131,"props":1518,"children":1519},{},[1520],{"type":47,"value":1521},"Exact same error + same component + recent (\u003C 30 days)",{"type":42,"tag":131,"props":1523,"children":1524},{},[1525],{"type":47,"value":1526},"Same root cause identified",{"type":42,"tag":57,"props":1528,"children":1529},{},[1530],{"type":42,"tag":77,"props":1531,"children":1532},{},[1533],{"type":47,"value":1534},"Likely Different Issues:",{"type":42,"tag":127,"props":1536,"children":1537},{},[1538,1543,1548],{"type":42,"tag":131,"props":1539,"children":1540},{},[1541],{"type":47,"value":1542},"Different error signatures",{"type":42,"tag":131,"props":1544,"children":1545},{},[1546],{"type":47,"value":1547},"Different components\u002Fsystems",{"type":42,"tag":131,"props":1549,"children":1550},{},[1551],{"type":47,"value":1552},"Significantly different contexts",{"type":42,"tag":57,"props":1554,"children":1555},{},[1556],{"type":42,"tag":77,"props":1557,"children":1558},{},[1559],{"type":47,"value":1560},"When Unsure:",{"type":42,"tag":127,"props":1562,"children":1563},{},[1564,1569,1574],{"type":42,"tag":131,"props":1565,"children":1566},{},[1567],{"type":47,"value":1568},"Present both options to user",{"type":42,"tag":131,"props":1570,"children":1571},{},[1572],{"type":47,"value":1573},"Lean toward creating new issue (can be closed as duplicate later)",{"type":42,"tag":131,"props":1575,"children":1576},{},[1577],{"type":47,"value":1578},"Linking issues is better than hiding information",{"type":42,"tag":85,"props":1580,"children":1581},{},[],{"type":42,"tag":50,"props":1583,"children":1585},{"id":1584},"examples",[1586],{"type":47,"value":1587},"Examples",{"type":42,"tag":100,"props":1589,"children":1591},{"id":1590},"example-1-clear-duplicate-found",[1592],{"type":47,"value":1593},"Example 1: Clear Duplicate Found",{"type":42,"tag":57,"props":1595,"children":1596},{},[1597],{"type":42,"tag":77,"props":1598,"children":1599},{},[1600],{"type":47,"value":1601},"User Input:",{"type":42,"tag":304,"props":1603,"children":1606},{"className":1604,"code":1605,"language":47},[307],"Triage this error: \"Connection timeout error when users try to login on iOS app\"\n",[1607],{"type":42,"tag":311,"props":1608,"children":1609},{"__ignoreMap":313},[1610],{"type":47,"value":1605},{"type":42,"tag":57,"props":1612,"children":1613},{},[1614],{"type":42,"tag":77,"props":1615,"children":1616},{},[1617],{"type":47,"value":1618},"Process:",{"type":42,"tag":1381,"props":1620,"children":1621},{},[1622,1627,1632,1637,1642,1647],{"type":42,"tag":131,"props":1623,"children":1624},{},[1625],{"type":47,"value":1626},"Extract: \"Connection timeout\", \"login\", \"iOS\"",{"type":42,"tag":131,"props":1628,"children":1629},{},[1630],{"type":47,"value":1631},"Search: Find PROJ-456 (open, 2 days ago) with exact same error",{"type":42,"tag":131,"props":1633,"children":1634},{},[1635],{"type":47,"value":1636},"Analyze: 95% match - same error, component, symptom",{"type":42,"tag":131,"props":1638,"children":1639},{},[1640],{"type":47,"value":1641},"Present: Show PROJ-456 as duplicate, recommend adding comment",{"type":42,"tag":131,"props":1643,"children":1644},{},[1645],{"type":47,"value":1646},"Execute: User confirms, add comment with iOS-specific details",{"type":42,"tag":131,"props":1648,"children":1649},{},[1650],{"type":47,"value":1651},"Confirm: Comment added to PROJ-456",{"type":42,"tag":57,"props":1653,"children":1654},{},[1655],{"type":42,"tag":77,"props":1656,"children":1657},{},[1658],{"type":47,"value":1659},"Output:",{"type":42,"tag":304,"props":1661,"children":1664},{"className":1662,"code":1663,"language":47},[307],"✅ Comment added to PROJ-456\n\nYour iOS-specific error details have been added to the existing issue.\nThe assignee will be notified.\n",[1665],{"type":42,"tag":311,"props":1666,"children":1667},{"__ignoreMap":313},[1668],{"type":47,"value":1663},{"type":42,"tag":100,"props":1670,"children":1672},{"id":1671},"example-2-new-issue-with-related-context",[1673],{"type":47,"value":1674},"Example 2: New Issue with Related Context",{"type":42,"tag":57,"props":1676,"children":1677},{},[1678],{"type":42,"tag":77,"props":1679,"children":1680},{},[1681],{"type":47,"value":1601},{"type":42,"tag":304,"props":1683,"children":1686},{"className":1684,"code":1685,"language":47},[307],"Error: NullPointerException in PaymentProcessor.processRefund() at line 245\nStack trace: [full stack trace]\n",[1687],{"type":42,"tag":311,"props":1688,"children":1689},{"__ignoreMap":313},[1690],{"type":47,"value":1685},{"type":42,"tag":57,"props":1692,"children":1693},{},[1694],{"type":42,"tag":77,"props":1695,"children":1696},{},[1697],{"type":47,"value":1618},{"type":42,"tag":1381,"props":1699,"children":1700},{},[1701,1706,1711,1716,1721,1726],{"type":42,"tag":131,"props":1702,"children":1703},{},[1704],{"type":47,"value":1705},"Extract: \"NullPointerException\", \"PaymentProcessor\", \"processRefund\", \"line 245\"",{"type":42,"tag":131,"props":1707,"children":1708},{},[1709],{"type":47,"value":1710},"Search: Find PROJ-789 (resolved, 3 weeks ago) about payment errors, but different line",{"type":42,"tag":131,"props":1712,"children":1713},{},[1714],{"type":47,"value":1715},"Analyze: Related component but different specific error",{"type":42,"tag":131,"props":1717,"children":1718},{},[1719],{"type":47,"value":1720},"Present: No duplicates, found related issue, recommend new ticket",{"type":42,"tag":131,"props":1722,"children":1723},{},[1724],{"type":47,"value":1725},"Execute: User confirms, create new Bug with context",{"type":42,"tag":131,"props":1727,"children":1728},{},[1729],{"type":47,"value":1730},"Confirm: PROJ-890 created",{"type":42,"tag":57,"props":1732,"children":1733},{},[1734],{"type":42,"tag":77,"props":1735,"children":1736},{},[1737],{"type":47,"value":1659},{"type":42,"tag":304,"props":1739,"children":1742},{"className":1740,"code":1741,"language":47},[307],"✅ New Issue Created\n\nPROJ-890 - Payment API: NullPointerException in refund processing\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-890\n\nReferences related issue PROJ-789 for context.\n",[1743],{"type":42,"tag":311,"props":1744,"children":1745},{"__ignoreMap":313},[1746],{"type":47,"value":1741},{"type":42,"tag":100,"props":1748,"children":1750},{"id":1749},"example-3-possible-regression",[1751],{"type":47,"value":1752},"Example 3: Possible Regression",{"type":42,"tag":57,"props":1754,"children":1755},{},[1756],{"type":42,"tag":77,"props":1757,"children":1758},{},[1759],{"type":47,"value":1601},{"type":42,"tag":304,"props":1761,"children":1764},{"className":1762,"code":1763,"language":47},[307],"Users can't upload files larger than 5MB, getting \"Upload failed\" error\n",[1765],{"type":42,"tag":311,"props":1766,"children":1767},{"__ignoreMap":313},[1768],{"type":47,"value":1763},{"type":42,"tag":57,"props":1770,"children":1771},{},[1772],{"type":42,"tag":77,"props":1773,"children":1774},{},[1775],{"type":47,"value":1618},{"type":42,"tag":1381,"props":1777,"children":1778},{},[1779,1784,1789,1794,1799,1804],{"type":42,"tag":131,"props":1780,"children":1781},{},[1782],{"type":47,"value":1783},"Extract: \"Upload failed\", \"5MB\", \"file upload\"",{"type":42,"tag":131,"props":1785,"children":1786},{},[1787],{"type":47,"value":1788},"Search: Find PROJ-234 (resolved 2 months ago) - exact same issue",{"type":42,"tag":131,"props":1790,"children":1791},{},[1792],{"type":47,"value":1793},"Analyze: Was fixed but now happening again",{"type":42,"tag":131,"props":1795,"children":1796},{},[1797],{"type":47,"value":1798},"Present: Possible regression, recommend new issue linked to old one",{"type":42,"tag":131,"props":1800,"children":1801},{},[1802],{"type":47,"value":1803},"Execute: Create new issue, link to PROJ-234 as \"may be caused by\"",{"type":42,"tag":131,"props":1805,"children":1806},{},[1807],{"type":47,"value":1808},"Confirm: PROJ-891 created with regression context",{"type":42,"tag":57,"props":1810,"children":1811},{},[1812],{"type":42,"tag":77,"props":1813,"children":1814},{},[1815],{"type":47,"value":1659},{"type":42,"tag":304,"props":1817,"children":1820},{"className":1818,"code":1819,"language":47},[307],"✅ New Issue Created (Possible Regression)\n\nPROJ-891 - File Upload: Upload failed for files >5MB (Regression?)\nhttps:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-891\n\nThis may be a regression of PROJ-234, which was resolved 2 months ago.\nIssue includes reference to original fix for investigation.\n",[1821],{"type":42,"tag":311,"props":1822,"children":1823},{"__ignoreMap":313},[1824],{"type":47,"value":1819},{"type":42,"tag":85,"props":1826,"children":1827},{},[],{"type":42,"tag":50,"props":1829,"children":1831},{"id":1830},"when-not-to-use-this-skill",[1832],{"type":47,"value":1833},"When NOT to Use This Skill",{"type":42,"tag":57,"props":1835,"children":1836},{},[1837,1839,1844],{"type":47,"value":1838},"This skill is for ",{"type":42,"tag":77,"props":1840,"children":1841},{},[1842],{"type":47,"value":1843},"triaging bugs and errors only",{"type":47,"value":1845},". Do NOT use for:",{"type":42,"tag":57,"props":1847,"children":1848},{},[1849],{"type":47,"value":1850},"❌ Feature requests (use spec-to-backlog)\n❌ General task creation (use capture-tasks-from-meeting-notes)\n❌ Searching for information (use search-company-knowledge)\n❌ Generating status reports (use generate-status-report)",{"type":42,"tag":57,"props":1852,"children":1853},{},[1854,1859],{"type":42,"tag":77,"props":1855,"children":1856},{},[1857],{"type":47,"value":1858},"Use this skill specifically for:",{"type":47,"value":1860},"\n✅ \"Is this a duplicate bug?\"\n✅ \"Triage this error message\"\n✅ \"Has this been reported before?\"\n✅ \"Create a bug ticket for this\"",{"type":42,"tag":85,"props":1862,"children":1863},{},[],{"type":42,"tag":50,"props":1865,"children":1867},{"id":1866},"quick-reference",[1868],{"type":47,"value":1869},"Quick Reference",{"type":42,"tag":57,"props":1871,"children":1872},{},[1873,1878],{"type":42,"tag":77,"props":1874,"children":1875},{},[1876],{"type":47,"value":1877},"Primary workflow:",{"type":47,"value":1879}," Extract → Search → Analyze → Present → Execute → Confirm",{"type":42,"tag":57,"props":1881,"children":1882},{},[1883,1888,1890],{"type":42,"tag":77,"props":1884,"children":1885},{},[1886],{"type":47,"value":1887},"Search tool:",{"type":47,"value":1889}," ",{"type":42,"tag":311,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":47,"value":1895},"searchJiraIssuesUsingJql(cloudId, jql, fields, maxResults)",{"type":42,"tag":57,"props":1897,"children":1898},{},[1899],{"type":42,"tag":77,"props":1900,"children":1901},{},[1902],{"type":47,"value":1903},"Action tools:",{"type":42,"tag":127,"props":1905,"children":1906},{},[1907,1918],{"type":42,"tag":131,"props":1908,"children":1909},{},[1910,1916],{"type":42,"tag":311,"props":1911,"children":1913},{"className":1912},[],[1914],{"type":47,"value":1915},"addCommentToJiraIssue(cloudId, issueIdOrKey, commentBody)",{"type":47,"value":1917}," - Add to existing",{"type":42,"tag":131,"props":1919,"children":1920},{},[1921,1927],{"type":42,"tag":311,"props":1922,"children":1924},{"className":1923},[],[1925],{"type":47,"value":1926},"createJiraIssue(cloudId, projectKey, issueTypeName, summary, description)",{"type":47,"value":1928}," - Create new",{"type":42,"tag":57,"props":1930,"children":1931},{},[1932,1937,1939],{"type":42,"tag":77,"props":1933,"children":1934},{},[1935],{"type":47,"value":1936},"Issue type:",{"type":47,"value":1938}," Always prefer \"Bug\" for error reports, check with ",{"type":42,"tag":311,"props":1940,"children":1942},{"className":1941},[],[1943],{"type":47,"value":1944},"getJiraProjectIssueTypesMetadata",{"type":42,"tag":57,"props":1946,"children":1947},{},[1948],{"type":42,"tag":77,"props":1949,"children":1950},{},[1951],{"type":47,"value":1952},"Remember:",{"type":42,"tag":127,"props":1954,"children":1955},{},[1956,1961,1966,1971,1976],{"type":42,"tag":131,"props":1957,"children":1958},{},[1959],{"type":47,"value":1960},"Multiple searches catch more duplicates",{"type":42,"tag":131,"props":1962,"children":1963},{},[1964],{"type":47,"value":1965},"Present findings before acting",{"type":42,"tag":131,"props":1967,"children":1968},{},[1969],{"type":47,"value":1970},"Include error details and context",{"type":42,"tag":131,"props":1972,"children":1973},{},[1974],{"type":47,"value":1975},"Reference related issues",{"type":42,"tag":131,"props":1977,"children":1978},{},[1979],{"type":47,"value":1980},"Use \"Bug\" issue type when available",{"type":42,"tag":1982,"props":1983,"children":1984},"style",{},[1985],{"type":47,"value":1986},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1988,"total":2193},[1989,2010,2033,2050,2066,2085,2104,2120,2136,2150,2162,2177],{"slug":1990,"name":1990,"fn":1991,"description":1992,"org":1993,"tags":1994,"stars":2007,"repoUrl":2008,"updatedAt":2009},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1995,1998,2001,2004],{"name":1996,"slug":1997,"type":15},"Documents","documents",{"name":1999,"slug":2000,"type":15},"Healthcare","healthcare",{"name":2002,"slug":2003,"type":15},"Insurance","insurance",{"name":2005,"slug":2006,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2011,"name":2011,"fn":2012,"description":2013,"org":2014,"tags":2015,"stars":2030,"repoUrl":2031,"updatedAt":2032},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2016,2019,2021,2024,2027],{"name":2017,"slug":2018,"type":15},".NET","dotnet",{"name":2020,"slug":2011,"type":15},"ASP.NET Core",{"name":2022,"slug":2023,"type":15},"Blazor","blazor",{"name":2025,"slug":2026,"type":15},"C#","csharp",{"name":2028,"slug":2029,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2034,"name":2034,"fn":2035,"description":2036,"org":2037,"tags":2038,"stars":2030,"repoUrl":2031,"updatedAt":2049},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2039,2042,2045,2048],{"name":2040,"slug":2041,"type":15},"Apps SDK","apps-sdk",{"name":2043,"slug":2044,"type":15},"ChatGPT","chatgpt",{"name":2046,"slug":2047,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2051,"name":2051,"fn":2052,"description":2053,"org":2054,"tags":2055,"stars":2030,"repoUrl":2031,"updatedAt":2065},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2056,2059,2062],{"name":2057,"slug":2058,"type":15},"API Development","api-development",{"name":2060,"slug":2061,"type":15},"CLI","cli",{"name":2063,"slug":2064,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2067,"name":2067,"fn":2068,"description":2069,"org":2070,"tags":2071,"stars":2030,"repoUrl":2031,"updatedAt":2084},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2072,2075,2078,2081],{"name":2073,"slug":2074,"type":15},"Cloudflare","cloudflare",{"name":2076,"slug":2077,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2079,"slug":2080,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2082,"slug":2083,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2086,"name":2086,"fn":2087,"description":2088,"org":2089,"tags":2090,"stars":2030,"repoUrl":2031,"updatedAt":2103},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2091,2094,2097,2100],{"name":2092,"slug":2093,"type":15},"Productivity","productivity",{"name":2095,"slug":2096,"type":15},"Project Management","project-management",{"name":2098,"slug":2099,"type":15},"Strategy","strategy",{"name":2101,"slug":2102,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2105,"name":2105,"fn":2106,"description":2107,"org":2108,"tags":2109,"stars":2030,"repoUrl":2031,"updatedAt":2119},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2110,2113,2115,2118],{"name":2111,"slug":2112,"type":15},"Design","design",{"name":2114,"slug":2105,"type":15},"Figma",{"name":2116,"slug":2117,"type":15},"Frontend","frontend",{"name":2046,"slug":2047,"type":15},"2026-04-12T05:06:47.939943",{"slug":2121,"name":2121,"fn":2122,"description":2123,"org":2124,"tags":2125,"stars":2030,"repoUrl":2031,"updatedAt":2135},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2126,2127,2130,2131,2132],{"name":2111,"slug":2112,"type":15},{"name":2128,"slug":2129,"type":15},"Design System","design-system",{"name":2114,"slug":2105,"type":15},{"name":2116,"slug":2117,"type":15},{"name":2133,"slug":2134,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2137,"name":2137,"fn":2138,"description":2139,"org":2140,"tags":2141,"stars":2030,"repoUrl":2031,"updatedAt":2149},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2142,2143,2144,2147,2148],{"name":2111,"slug":2112,"type":15},{"name":2128,"slug":2129,"type":15},{"name":2145,"slug":2146,"type":15},"Documentation","documentation",{"name":2114,"slug":2105,"type":15},{"name":2116,"slug":2117,"type":15},"2026-05-16T06:07:47.821474",{"slug":2151,"name":2151,"fn":2152,"description":2153,"org":2154,"tags":2155,"stars":2030,"repoUrl":2031,"updatedAt":2161},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2156,2157,2158,2159,2160],{"name":2111,"slug":2112,"type":15},{"name":2114,"slug":2105,"type":15},{"name":2116,"slug":2117,"type":15},{"name":2133,"slug":2134,"type":15},{"name":2028,"slug":2029,"type":15},"2026-05-16T06:07:40.583615",{"slug":2163,"name":2163,"fn":2164,"description":2165,"org":2166,"tags":2167,"stars":2030,"repoUrl":2031,"updatedAt":2176},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2168,2171,2172,2175],{"name":2169,"slug":2170,"type":15},"Animation","animation",{"name":2063,"slug":2064,"type":15},{"name":2173,"slug":2174,"type":15},"Creative","creative",{"name":2111,"slug":2112,"type":15},"2026-05-02T05:31:48.48485",{"slug":2178,"name":2178,"fn":2179,"description":2180,"org":2181,"tags":2182,"stars":2030,"repoUrl":2031,"updatedAt":2192},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2183,2184,2185,2188,2191],{"name":2173,"slug":2174,"type":15},{"name":2111,"slug":2112,"type":15},{"name":2186,"slug":2187,"type":15},"Image Generation","image-generation",{"name":2189,"slug":2190,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2195,"total":2309},[2196,2213,2229,2241,2259,2277,2297],{"slug":2197,"name":2197,"fn":2198,"description":2199,"org":2200,"tags":2201,"stars":25,"repoUrl":26,"updatedAt":2212},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2202,2205,2208,2211],{"name":2203,"slug":2204,"type":15},"Accessibility","accessibility",{"name":2206,"slug":2207,"type":15},"Charts","charts",{"name":2209,"slug":2210,"type":15},"Data Visualization","data-visualization",{"name":2111,"slug":2112,"type":15},"2026-06-30T19:00:57.102",{"slug":2214,"name":2214,"fn":2215,"description":2216,"org":2217,"tags":2218,"stars":25,"repoUrl":26,"updatedAt":2228},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2219,2222,2225],{"name":2220,"slug":2221,"type":15},"Agents","agents",{"name":2223,"slug":2224,"type":15},"Browser Automation","browser-automation",{"name":2226,"slug":2227,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2230,"name":2230,"fn":2231,"description":2232,"org":2233,"tags":2234,"stars":25,"repoUrl":26,"updatedAt":2240},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2235,2236,2239],{"name":2223,"slug":2224,"type":15},{"name":2237,"slug":2238,"type":15},"Local Development","local-development",{"name":2226,"slug":2227,"type":15},"2026-04-06T18:41:17.526867",{"slug":2242,"name":2242,"fn":2243,"description":2244,"org":2245,"tags":2246,"stars":25,"repoUrl":26,"updatedAt":2258},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2247,2248,2249,2252,2255],{"name":2220,"slug":2221,"type":15},{"name":2079,"slug":2080,"type":15},{"name":2250,"slug":2251,"type":15},"SDK","sdk",{"name":2253,"slug":2254,"type":15},"Serverless","serverless",{"name":2256,"slug":2257,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2260,"name":2260,"fn":2261,"description":2262,"org":2263,"tags":2264,"stars":25,"repoUrl":26,"updatedAt":2276},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2265,2266,2269,2272,2273],{"name":2116,"slug":2117,"type":15},{"name":2267,"slug":2268,"type":15},"React","react",{"name":2270,"slug":2271,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2133,"slug":2134,"type":15},{"name":2274,"slug":2275,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2278,"name":2278,"fn":2279,"description":2280,"org":2281,"tags":2282,"stars":25,"repoUrl":26,"updatedAt":2296},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2283,2286,2289,2292,2295],{"name":2284,"slug":2285,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2287,"slug":2288,"type":15},"Cost Optimization","cost-optimization",{"name":2290,"slug":2291,"type":15},"LLM","llm",{"name":2293,"slug":2294,"type":15},"Performance","performance",{"name":2274,"slug":2275,"type":15},"2026-04-06T18:40:44.377464",{"slug":2298,"name":2298,"fn":2299,"description":2300,"org":2301,"tags":2302,"stars":25,"repoUrl":26,"updatedAt":2308},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2303,2304,2307],{"name":2287,"slug":2288,"type":15},{"name":2305,"slug":2306,"type":15},"Database","database",{"name":2290,"slug":2291,"type":15},"2026-04-06T18:41:08.513425",600]