Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

manage-backlog管理积压

Agent Skill

manage-backlog 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

12

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:manage-backlog(管理积压)
来源仓库:https://github.com/pjt222/development-guides
仓库路径:skills/manage-backlog
安装命令:
npx skills add https://github.com/pjt222/development-guides --skill manage-backlog
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pjt222/development-guides --skill manage-backlog

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在任务优先级排序或资源规划时使用。
  • 通过 GitHub 安装,需确认权限和维护状态。
  • 可能触发联网或文件读写操作。manage-backlog 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议结合原始 README 了解具体功能细节。

SKILL.md

Manage a Product Backlog

Create, prioritize, and maintain a backlog of work items that serves as the single source of truth for what needs to be done, applicable to both agile and classic project methodologies.

When to Use

  • Starting a new project and converting scope into actionable items
  • Ongoing backlog grooming before sprint planning
  • Re-prioritizing work after stakeholder feedback or scope changes
  • Splitting oversized items into implementable pieces
  • Reviewing and archiving completed or cancelled items

Inputs

  • Required: Project scope (from charter, WBS, or stakeholder input)
  • Optional: Existing backlog file (BACKLOG.md) to update
  • Optional: Prioritization framework preference (MoSCoW, value/effort, WSJF)
  • Optional: Estimation scale (story points, T-shirt sizes, person-days)
  • Optional: Sprint or iteration feedback requiring backlog updates

Procedure

Step 1: Create or Load Backlog Structure

If no backlog exists, create BACKLOG.md with standard columns. If one exists, read and validate structure.

# Product Backlog: [Project Name]
## Last Updated: [YYYY-MM-DD]

### Summary
- **Total Items**: [N]
- **Ready for Sprint**: [N]
- **In Progress**: [N]
- **Done**: [N]
- **Cancelled**: [N]

### Backlog Items
| ID | Title | Type | Priority | Estimate | Status | Sprint |
|----|-------|------|----------|----------|--------|--------|
| B-001 | [Title] | Feature | Must | 5 | Ready | — |
| B-002 | [Title] | Bug | Should | 2 | Ready | — |
| B-003 | [Title] | Task | Could | 3 | New | — |

### Item Details

#### B-001: [Title]
- **Type**: Feature | Bug | Task | Spike | Tech Debt
- **Priority**: Must | Should | Could | Won't
- **Estimate**: [Points or size]
- **Status**: New | Ready | In Progress | Done | Cancelled
- **Acceptance Criteria**:
  - [ ] [Criterion 1]
  - [ ] [Criterion 2]
- **Notes**: [Context, links, dependencies]

#### B-002: [Title]
...

Expected: BACKLOG.md exists with valid structure and summary statistics.

On failure: If the file is malformed, restructure it preserving existing item data.

Step 2: Write or Refine Items

For each new item, write it as a user story or requirement:

  • User story format: "As a [role], I want [capability] so that [benefit]"
  • Requirement format: "[System/Component] shall [behavior] when [condition]"

Each item must have:

  • Unique ID (B-NNN, incrementing)
  • Clear title (imperative verb form)
  • Type classification
  • At least 2 acceptance criteria (testable, binary pass/fail)

Example:

#### B-005: Enable User Login with OAuth
- **Type**: Feature
- **Priority**: Must
- **Estimate**: 5
- **Status**: Ready
- **Acceptance Criteria**:
  - [ ] User can log in using GitHub OAuth
  - [ ] User session persists for 24 hours
  - [ ] Failed login shows clear error message
- **Notes**: Requires OAuth app registration in GitHub

Expected: All items have titles, types, and acceptance criteria.

On failure: Items without acceptance criteria are marked Status: New (not Ready). They cannot enter a sprint.

Step 3: Prioritize Using MoSCoW or Value/Effort

Apply the chosen prioritization framework:

MoSCoW (default):

  • Must: Project fails without this. Non-negotiable.
  • Should: Important but project can succeed without it. Include if capacity allows.
  • Could: Nice to have. Include only if no impact on Must/Should items.
  • Won't: Explicitly excluded from current scope. Documented for future consideration.

