https://github.com/ophiase/azz
Simple wrapper around the azure cli to reduce the frictions with Azure Devops
https://github.com/ophiase/azz
Last synced: about 1 month ago
JSON representation
Simple wrapper around the azure cli to reduce the frictions with Azure Devops
- Host: GitHub
- URL: https://github.com/ophiase/azz
- Owner: Ophiase
- License: apache-2.0
- Created: 2026-05-30T17:27:18.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-16T09:37:56.000Z (about 1 month ago)
- Last Synced: 2026-06-16T11:22:46.259Z (about 1 month ago)
- Language: Python
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Azz - Azure Devops CLI helper
[](https://opensource.org/licenses/Apache-2.0)
[](https://www.python.org/)
[](https://astral.sh/uv)
[](https://just.systems/man/en/)
[](https://www.docker.com/)
A simple CLI tool to help with Azure DevOps work item management,
built on top of the Azure CLI.
I only built this tool for myself,
but I thought it could be useful for others as well,
so I decided to make it public.
Feel free to clone it to adapt it to your needs.
## Installation
Requirements:
- [azure cli](https://learn.microsoft.com/en-us/cli/azure/get-started-with-azure-cli?view=azure-cli-latest)
- [uv](https://docs.astral.sh/uv/getting-started/installation/)
- An Azure DevOps organization and project
- the tool is based on the Epic-Feature-Task work item hierarchy
Recommended:
- unix-like environment
The tool was only tested on Linux
- [direnv](https://github.com/direnv/direnv)
For loading environment variables from .envrc files.
It permits you to have different configurations for different projects.
Installation:
```bash
# From pypi
uvx add azz # Not published yet, but will be available soon
# From source
git clone
cd Azz
uv tool install . # classic install
just install # classic install using justfile
uv tool install --editable . # dev install
just install-dev # dev install using justfile
```
Then to verify the installation
```bash
azz --version
```
## Usage
In your project repository,
configure a `.envrc` file like `.envrc.example`.