Metadata-Version: 2.4
Name: explore-ado
Version: 0.1.0
Summary: CLI analytics for Azure DevOps work items — velocity, cycle time, and clustering
Author: Samuel Hurley
License-Expression: MIT
Project-URL: Repository, https://github.com/HurleySk/ado-analyze
Project-URL: Issues, https://github.com/HurleySk/ado-analyze/issues
Project-URL: Changelog, https://github.com/HurleySk/ado-analyze/blob/master/CHANGELOG.md
Keywords: azure-devops,analytics,velocity,cycle-time,clustering
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: ado-search>=0.7.0
Requires-Dist: click>=8.0
Provides-Extra: clustering
Requires-Dist: sentence-transformers>=2.0; extra == "clustering"
Requires-Dist: scikit-learn>=1.0; extra == "clustering"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"

# explore-ado

CLI analytics for Azure DevOps work items — velocity, cycle time, and content clustering.

## Install

```bash
pip install explore-ado                  # velocity + cycle time
pip install explore-ado[clustering]      # adds content clustering
```

Requires [ado-search](https://github.com/HurleySk/ado-search) data. Run `ado-search sync` first.

## Commands

```bash
ado-analyze velocity                     # items and points per sprint
ado-analyze cycletime                    # time in each state transition
ado-analyze cluster                      # group similar items
```

See `ado-analyze --help` for full options.
