بنقرة واحدة
jira-tasks
Create Jira tasks from a planning document with clear, actionable descriptions
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create Jira tasks from a planning document with clear, actionable descriptions
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a structured implementation plan for a feature request. Covers architecture, system design, module design, pattern selection, and milestone-based task planning with DoD. Use when the user describes a new feature, significant change, or multi-step implementation task.
Execute an implementation plan milestone-by-milestone. Reads the plan, reviews lessons, then implements tasks using agents for parallelizable work. Invoke with /scrum-implement <plan-file-path> or triggered when the user asks to implement/execute a plan.
Extract lessons from a retrospective and review skills/agents for improvements. Creates lesson files in ~/Claude/lessons/ and suggests concrete changes to scrum skills. Invoke with /scrum-lessons <retrospective-path> or after running /scrum-retro.
Generate a sprint retrospective from a plan file and tech lead feedback. Analyzes what was planned vs what was built, identifies root causes, and produces actionable takeaways. Invoke with /scrum-retro <plan-file-path> or triggered when the user asks to create a retrospective.
Temporal Python SDK (`temporalio`) patterns, determinism rules, error handling, and testing. Trigger: When writing Temporal workflows, activities, or workers in Python, or when the user mentions Temporal, durable workflows, or the Python SDK in the context of workflow orchestration. Activated when working on files importing `temporalio`, `@activity.defn`, `@workflow.defn`, in directories named `temporal_app/`, `workflows/`, `activities/`, or when user asks about Temporal concepts, determinism, replay, signals, or activity patterns.
Set up a new Python/Django project with uv, ruff, basedpyright, pre-commit hooks, Justfile, Docker Compose, and CI. Invoke when starting a new Python project or when asked to set up project tooling.
| name | jira-tasks |
| description | Create Jira tasks from a planning document with clear, actionable descriptions |
| trigger | When the user asks to create Jira issues/tasks/stories from a planning document, spec, or list of work items. Also triggered when user provides a structured list of tasks and asks to put them in Jira. |
$ARGUMENTS
Parse the provided planning document and create Jira issues with clear, actionable descriptions that save engineers time.
NEVER invent or assume requirements. Use ONLY what's explicitly stated in the input document. If the input says "try/catching and retries", that's what goes in the description - don't expand it to "unified interface" or "plugin architecture" unless the document says that.
Before creating issues, clarify with the user:
Project:
Epic:
Assignees (if needed):
Extract:
[Xd] or [Xh])Ask the user: "Do any of these tasks need to be split into Jira subtasks?"
Create subtasks when:
DON'T create subtasks when:
If a task has no explicit DoD in the original document:
## Definition of Done
- [Copy DoD items exactly from original document]
## Tasks
- [Xh] Task description from original
- [Xh] Another task
## Tasks
- [Xh] Task description from original
- [Xh] Another task
Then ask user if they want to add DoD.
DoD items MUST be:
DoD items MUST NOT:
[3d] = 3 days, [4h] = 4 hoursoriginalEstimate field on each issueInput:
- Simple Accounts (manual account creation):
- DoD:
- User accounts can be created by request
- Users can login/logout to the accounts via login/password
- Entities (transcripts/videos) are user-bound both on FE and BE
- [1h] Configure drf AuthUser model
- [2h] Update other models (Transcript, Element, etc) to use reference to the AuthUser model
- [1h] Add JWT auth
- [4h] Add auth on frontend (JWT auth, GET /me)
Output:
## Definition of Done
- User accounts can be created by request
- Users can login/logout via login/password
- Entities (transcripts/videos) are user-bound both on FE and BE
## Tasks
- [1h] Configure DRF AuthUser model
- [2h] Update other models (Transcript, Element, etc) to use reference to AuthUser
- [1h] Add JWT auth
- [4h] Add auth on frontend (JWT auth, GET /me)
Input:
- [3d] DevOps Tasks:
- Setup GKE
- Setup staging deployment
- Setup production deployment
Output:
## Tasks
- Setup GKE
- Setup staging deployment
- Setup production deployment
Then ask: "This task has no explicit DoD. Would you like to add one? For example:
Based on best practices from: