원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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" }] }]
}
]
}