Token导航 LogoToken导航TokenDH.com
云服务操作浏览器github未标认证来源可访问许可证需确认审计通过

azure-devops-create-work-itemAzure devops create work item 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

264

周安装

11

GitHub Stars

13

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill azure-devops-create-work-item

简介

将松散需求转化为符合 Azure Boards 模型的结构化本地工作项草稿。

  • 适用于需求梳理、缺陷分类和故事点估算等前期规划阶段。
  • 严格遵循微软官方工作项类型定义,确保父子关系与字段格式正确。
  • 默认仅生成草稿包,如需同步至云端需另行调用 REST API 或 UI 脚本。
  • 引用 Microsoft Learn 页面作为字段取值依据,保证业务语义一致性。

SKILL.md

Azure DevOps Create Work Item

Turn loose context into a local Azure DevOps work item packet grounded in the official Azure Boards work item model.

Verified against Microsoft Learn pages for About work items and work item types, Agile workflow in Azure Boards, Define, capture, triage, and manage bugs in Azure Boards, and Choose a process on April 15, 2026.

Call-Bluff First

This skill drafts a local packet. It does not create or update a live Azure DevOps work item unless the user separately asks for REST, CLI, or UI automation.

What this skill does well:

  • extract the working context and commit to one primary Agile work item type
  • create a deterministic folder in the caller's current directory
  • produce a copy-pastable work-item.md plus supporting artefacts
  • keep the writing readable for mixed technical and non-technical audiences
  • use official Azure Boards work item primitives instead of invented ticket shapes

Decision Tree

  1. If the user wants a local Azure DevOps-ready draft from notes, chat context, or rough requirements, use this skill.
  2. If they want the item created directly in Azure DevOps through the browser, REST API, or Azure CLI, stop and route to an automation or API workflow instead.
  3. If the work item type is explicit, use the matching template.
  4. If the type is missing, infer it with references/official-primitives.md. If the choice is still ambiguous between Feature, User Story, and Task, ask one short question.
  5. If the context is too thin to explain the problem or outcome, ask for missing context before drafting.

Default Save Path Rule

When the user does not give a destination, create the packet in the current working directory. Do not send it to a hidden cache, temp directory, or home-folder default.

The generated packet layout is:

<current-working-directory>/azure-devops-work-item-<type>-<slug>-<timestamp>/
  work-item.md
  context.md
  sources.md
  metadata.json

Quick Reference

TaskCommandWhy
Create a feature packet in the current directorypython3 scripts/create_work_item_packet.py --type feature --title "Restore team login after token expiry"Creates the default packet folder beside the command
Create a packet from saved notespython3 scripts/create_work_item_packet.py --type bug --title "Checkout button freezes on Safari" --context-file./notes/checkout-bug.mdSeeds context.md from existing notes
Save the packet under an explicit directorypython3 scripts/create_work_item_packet.py --type user-story --title "Resend invite from team page" --save-root./work-itemsKeeps the packet under a chosen visible folder
Check the packet workflow end to endpython3 scripts/probe_create_work_item_packet.pyVerifies the scaffold command creates the expected artefacts
Confirm type selection and writing rulesRead references/official-primitives.mdKeeps the draft aligned to Azure Boards semantics

Operating Rules

  1. Default to the Agile process unless the user explicitly says their project uses Basic, Scrum, or CMMI.
  2. Extract the context first. Capture the raw source material in context.md even when work-item.md becomes more concise.
  3. Pick one primary type only: Epic, Feature, User Story, Task, Issue, or Bug.
  4. Keep work-item.md simple. Do not use #, ##, or ### headings. Use bold section labels such as **Problem** and ordinary paragraphs, bullets, and numbered lists.
  5. Write for mixed audiences. Prefer plain language, explain the business effect, and keep implementation detail only where it materially changes the request.
  6. Use the type template as the contract. Feature and Bug are strict; the other types should stay close to their templates unless the context forces a small adjustment.
  7. Put supporting detail, assumptions, raw notes, and source excerpts in context.md, not in the main work item draft.

Type Contract

  • Epic: use for a larger scenario or initiative that groups multiple features.
  • Feature: use for a concrete capability with user or business value. Use templates/feature-template.md.
  • User Story: use for who/what/why statements that describe a user need without prescribing implementation. Use templates/user-story-template.md.
  • Task: use for sprint-scale execution work. Use templates/task-template.md.
  • Issue: use for blockers or non-code project issues that could slow or stop delivery. Use templates/issue-template.md.
  • Bug: use for a code defect with reproducible behavior. Use templates/bug-template.md.

Recommended Workflow

  1. Read the source context and extract the core problem, audience, and desired outcome.
  2. Choose the best-fit work item type with references/official-primitives.md.
  3. Run python3 scripts/create_work_item_packet.py --type <type> --title "<title>" in the caller's current directory, adding --context-file when notes already exist on disk.
  4. Fill work-item.md using the selected template and the writing rules in references/output-packet.md.
  5. Keep the final file surgical, plain, and ready to paste into Azure DevOps.

Reading Guide

NeedRead
Official Azure Boards type semantics and cross-process notesreferences/official-primitives.md
Packet layout, section-writing rules, and current-directory behaviorreferences/output-packet.md
Failure modes and classification trapsreferences/gotchas.md
Epic templatetemplates/epic-template.md
Feature templatetemplates/feature-template.md
User story templatetemplates/user-story-template.md
Task templatetemplates/task-template.md
Issue templatetemplates/issue-template.md
Bug templatetemplates/bug-template.md

Gotchas

  1. This skill creates a local packet, not a live Azure DevOps item.
  2. Feature, User Story, and Task are not interchangeable. A User Story expresses a user need, a Feature groups or frames a deliverable capability, and a Task captures execution work.
  3. Bug means a code defect. If the item is a blocker or dependency without defective behavior, use Issue instead.
  4. Microsoft documents that Azure DevOps work item types depend on the process. If the user is on Basic, Scrum, or CMMI, confirm the mapping before you draft.
  5. The main work item draft should stay light on markup. Use bold section labels only and avoid heading syntax.
  6. Bugs need reproducible steps and expected behavior. If the context lacks that detail, ask for it or call out the gap in context.md.
  7. Do not bury the business impact in engineering detail. Mixed audiences should understand why the item matters after the first short section.

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

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

平台分布

Codex

33.21%
按下载量换算29

Claude

31.46%
按下载量换算28

Cursor

20.23%
按下载量换算18

Gemini CLI

9.37%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills