Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
microsoft avatar

Work Iterations

  • 65 installs
  • 31 repo stars
  • Updated July 16, 2026
  • microsoft/azure-devops-skills

work-iterations is an agent skill for listing, creating, and assigning Azure DevOps project and team iterations.

About

The work-iterations skill manages Azure DevOps iterations at project and team scope using Azure DevOps MCP Server tools. Project selection uses a provided name directly, prompts once if missing, then falls back to core_list_projects. Team is optional for project-level list and create actions but required before assigning iterations, with core_list_project_teams as fallback. Listing project iterations calls work_list_iterations without create or assign. Team iteration listing uses work_list_team_iterations for a specific project and team pair. Creating iterations reads existing cadence from work_list_iterations, generates new iterations matching start and finish patterns, and passes them to work_create_iterations. Assignment uses work_assign_iterations after project and team are confirmed, including bulk assign by year filter from the full iteration list. Results always show iteration names and dates, explicitly stating when none exist or none were created. Use when listing, creating, or assigning sprint iterations for Azure DevOps projects and teams.

  • Separates project-only iteration list and create from team assignment flows.
  • Infers new iteration dates from existing project cadence before creating.
  • Requires team name before work_assign_iterations with one prompt fallback.
  • Supports bulk assign by filtering iterations within year ranges.
  • Uses Azure DevOps MCP tools exclusively for all iteration operations.

Work Iterations by the numbers

  • 65 all-time installs (skills.sh)
  • Ranked #1,524 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 25, 2026 (Skillselion catalog sync)
At a glance

work-iterations capabilities & compatibility

Capabilities
project iteration listing via work_list_iteratio · cadence based iteration creation · team iteration listing and assignment · project and team selection with fallbacks · bulk year range iteration assignment
Works with
azure · azure devops
Use cases
project management
From the docs

What work-iterations says it does

Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.
SKILL.md
npx skills add https://github.com/microsoft/azure-devops-skills --skill work-iterations

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs65
repo stars31
Security audit3 / 3 scanners passed
Last updatedJuly 16, 2026
Repositorymicrosoft/azure-devops-skills

How do I list, create, or assign sprint iterations in Azure DevOps?

List, create, and assign Azure DevOps project and team iterations via MCP tools.

Who is it for?

Developers managing Azure DevOps sprint calendars who need iteration create and assign workflows.

Skip if: Skip for work item summaries, board queries, or iteration work not involving ADO MCP tools.

When should I use this skill?

User asks to list, create, or assign iterations for an Azure DevOps project or team.

What you get

Displayed iteration lists or newly created and assigned iterations with names and date ranges.

Files

SKILL.mdMarkdownGitHub ↗

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.

Related skills

FAQ

When is a team name required?

Before assigning iterations; project-only list and create work without a team.

How are new iteration dates chosen?

From existing project iteration cadence read via work_list_iterations before work_create_iterations.

Is work-iterations safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.