Create, update, and track implementation tasks within stories.
/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, update, and track implementation tasks within stories.
| Tool | Purpose |
|---|---|
Atlassian:createJiraIssue | Create tasks |
Atlassian:editJiraIssue | Update task details |
Atlassian:transitionJiraIssue | Move through workflow |
Atlassian:addCommentToJiraIssue | Add progress notes |
Atlassian:getTransitionsForJiraIssue | Get available status transitions |
{
"cloudId": "{{jira.cloudId}}",
"projectKey": "{{jira.development.projectKey}}",
"issueTypes": {
"task": "{{jira.development.issueTypes.task}}",
"subtask": "{{jira.development.issueTypes.subtask}}"
}
}
## Description
[What needs to be done]
## Implementation Notes
- [Technical detail 1]
- [Technical detail 2]
## Files to Modify
- `path/to/file1`
- `path/to/file2`
## Acceptance Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
- [ ] Unit tests written
- [ ] Code documented
## Estimate
[X hours or story points]
Atlassian:createJiraIssue({
cloudId: "{{jira.cloudId}}",
projectKey: "{{jira.development.projectKey}}",
issueTypeName: "Task",
summary: "Implement password reset API endpoint",
description: `## Description
Create the POST /api/auth/reset-password endpoint that initiates the password reset flow.
## Implementation Notes
- Use existing EmailService for sending
- Generate secure token with 24h expiry
- Rate limit to 3 requests per email per hour
- Log all reset attempts for security audit
## Files to Modify
- \`src/Controllers/AuthController.cs\`
- \`src/Services/PasswordResetService.cs\` (new)
- \`src/Services/EmailService.cs\`
## Acceptance Criteria
- [ ] Endpoint accepts email in request body
- [ ] Returns 200 OK regardless of email existence (security)
- [ ] Sends email if account exists
- [ ] Rate limiting works correctly
- [ ] Unit tests cover all scenarios
- [ ] Integration test for full flow
## Estimate
3 hours`,
labels: ["agent-generated"],
parent: { key: "MDDEV-45" } // Link to parent story
})
// First, get available transitions
const transitions = await Atlassian:getTransitionsForJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "MDDEV-46"
});
// Then transition
Atlassian:transitionJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "MDDEV-46",
transition: { id: "21" } // ID from transitions response
})
Atlassian:addCommentToJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "MDDEV-46",
commentBody: `š¤ **Junior Developer Agent**
**Progress Update:**
ā
Endpoint created
ā
Token generation working
ā
Email service integration complete
š Working on rate limiting
⬠Unit tests pending
**Blockers:** None
**ETA:** Will complete today`
})
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 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 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.