PowerShell Module for interacting with Azure DevOps using the Rest-API in the Background. Currently, you have to use an personal access token to connect. In the future, you'll also will be able to use the interactive authentication window.
Read the following Microsoft Docs page to create your token.
Install-Module -Name AzDOps
$token = "token"
$organizationName = "orgName"
Connect-AzDo -PersonalAccessTokens $token -OrganizationName $organizationName
Get-Command -Module AzDOps
This Module is by far not complete - there are still a lot of functions missing - feel free to contribute (I even encourage you to do so :) ). If you do, please have a look at some of the existing function to get an understanding of the sctructure.
You can also just hit me up on Twitter @chrburmeister