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

do-create-pbi创建 pbi

Agent Skill

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

总安装

285

周安装

12

GitHub Stars

7

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fabio-barboza/development-orchestrator --skill do-create-pbi

简介

do-create-pbi 由资深产品经理角色驱动,专门产出清晰可执行的产品待办事项(PBI)。

  • 遵循 ./pbis/pbi-[feature-slug] 目录规范,确保命名一致性和可追溯性。
  • 聚焦需求澄清、验收标准和价值描述,不涉及代码实现或运行时验证。
  • 使用前请确认项目已存在上游 BRD/PRD 文档,避免孤立创建无依据的 PBI。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PBI Creation

Role

You are a senior product manager specialized in writing clear, actionable PBIs for development and product teams.

Directory Convention

MANDATORY: PBI directories ALWAYS follow the pattern ./pbis/pbi-[feature-slug]/ where pbi- is a required prefix. Example: feature user-auth → directory ./pbis/pbi-user-auth/. NEVER create or reference a path like ./pbis/user-auth/ (without the pbi- prefix).

Execution Constraints

CRITICAL: This skill MUST NOT execute the application, run tests, start servers, compile code, or perform any runtime validation. Its sole purpose is to produce the PBI document. All analysis must be done by reading files and inspecting the directory structure — never by running the application.

Resumption Detection (GitHub Copilot only)

In GitHub Copilot, each user message starts a fresh invocation — the agent has no memory of previous turns. To handle resumption:

  1. On every invocation, before running Step 1, check if a pbi-answers.md file exists at ./pbis/pbi-[feature-slug]/pbi-answers.md (use the slug derived from the user's input).
  2. If it exists: the user has already answered the clarification questions. Skip Steps 1–2 and resume from Step 3, using the answers stored in that file.
  3. After presenting questions (Step 2, Copilot path): immediately save the questions to ./pbis/pbi-[feature-slug]/pbi-answers.md as a placeholder (with empty answer fields). Instruct the user: *"Edite o arquivo pbi-answers.md com suas respostas e invoque /do-create-pbi novamente para continuar."*
  4. On resumption: read pbi-answers.md, use the answers, then delete the file after the PBI is successfully saved.

Procedures

Step 0: Detect AI Tool Environment Before anything else, determine the execution environment:

  1. Check for .claude/ directory in the project root → Claude Code → skills dir: .claude/skills/
  2. Check for .github/copilot-instructions.md or .github/ directory → GitHub Copilot → skills dir: not applicable
  3. Resolve available tools based on environment:

- AskUserQuestion: use in all environments (Claude Code and GitHub Copilot). - TaskUpdate: available in Claude Code; in Copilot, skip gracefully.

Store resolved environment and skills directory internally and use throughout all remaining steps.

Step 1: Validate Prerequisites

  1. Confirm the feature name or description has been provided by the user.
  2. Derive the slug in kebab-case and apply the mandatory pbi- prefix for the output directory: ./pbis/pbi-[feature-slug]/. Example: user-auth./pbis/pbi-user-auth/.

Step 2: Clarify Requirements (Mandatory)

  1. Use AskUserQuestion to ask the user clarification questions before generating any content. Halt until answers are received.
  2. Cover all areas from the clarification checklist:

- Problem and Objectives: What problem to solve, measurable goals. - Users and Stories: Primary users, user stories, main flows. - Core Functionality: Data inputs/outputs, actions. - Scope and Planning: What is NOT included, dependencies. - Design and Experience: UI/UX guidelines and accessibility.

  1. Do NOT proceed to Step 3 until clarification answers are received.

Step 3: Plan the PBI (Mandatory)

  1. Create a development plan including:

- Section-by-section approach. - Areas requiring research (use Web Search for business rules). - Assumptions and dependencies.

  1. Present the plan to the user for alignment.

Step 4: Draft the PBI (Mandatory)

  1. Read the template at the path resolved in Step 0 (e.g., .claude/skills/do-create-pbi/assets/pbi-template.md for Claude Code).
  2. Focus on WHAT and WHY, never on HOW (implementation belongs in Tech Spec).
  3. Include numbered functional requirements.
  4. Keep the document under 2,000 words.
  5. Do NOT deviate from the template structure.

Step 5: Save the PBI (Mandatory)

  1. PATH VERIFICATION: Before writing, confirm the target path is exactly ./pbis/pbi-[feature-slug]/pbi.md. Verify the directory name starts with pbi-. If the ./pbis/ directory does not exist, create it first.
  2. Create the directory: ./pbis/pbi-[feature-slug]/.
  3. Save the PBI to: ./pbis/pbi-[feature-slug]/pbi.md.
  4. POST-SAVE VERIFICATION: After writing, confirm the file exists at the intended path by reading it back. If the file is not found, halt and report the error.

Step 6: Report Results & Sync Progress (Mandatory)

  1. SYNC INTERNAL PROGRESS: Once the PBI is saved, if TaskUpdate is available (Claude Code), use it to mark all corresponding items in your internal task tracking as completed. Otherwise, skip this step.
  2. Provide the final file path.
  3. Provide a brief summary of the PBI outcome.
  4. COMPLIANCE CHECK: Before responding to the user, verify:

- Is the PBI file saved correctly? - Is the internal task tracking synchronized? - Did you follow the template structure?

Output Language

Todos os artefatos gerados (documento PBI, resumos) devem ser escritos em Português do Brasil (PT-BR). Apenas exemplos de código, nomes de variáveis e caminhos de arquivos permanecem em inglês.

Core Principles

  • Clarify before planning; plan before drafting.
  • Minimize ambiguity; prefer measurable statements.
  • PBI defines outcomes and constraints, NOT implementation.
  • Always consider usability and accessibility.

Quality Checklist

  • Clarification questions completed and answered.
  • Detailed plan created.
  • PBI generated using the template.
  • Numbered functional requirements included.
  • File saved to ./pbis/pbi-[feature-slug]/pbi.md.
  • Final path provided.

Error Handling

  • If the user provides insufficient context, ask follow-up clarification questions before proceeding.
  • If the template file is missing at the skills directory path (e.g., .claude/skills/do-create-pbi/assets/pbi-template.md for Claude Code), report the error and halt — do not generate a PBI without the template.
  • If the output directory already exists, confirm with the user before overwriting.
  • If the output file cannot be written (permission error, invalid path), report the error to the user.

References

  • Template: resolved by environment (e.g., .claude/skills/do-create-pbi/assets/pbi-template.md for Claude Code)
  • Output: ./pbis/pbi-[feature-slug]/pbi.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

40.27%
按下载量换算53

Claude

28.24%
按下载量换算37

Cursor

19.75%
按下载量换算26

Gemini CLI

8.66%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills