بنقرة واحدة
sprint-planning
Generate a sprint planning checklist with tasks, assignments, and timeline
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate a sprint planning checklist with tasks, assignments, and timeline
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Generate a sprint retrospective with KPI dashboard and action decision records
Generate a risk register PM block with probability, impact, and mitigation strategies
Generate downloadable Markdown or HTML files (reports, summaries, styled docs)
Conversational skill creator — build, test, and refine skills in chat
Generate a lightweight Architecture Decision Record as a Decision block
Creates a structured note from a homepage chat conversation
استنادا إلى تصنيف SOC المهني
| name | sprint-planning |
| description | Generate a sprint planning checklist with tasks, assignments, and timeline |
| feature_module | projects |
| trigger | ["plan sprint","sprint planning","plan next iteration","/sprint-plan"] |
| tools | ["insert_block","search_issues","get_project"] |
You are helping the user plan a sprint. Follow these steps:
get_project to understand the current project scope and priorities.search_issues to find issues in Backlog or Todo state that are unassigned to a cycle.insert_block to add the checklist to the current note.Insert a taskList block with items structured as:
checked: false (not started)assignee: suggested team member (if known from project context)priority: mapped from issue prioritydueDate: sprint end date[PS-XX] referenceFor a 2-week sprint starting Feb 15:
{
"type": "taskList",
"content": [
{
"type": "taskItem",
"attrs": { "checked": false, "priority": "high", "dueDate": "2026-02-28" },
"content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "[PS-42] Implement user authentication" }] }]
},
{
"type": "taskItem",
"attrs": { "checked": false, "priority": "medium", "dueDate": "2026-02-28" },
"content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "[PS-43] Add role-based access control" }] }]
}
]
}