Create and manage bug reports in the dedicated bugs project.
/plugin marketplace add marcel-Ngan/ai-dev-team/plugin install marcel-ngan-ai-dev-team@marcel-Ngan/ai-dev-teamThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Create and manage bug reports in the dedicated bugs project.
| Tool | Purpose |
|---|---|
Atlassian:createJiraIssue | Create bug reports |
Atlassian:editJiraIssue | Update bug status/details |
Atlassian:addCommentToJiraIssue | Add investigation notes |
Atlassian:transitionJiraIssue | Move bug through workflow |
Atlassian:searchJiraIssuesUsingJql | Find related bugs |
{
"cloudId": "{{jira.cloudId}}",
"projectKey": "{{jira.bugs.projectKey}}",
"issueTypes": {
"bug": "{{jira.bugs.issueTypes.bug}}"
}
}
## Summary
[Clear, specific description of the bug]
## Environment
- **Browser/Device:** [e.g., Chrome 120, Windows 11]
- **Environment:** [Dev/Staging/Production]
- **Version/Build:** [If applicable]
- **User Role:** [If relevant]
## Steps to Reproduce
1. [Specific step 1]
2. [Specific step 2]
3. [Specific step 3]
## Expected Result
[What should happen]
## Actual Result
[What actually happens]
## Evidence
- Screenshots: [Attached]
- Console Errors: [If any]
- Logs: [If relevant]
## Severity
[Critical/Major/Minor/Trivial]
## Impact
[Who is affected and how badly]
## Workaround
[If any workaround exists]
## Related
- Story: [PROJECT-XX] (if related to a story)
- Similar bugs: [BUG-XX] (if related to other bugs)
Atlassian:createJiraIssue({
cloudId: "{{jira.cloudId}}",
projectKey: "{{jira.bugs.projectKey}}",
issueTypeName: "Bug",
summary: "Password reset email not sent for Gmail addresses",
description: `## Summary
Password reset emails are not being delivered to Gmail addresses. Other email providers work correctly.
## Environment
- **Browser/Device:** Chrome 120, Windows 11
- **Environment:** Staging
- **Version/Build:** v2.3.1
## Steps to Reproduce
1. Go to login page
2. Click "Forgot Password"
3. Enter a Gmail address (e.g., test@gmail.com)
4. Click "Send Reset Link"
5. Wait 10+ minutes
## Expected Result
User receives password reset email within 5 minutes.
## Actual Result
No email is received. No error is shown to user. Email appears in send queue but marked as "failed".
## Evidence
- Screenshot of email queue showing failed status attached
- Server logs show "550 5.7.1 rejected by Gmail" error
## Severity
Major
## Impact
~40% of users use Gmail and cannot reset their passwords.
## Workaround
Users can contact support for manual password reset.
## Related
- Story: MDDEV-45 (Password reset feature)`,
labels: ["agent-generated", "email", "authentication"]
})
| Severity | Definition | Response |
|---|---|---|
| Critical | System down, data loss, security breach | Immediate fix required |
| Major | Feature completely broken, no workaround | Fix in current sprint |
| Minor | Feature broken but workaround exists | Fix when possible |
| Trivial | Cosmetic issue, typo | Low priority |
Atlassian:addCommentToJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "MDB-15",
commentBody: `🤖 **QA Engineer Agent**
**Investigation Notes:**
Root cause identified: Gmail is rejecting emails due to missing SPF record for new sending domain.
**Technical Details:**
- Error: 550 5.7.1 SPF check failed
- Domain: notifications.example.com
- Missing: SPF TXT record
**Recommended Fix:**
Add SPF record to DNS:
\`v=spf1 include:_spf.google.com include:sendgrid.net ~all\`
Assigning to DevOps for DNS update.`
})
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.