skills/ado-work-tracking/SKILL.md
Use when configuring Azure DevOps work tracking — boards setup, backlog configuration, sprint management, work item type customization, process templates, queries, and team area/iteration paths.
npx skillsauth add kienbui1995/magic-powers ado-work-trackingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
# Create area path
az boards area project create \
--name "Platform/Infrastructure" \
--project MyProject
# Assign area to team
az boards area team add \
--team "Platform Team" \
--path "\MyProject\Platform\Infrastructure" \
--include-sub-areas true \
--project MyProject
Structure: Project → Areas → Team areas → Each team sees their subset of the board
# Create iteration (sprint)
az boards iteration project create \
--name "Sprint 1" \
--start-date 2026-04-14 \
--finish-date 2026-04-25 \
--path "\MyProject\2026" \
--project MyProject
# Assign to team
az boards iteration team add \
--team "Platform Team" \
--id $ITERATION_ID \
--project MyProject
# Create work item
az boards work-item create \
--title "Implement OAuth2 login" \
--type "User Story" \
--assigned-to [email protected] \
--project MyProject \
--fields "Microsoft.VSTS.Common.Priority=1" "System.Tags=auth;security"
# Update work item
az boards work-item update --id 1234 --state "Active" --assigned-to [email protected]
# Query work items (WIQL)
az boards query --wiql "SELECT [Id],[Title],[State] FROM WorkItems WHERE [System.TeamProject] = 'MyProject' AND [State] <> 'Closed' ORDER BY [Priority]"
# List queries
az boards query list --project MyProject --path "Shared Queries" --output table
Common useful queries:
[Type] = 'Bug' AND [State] <> 'Closed' ORDER BY [Priority][Assigned To] = '' AND [State] = 'Active'[Iteration Path] = @CurrentIteration AND [Team Project] = @Projectado-organization — project and team creation before work tracking setupado-api-cli — bulk work item creation, query automation, sprint managementcontent-media
Use when designing for XR (AR/VR/MR), choosing interaction modes, or adapting 2D UI patterns for spatial computing
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
development
Use when executing a structured workflow — select and run a feature, bugfix, refactor, research, or incident template with correct agent and model assignments per phase.