用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HashWarlock/clawdi-plugins --skill sprint-planning命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | sprint_planning |
| description | Plan the next sprint by reviewing the backlog, assessing capacity, and proposing a sprint scope |
| metadata | {"openclaw":{"tags":["product-management","sprint","planning","agile"]}} |
Plan the next sprint by reviewing the current backlog, assessing team capacity and recent velocity, and proposing a balanced sprint scope. This skill pulls from project management tools and recent team context to produce an actionable sprint plan.
Activate this skill when the user wants to:
Establish the sprint context:
Use capability_execute with the following parameters:
project.list_tasksproduct-managementstatus: "backlog" or "todo" (unstarted tasks ready for sprint)sortBy: "priority"maxResults: 40project: the team or project if specifiedFrom the results, categorize tasks:
Use capability_execute with the following parameters:
project.list_tasksproduct-managementstatus: "in_progress"maxResults: 20project: the team or project if specifiedIdentify:
Use capability_execute with the following parameters:
calendar.read_eventsproduct-managementdateRange: the sprint date rangemaxResults: 20Look for:
This capability is optional. If unavailable, estimate capacity without calendar data and note the limitation.
Use capability_execute with the following parameters:
chat.search_messagesproduct-managementquery: "sprint planning" or the project namemaxResults: 10dateRange: last 7 daysLook for:
This capability is optional. If unavailable, proceed without chat context.
Compose a balanced sprint plan:
## Sprint Plan: {sprint name or number}
**Dates:** {start date} - {end date} ({duration})
**Team/Project:** {team or project name}
---
### Sprint Goals
1. {goal 1: the main thing the team should accomplish this sprint}
2. {goal 2}
3. {goal 3}
### Carry-Over from Previous Sprint ({count} items)
| Task | Status | Assignee | Estimate | Notes |
|------|--------|----------|----------|-------|
| {task title} | {in progress / blocked} | {assignee} | {estimate} | {why it carried over} |
| {task title} | {status} | {assignee} | {estimate} | {notes} |
### Proposed New Work ({count} items)
**P0 -- Must Do**
| Task | Priority | Assignee | Estimate | Rationale |
|------|----------|----------|----------|-----------|
| {task title} | P0 | {assignee or unassigned} | {estimate} | {why this is P0} |
| {task title} | P0 | {assignee} | {estimate} | {rationale} |
**P1 -- Should Do**
| Task | Priority | Assignee | Estimate | Rationale |
|------|----------|----------|----------|-----------|
| {task title} | P1 | {assignee} | {estimate} | {rationale} |
| {task title} | P1 | {assignee} | {estimate} | {rationale} |
**P2 -- Stretch Goals**
| Task | Priority | Estimate | Notes |
|------|----------|----------|-------|
| {task title} | P2 | {estimate} | {notes} |
### Needs Refinement (Not Ready for Sprint)
- {task title}: {what needs to be clarified before committing}
- {task title}: {what needs clarification}
### Capacity Notes
- **Scheduled commitments:** {count} meetings, {any releases or demos}
- **Known absences:** {team members out and when}
- **Estimated available capacity:** {estimate}
- **Proposed workload:** {total estimate of committed items}
- **Buffer:** {remaining capacity as percentage}
### Blockers and Risks
1. **{blocker}:** {description and proposed resolution}
2. **{risk}:** {description and mitigation}
### Dependencies
- {task} depends on {team or system} for {what}
- {task} depends on {external factor}
---
*Backlog items reviewed: {count}. Items proposed: {count}. Items deferred: {count}.*
If the user wants to update the project management tool with the sprint plan,
offer to create tasks using capability_execute with project.create_task
for any new items that need to be added.