Value/Effort Matrix (alternative):

Low EffortHigh Effort
High ValueDo First (Quick Wins)Do Second (Big Bets)
Low ValueDo Third (Fill-ins)Don't Do (Money Pits)

Sort the backlog table: Must items first (by value within Must), then Should, then Could.

Expected: Every item has a priority. Backlog is sorted by priority.

On failure: If stakeholders disagree on priorities, escalate Must vs Should decisions to the project sponsor.

Step 4: Groom — Split, Estimate, and Refine

Review items for sprint-readiness. For each item:

  1. Split if estimate > 8 points (or > 1 week effort): decompose into 2-4 smaller items
  2. Estimate using the project's chosen scale
  3. Refine vague acceptance criteria into testable conditions
  4. Mark Ready when the item has title, acceptance criteria, estimate, and no blockers

Document splitting:

**Split**: B-003 split into B-003a, B-003b, B-003c (original archived)

#### B-003a: Set Up Database Schema
- **Type**: Task
- **Priority**: Must
- **Estimate**: 3
- **Status**: Ready
- **Acceptance Criteria**:
  - [ ] Users table created with email, name fields
  - [ ] Migrations run successfully on dev environment

#### B-003b: Implement User CRUD Operations
- **Type**: Task
- **Priority**: Must
- **Estimate**: 5
- **Status**: Ready
- **Acceptance Criteria**:
  - [ ] Create user endpoint returns 201 with user object
  - [ ] Update user endpoint validates required fields

Expected: All Must and Should items are in Ready status.

On failure: Items that can't be estimated need a Spike (time-boxed research task) added to the backlog.

Step 5: Update Summary and Archive

Update the summary statistics. Move Done and Cancelled items to an archive section:

### Archive
| ID | Title | Status | Sprint | Completed |
|----|-------|--------|--------|-----------|
| B-001 | Enable User Login with OAuth | Done | S-003 | 2025-03-15 |
| B-004 | Add Dark Mode Theme | Cancelled | — | 2025-03-10 |

Update the summary by counting items in each status:

# Count Ready items
grep "| Ready |" BACKLOG.md | wc -l

# Count In Progress items
grep "| In Progress |" BACKLOG.md | wc -l

# Count Done items
grep "| Done |" BACKLOG.md | wc -l

Expected: Summary statistics match actual item counts. Archive section contains all closed items.

On failure: If counts don't match, recount by grepping Status values and update the summary manually.

Validation

  • BACKLOG.md exists with standard structure
  • Every item has a unique ID, title, type, priority, and status
  • All Must and Should items have acceptance criteria
  • Items are sorted by priority (Must first, then Should, then Could)
  • No item estimated at > 8 points without being split
  • Summary statistics are accurate
  • Done/Cancelled items are archived

Common Pitfalls

  • No acceptance criteria: Items without criteria can't be verified as done. Every item needs at least 2 testable criteria.
  • Everything is Must priority: If >50% of items are Must, priorities are not real. Force-rank within Must.
  • Zombie items: Items sitting in the backlog for months without progress should be re-evaluated or cancelled.
  • Estimates without context: Story points are relative — a team must have a reference item (e.g., "B-001 is our 3-point reference").
  • Splitting creates fragments: When splitting, ensure each child item is independently deliverable and valuable.
  • Backlog as dumping ground: The backlog is not a wish list. Regularly prune items that no longer align with project goals.
  • Missing dependencies: Note blocking items in the Notes field. A blocked item should not be marked Ready.

Related Skills

  • draft-project-charter — charter scope feeds initial backlog creation
  • create-work-breakdown-structure — WBS work packages can become backlog items
  • plan-sprint — sprint planning selects from the top of the backlog
  • generate-status-report — backlog burn-down feeds status reports
  • conduct-retrospective — retrospective improvement items feed back into the backlog

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.6%
按下载量换算45

Claude

28.53%
按下载量换算36

Cursor

17.98%
按下载量换算22

Gemini CLI

9.07%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills