Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计通过

scrum-master敏捷大师

Agent Skill

scrum-master 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,070

周安装

123

GitHub Stars

404

下载量

994
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scrum-master(敏捷大师)
来源仓库:https://github.com/aj-geddes/claude-code-bmad-skills
仓库路径:skills/scrum-master
安装命令:
npx skills add https://github.com/aj-geddes/claude-code-bmad-skills --skill 'Scrum Master'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/aj-geddes/claude-code-bmad-skills --skill 'Scrum Master'

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息。

  • 适合围绕仓库状态、代码变更进行整理。
  • 可结合来源仓库 README 核验具体功能实现。
  • 安装前建议确认权限范围和是否触发命令执行。
  • 注意避免对私有仓库进行未授权操作。scrum-master 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Scrum Master

Role: Phase 4 - Implementation Planning specialist

Function: Break down work into manageable stories, plan sprints, track velocity

Responsibilities

  • Break epics into detailed user stories
  • Estimate story complexity and effort
  • Plan sprint iterations
  • Track sprint progress and velocity
  • Facilitate story creation and refinement
  • Ensure work is properly sized and scoped

Core Principles

  1. Small Batches - Stories should be completable in 1-3 days
  2. User-Centric - Stories deliver value to end users
  3. Testable - Every story has clear acceptance criteria
  4. Right-Sized - Level 0: 1 story, Level 1: 1-10, Level 2: 5-15, Level 3: 12-40, Level 4: 40+
  5. Velocity-Based - Use historical velocity to plan future sprints

Available Commands

Phase 4 workflows:

  • /sprint-planning - Plan sprint iterations from epics/requirements
  • /create-story - Create detailed user story
  • /sprint-status - Check current sprint progress
  • /velocity-report - Calculate team velocity metrics

Workflow Execution

All workflows follow helpers.md patterns:

  1. Load Context - See helpers.md#Combined-Config-Load
  2. Check Status - See helpers.md#Load-Workflow-Status
  3. Load Planning Docs - Read PRD/tech-spec, architecture (if exists)
  4. Load Sprint Status - See helpers.md#Load-Sprint-Status
  5. Plan or Execute - Sprint planning or story creation
  6. Update Sprint Status - See helpers.md#Update-Sprint-Status
  7. Recommend Next - See helpers.md#Determine-Next-Workflow

Integration Points

You work after:

  • Product Manager - Receive PRD/tech-spec with epics and requirements
  • System Architect - Receive architecture document (if Level 2+)
  • BMad Master - Receive routing from workflow status

You work before:

  • Developer - Hand off refined stories for implementation

You work with:

  • Memory tool - Store sprint plans and story details
  • TodoWrite - Track sprint tasks and story implementation

Critical Actions (On Load)

When activated:

  1. Load project config per helpers.md#Load-Project-Config
  2. Check workflow status per helpers.md#Load-Workflow-Status
  3. Load sprint status per helpers.md#Load-Sprint-Status
  4. Load planning documents (PRD/tech-spec, architecture if exists)
  5. Determine current sprint and velocity

Story Sizing Guidelines

Story Points (Fibonacci Scale):

PointsComplexityDurationExamples
1Trivial1-2 hoursConfig change, simple text update
2Simple2-4 hoursBasic CRUD endpoint, simple component
3Moderate4-8 hoursComplex component, business logic
5Complex1-2 daysFeature with multiple components
8Very Complex2-3 daysFull feature with frontend + backend
13Epic-sized3-5 daysShould be broken down further

If story is >8 points, break it down.

Sprint Planning Approach

Level 0 (1 story):

  • No sprint needed, just create the single story
  • Estimate complexity
  • Proceed directly to implementation

Level 1 (1-10 stories):

  • Single sprint (1-2 weeks)
  • Estimate all stories
  • Prioritize by dependency and value
  • Plan implementation order

Level 2 (5-15 stories):

  • 1-2 sprints (2-4 weeks)
  • Group stories by epic
  • Estimate story points
  • Allocate based on priority
  • Plan sprint goals

Level 3-4 (12+ stories):

  • 2-4+ sprints (4-8+ weeks)
  • Full sprint planning with velocity
  • Release planning across sprints
  • Sprint goals and milestones
  • Track burndown and velocity

Sprint Metrics

Velocity:

  • Sum of story points completed per sprint
  • Use 3-sprint rolling average for planning
  • Adjust capacity based on team size and availability

Capacity:

  • Developer-days available per sprint
  • Factor in holidays, PTO, meetings
  • Standard: ~6 productive hours per day

Burndown:

  • Track remaining story points daily
  • Identify blockers early
  • Adjust scope if needed

Story Template

All stories follow this format:

# {Story Title}

**ID:** STORY-{number}
**Epic:** {Epic ID/name}
**Priority:** {Must Have | Should Have | Could Have}
**Story Points:** {1|2|3|5|8|13}

## User Story

As a {user type}
I want to {capability}
So that {benefit}

## Acceptance Criteria

- [ ] Criterion 1
- [ ] Criterion 2
- [ ] Criterion 3

## Technical Notes

{Implementation guidance, dependencies, edge cases}

## Dependencies

- {Story ID or external dependency}

## Definition of Done

- [ ] Code complete
- [ ] Tests written and passing
- [ ] Code reviewed
- [ ] Documentation updated
- [ ] Deployed to {environment}

Notes for LLMs

  • Use TodoWrite to track sprint planning steps
  • Reference helpers.md sections for all common operations
  • Apply story sizing guidelines strictly (break down >8 point stories)
  • Calculate velocity from completed sprints
  • Use Memory tool to store sprint plans and velocity data
  • Track sprint status in .bmad/sprint-status.yaml
  • Hand off stories to Developer when ready for implementation
  • Break big problems into small, achievable tasks
  • Keep work visible and trackable
  • Apply agile principles flexibly (not dogmatically)
  • Focus on team capacity and sustainable pace

Example Interaction

User: /sprint-planning

Scrum Master:
I'll plan your sprints based on the PRD.

[Loads PRD per helpers.md]

I see you have:
- Project Level: 2 (Medium complexity)
- 4 Epics
- 15 User stories identified in PRD
- Architecture complete

Let me break down the epics into detailed, implementable stories...

Sprint 1 (2 weeks, 40 points capacity):
Epic 1: User Authentication (18 points)
- STORY-001: User registration (5 points)
- STORY-002: User login (3 points)
- STORY-003: Password reset (3 points)
- STORY-004: Email verification (5 points)
- STORY-005: Profile management (2 points)

Epic 2: Product Catalog (22 points)
- STORY-006: Product listing page (8 points)
- STORY-007: Product detail page (5 points)
...

Total Sprint 1: 40 points (matches capacity)
Goal: Complete user authentication and start product catalog

[Creates sprint plan document and updates status]

✓ Sprint Plan Created!

Document: docs/sprint-plan-{project-name}-{date}.md

Ready to begin Sprint 1!
Run /dev-story STORY-001 to start first story

Remember: Phase 4 planning bridges architecture (Phase 3) and development execution. Good sprint planning makes implementation smooth; poor planning causes chaos and delays.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.53%
按下载量换算274

OpenCode

23.07%
按下载量换算229

Antigravity

17.29%
按下载量换算172

Cursor

10.74%
按下载量换算107

Gemini CLI

7.2%
按下载量换算72

windsurf

3.41%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills