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

work-iterations工作迭代

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

15

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/microsoft/azure-devops-skills --skill work-iterations

简介

work-iterations 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持迭代开发与版本管理,适用于敏捷开发中的周期规划与进度控制。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,具体路径为 skills/work-iterations。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Instructions

This skill always works in the context of a project. A team is optional and only required when assigning iterations or listing iterations for a specific team.

Project selection

  • If the user provides a project name in their request (for example, "for Contoso"), use that project directly and do not call core_list_projects.
  • If the user does not provide a project name, first ask the user once to provide the project name.
  • If the project name is still not provided after asking once, call core_list_projects to return a list of projects the user can choose from.

Team selection

  • If the team is not provided, only perform actions that require project-only context (list or create project-level iterations). Do not attempt to assign iterations.
  • If the user asks to assign iterations and no team is provided, ask once for the team name.
  • If the team name is still not provided after asking once, call core_list_project_teams for the selected project so the user can pick a team.

Tools

Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.

  • core_list_projects: Get a list of projects in the organization.
  • core_list_project_teams: Get a list of teams for a project.
  • work_create_iterations: Create iterations in the project.
  • work_assign_iterations: Assign iterations to a team.
  • work_list_team_iterations: List iterations currently assigned to a team.
  • work_list_iterations: List iterations for the project.

Rules

1. List iterations for a project

  • When the user asks only to list iterations for a project, call work_list_iterations for that project.
  • Do not call work_create_iterations or work_assign_iterations in this case.
  • Show the results in a list, including iteration name and dates.
  • If there are no iterations, explicitly state that there are no iterations for this project.

Example

  • "list iterations for project Contoso"

2. List iterations for a project and team

  • When the user asks to list iterations for a specific project and team, call work_list_team_iterations for the given project and team.
  • Do not call work_create_iterations or work_assign_iterations in this case.
  • Show the results in a list, including iteration name and dates.
  • If there are no iterations, explicitly state that there are no iterations for this team.

Example

  • "list iterations for project Contoso and team Contoso"

3. Create iterations for a project

  • When the user asks to create iterations for a project, use the tool work_create_iterations.
  • First, call work_list_iterations to get the full list of current iterations and determine the existing date cadence (start and finish dates, and iteration length).
  • Using that cadence, create new iterations and pass them to work_create_iterations.
  • After creation, show the new iterations in a list, including iteration name and dates.
  • If no iterations are created, explicitly state that no iterations were created for this project.

Example 1

  • "create iterations after the last available iteration, using the same cadence, through 2026"

- Call work_list_iterations to get the full list of current iterations and determine the existing date cadence. - Using that date cadence, create new iterations and pass them to work_create_iterations.

Example 2

  • "create iterations after the last available iteration, using the same cadence, through 2026. Then assign all of those new iterations to team 'Contoso Team'"

- Call work_list_iterations to get the full list of current iterations and determine the existing date cadence. - Using that date cadence, create new iterations and pass them to work_create_iterations. - Take the iterations created and assign them to the team "Contoso Team" using work_assign_iterations. - Show the created iterations (and, if helpful, note that they are assigned to the specified team).

4. Assign iterations to a team

  • When the user asks to assign iterations to a team, use work_assign_iterations.
  • Make sure the project and team are selected using the rules above.
  • Show the iterations that were assigned in a list, including iteration name and dates.
  • If no iterations are assigned, explicitly state that there are no iterations assigned for this team.

Example 1

  • "assign iterations 'Iteration 1', 'Iteration 2', and 'Iteration 3' to team 'Contoso Team'"

- Call work_assign_iterations with the list of iterations and team name to assign those iterations to the team.

Example 2

  • "assign all iterations in 2025 and 2026 to team 'Contoso Team'"

- Call work_list_iterations to get the full list of iterations. - From the list, find the iterations that fall within 2025 and 2026. - Take the iterations that fall within 2025 and 2026 and assign them to the team "Contoso Team" using the tool work_assign_iterations. - Show the assigned iterations in a list.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.39%
按下载量换算35

Claude

31.18%
按下载量换算32

Cursor

17.63%
按下载量换算18

Gemini CLI

9.11%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills