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

create-work-breakdown-structurecreate work breakdown structure 命令行

Agent Skill

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

总安装

720

周安装

30

GitHub Stars

12

下载量

240
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pjt222/development-guides --skill create-work-breakdown-structure

简介

该技能用于将项目范围分解为可估算、分配和跟踪的层级工作包,为工作量预估和资源规划提供基础。

  • 适用于项目章程批准后、定义明确交付物的大型计划拆分或建立任务管理框架等场景。
  • 通过命令行调用,需结合具体仓库上下文使用,建议安装前确认权限与执行环境。
  • 安装方式:GitHub 仓库,使用 npx 命令添加;注意维护状态及是否触发文件操作或网络请求。
  • create-work-breakdown-structure 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create a Work Breakdown Structure

Decompose project scope into a hierarchical set of work packages that can be estimated, assigned, and tracked. The WBS provides the foundation for effort estimation, resource planning, and schedule development by breaking down complex deliverables into manageable components.

When to Use

  • After a project charter is approved and scope is defined
  • Planning a classic/waterfall project with defined deliverables
  • Breaking down a large initiative into manageable work packages
  • Establishing a basis for effort estimation and resource planning
  • Creating a shared understanding of all required work

Inputs

  • Required: Approved project charter (especially scope and deliverables sections)
  • Required: Project methodology (classic/waterfall, or hybrid with WBS for planning)
  • Optional: Historical effort data from similar projects
  • Optional: Team composition and available skills
  • Optional: Organizational WBS templates or standards

Procedure

Step 1: Extract Deliverables from Charter

Read the project charter. List all deliverables and acceptance criteria. Group them into 3-7 top-level categories (these become WBS Level 1 elements).

Expected: List of Level 1 WBS elements matching charter deliverables.

On failure: If charter is vague, return to draft-project-charter to refine scope.

Step 2: Decompose into Work Packages

For each Level 1 element, decompose into sub-elements (Level 2, Level 3). Apply the 100% rule: child elements must represent 100% of the parent's scope. Stop decomposing when work packages are:

  • Estimable (can assign effort in person-days)
  • Assignable (one person or team owns it)
  • Measurable (clear done/not-done criteria)

Create a WBS outline:

# Work Breakdown Structure: [Project Name]
## Document ID: WBS-[PROJECT]-[YYYY]-[NNN]

### WBS Hierarchy

1. [Level 1: Deliverable Category A]
   1.1 [Level 2: Sub-deliverable]
      1.1.1 [Level 3: Work Package]
      1.1.2 [Level 3: Work Package]
   1.2 [Level 2: Sub-deliverable]
2. [Level 1: Deliverable Category B]
   2.1 [Level 2: Sub-deliverable]
3. [Level 1: Project Management]
   3.1 Planning
   3.2 Monitoring & Control
   3.3 Closure

Apply WBS codes (1.1.1 format). Ensure 3-5 levels deep maximum. Always include a "Project Management" branch.

Expected: Complete WBS with 15-50 work packages, each with a unique WBS code.

On failure: If decomposition exceeds 5 levels, the scope is too large — consider splitting into sub-projects.

Step 3: Write WBS Dictionary

For each work package (leaf node), write a dictionary entry:

# WBS Dictionary: [Project Name]
## Document ID: WBS-DICT-[PROJECT]-[YYYY]-[NNN]

### WBS 1.1.1: [Work Package Name]
- **Description**: What this work package produces
- **Acceptance Criteria**: How to verify it's done
- **Responsible**: Person or role
- **Estimated Effort**: [T-shirt size or person-days]
- **Dependencies**: WBS codes this depends on
- **Assumptions**: Key assumptions for this work package

### WBS 1.1.2: [Work Package Name]
...

Expected: Dictionary entry for every leaf-node work package.

On failure: Missing dictionary entries indicate incomplete decomposition — revisit Step 2.

Step 4: Estimate Effort

For each work package, apply one estimation method:

  • T-shirt sizing (XS/S/M/L/XL) for early-stage planning
  • Person-days for detailed planning
  • Three-point estimate (optimistic/most likely/pessimistic) for high-uncertainty work

Create a summary table:

## Effort Summary
| WBS Code | Work Package | Estimate | Method | Confidence |
|----------|-------------|----------|--------|------------|
| 1.1.1 | [Name] | 5 pd | person-days | High |
| 1.1.2 | [Name] | M | t-shirt | Medium |

Total effort = sum of all work packages.

Expected: Every work package has an effort estimate with stated confidence.

On failure: If confidence is Low on >30% of packages, schedule a refinement session with SMEs.

Step 5: Identify Dependencies and Critical Path Candidates

Map dependencies between work packages:

## Dependencies
| WBS Code | Depends On | Type | Notes |
|----------|-----------|------|-------|
| 1.2.1 | 1.1.1 | Finish-to-Start | Output of 1.1.1 is input to 1.2.1 |
| 2.1.1 | 1.1.2 | Finish-to-Start | |

Identify the longest chain of dependent work packages — this is the critical path candidate.

Expected: Dependency table with at least finish-to-start relationships identified.

On failure: If dependencies form cycles, the decomposition has errors — revisit Step 2.

Step 6: Review and Baseline

Combine WBS and dictionary into final documents. Verify the 100% rule at every level. Get stakeholder sign-off.

Expected: WBS.md and WBS-DICTIONARY.md files created and reviewed.

On failure: If stakeholders identify missing scope, add work packages and re-estimate.

Validation

  • WBS file created with document ID and WBS codes
  • 100% rule satisfied: children fully represent parent scope at every level
  • Every leaf node has a WBS dictionary entry
  • All work packages have effort estimates
  • Dependencies identified with no circular references
  • Project Management branch included
  • Critical path candidates identified
  • WBS depth does not exceed 5 levels

Common Pitfalls

  • Confusing deliverables with activities: WBS elements should be nouns (deliverables), not verbs (activities). "User Authentication Module" not "Implement Authentication".
  • Violating the 100% rule: If children don't add up to 100% of parent scope, work will be missed.
  • Too shallow or too deep: 2 levels is too vague for planning; 6+ levels is micromanagement. Target 3-5 levels.
  • Skipping Project Management branch: PM work (planning, meetings, reporting) is real work that consumes effort.
  • Estimating before decomposing: Estimate work packages, not categories. A Level 1 estimate is unreliable.
  • No dictionary: A WBS without a dictionary is a tree of labels — the dictionary provides the definition of done.

Related Skills

  • draft-project-charter — provides the scope and deliverables that feed WBS decomposition
  • manage-backlog — translate WBS work packages into backlog items for tracking
  • generate-status-report — report progress against WBS % complete
  • plan-sprint — if using hybrid approach, sprint-plan from WBS work packages
  • conduct-retrospective — review estimation accuracy and decomposition quality

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.39%
按下载量换算78

Claude

31.5%
按下载量换算76

Cursor

20.89%
按下载量换算50

Gemini CLI

10.08%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills