skills/ado-organization/SKILL.md
Use when setting up or managing Azure DevOps organizations and projects — project creation, team structure, user management, billing, extensions, and org-level settings.
npx skillsauth add kienbui1995/magic-powers ado-organizationInstall 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.
# Connect org to Azure Active Directory
az devops admin banner update --message "AAD integration required" --type info
# AAD connection done via Azure portal: Settings → AAD → Connect
# After: users must sign in with AAD credentials
Key settings:
# Create project
az devops project create \
--name "MyProject" \
--organization https://dev.azure.com/MyOrg \
--process Agile \
--visibility private
# List projects
az devops project list --organization https://dev.azure.com/MyOrg --output table
Process templates: Agile (user stories/tasks), Scrum (product backlog items/sprints), CMMI (formal change management), Basic (simplest, issues/tasks)
Choose process at creation — migration between processes is complex and partially supported.
# Create team
az devops team create --name "Platform Team" --project MyProject
# Add member to team
az devops team member add \
--team "Platform Team" \
--members [email protected] \
--project MyProject
# List team members
az devops team member list --team "Platform Team" --project MyProject --output table
Teams inherit permissions from project; additional permissions can be granted explicitly.
# Add user to org
az devops user add \
--email-id [email protected] \
--license-type express \
--org https://dev.azure.com/MyOrg
# Update license
az devops user update \
--user [email protected] \
--license-type stakeholder \
--org https://dev.azure.com/MyOrg
# Remove user
az devops user remove --user [email protected] --org https://dev.azure.com/MyOrg
License types: Basic (most features), Basic + Test Plans (includes Azure Test Plans), Stakeholder (free, limited), Visual Studio subscriber (auto-detected)
# Install extension
az devops extension install \
--extension-id SonarSource.sonarcloud \
--publisher-id SonarSource \
--org https://dev.azure.com/MyOrg
# List installed
az devops extension list --org https://dev.azure.com/MyOrg --output table
ado-security-policies — configure org-level security after project creationado-api-cli — automate user management and project provisioning at scalecontent-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.