Interactive terminal dashboard for Azure DevOps PRs and work items
Project description
ADO Dashboard
ADO Dashboard is a keyboard-driven terminal dashboard for Azure DevOps (ADO). If you spend your day reviewing PRs, triaging work items, and managing AI coding sessions — this keeps all of it in your terminal, no browser tabs required.
Demo Mode
Try the dashboard instantly — no ADO credentials, no setup wizard, no real data.
ado-dashboard --demo
# or
ADO_DASHBOARD_DEMO=1 ado-dashboard
The --demo flag populates every tab with fictional Tolkien-themed fixture data (Middle-earth org, Fellowship project, Gandalf the Grey as user). It's perfect for screenshots, presentations, or just exploring the interface before connecting to a real ADO org. No Azure CLI calls are made.
Install & Run
Screenshots above and below were captured in
--demomode with fictional Middle-earth data.
git clone https://github.com/gaburn/ado-dashboard.git
cd ado-dashboard
pip install -e .
ado-dashboard
On first launch an interactive setup wizard walks you through configuration.
Re-run it any time with ado-dashboard --setup.
Prerequisites
| Requirement | Install / verify |
|---|---|
| Python 3.12+ | python --version |
| Azure CLI (authenticated) | Install, then az login |
| azure-devops extension | az extension add --name azure-devops |
Triage only: PowerShell (pwsh or powershell) |
A Get-TriageItems.ps1.example template is included; copy and customise it, then set triage_script_path in Settings |
Tabs
| # | Tab | What it shows |
|---|---|---|
| 1 | My PRs | Active PRs you created (across multiple projects). Draft PRs are dimmed. Status column shows colored approval indicators: ✓ green (approved), ✗ red (rejected), ~ yellow (suggestions), · dim (no votes). |
| 2 | Reviewing | PRs where you are a reviewer. Vote status shown as ✓ approved / ✗ rejected / · pending. Declined PRs filtered out. Approved reviews highlighted green. |
| 3 | Work Items | ADO work items assigned to you. Filters out Closed, Done, Completed, Cut, and Resolved states. |
| 4 | Triage | On-call triage board with a board selector dropdown, priority groups, categorization, action plan, and clickable links. Switching boards refreshes the view with a loading indicator. |
| 5 | Copilot Sessions | Active Copilot CLI sessions with status, intent, and working directory. Press R (Shift+R) to resume an inactive session in a new Windows Terminal tab. Press f to focus the terminal of an active session. |
Screenshots
Reviewing — PRs where you are a reviewer
Work Items — assigned items across Epic / Feature / Story / Task / Bug
Triage — priority-grouped board with AI-assisted categorization
Copilot Sessions — resumable AI sessions with intent and last-active timestamps
Keyboard Shortcuts
| Key | Action |
|---|---|
↑ ↓ |
Move between rows |
Enter |
Open detail view |
Escape |
Back to list / clear search |
1–5 |
Switch tab |
o |
Open selected item in browser |
c |
Copy selected item to clipboard |
r |
Refresh data |
/ |
Search / filter active tab |
SHIFT+0–6 |
Sort by column |
R (Shift+R) |
Resume a Copilot session in new terminal tab |
f |
Focus terminal of active session |
s |
Settings screen |
i |
Investigate selected triage item (launches Copilot session) |
I (Shift+I) |
Investigate entire triage board |
h |
Help overlay |
q |
Quit |
Configuration
Settings are resolved in order: CLI args → environment variables → config file → defaults.
Config file location: %LOCALAPPDATA%\ado-dashboard\config.json (Windows) or ~/.config/ado-dashboard/config.json (Linux/macOS).
| Method | Example |
|---|---|
| Setup wizard | ado-dashboard (first run) or ado-dashboard --setup |
| CLI flag | --projects MyProject,OtherProject |
| In-app | Press s to open settings |
CLI Flags
| Flag | Description |
|---|---|
--setup |
Re-run the configuration wizard |
--org |
Azure DevOps organization URL |
--projects |
Comma-separated project list for PR queries |
--user |
User email for ADO queries |
Environment Variables
| Variable | Maps to |
|---|---|
ADO_ORG_URL |
Organization URL |
ADO_PROJECT |
Default project |
ADO_USER_EMAIL |
User email |
TRIAGE_BOARD |
Default triage board URL |
INVESTIGATION_MODEL |
Model for investigation sessions |
INVESTIGATION_AGENT |
Agent for investigation sessions |
INVESTIGATIONS_DIR |
Directory for investigation results |
ADO_DASHBOARD_REPO_ROOT |
Repository root (for skill discovery) |
In Settings (s), the Triage Boards section lets you configure multiple boards with separate Name and URL fields, then add/remove entries dynamically. Boards are stored in config.json as [display_name, url] pairs.
UI Details
- Status bar — global counts per tab plus triage priority breakdown.
- Dark theme with ADO blue accent.
- Version displayed in the title bar, including git commit hash (e.g.,
v0.2.0 (a3b4c5d)) for detecting stale instances. - AI triage — pluggable investigation backend (see
docs/investigation.md) with rule-based fallback when no backend is configured. - Triage board selector — dropdown to switch between configured ADO triage boards with a loading indicator while data refreshes.
- Investigation launcher — press
i/Ito launch AI-powered investigation sessions for triage items. Requires a configuredInvestigationLauncher(seedocs/investigation.md). - Dynamic settings — investigation model and agent dropdowns are populated from the active launcher at runtime.
- Title cleanup — board name prefixes are automatically stripped from triage item titles for cleaner display.
- Search — press
/to open a search bar that filters the active tab's table in real-time. PressEnterto keep the filter,Escapeto clear it. Works on My PRs, Reviewing, Work Items, and Copilot Sessions tabs.
How It Works
ADO Dashboard is a Textual TUI. It calls the az CLI asynchronously to fetch data from Azure DevOps, keeping the UI responsive. Detail views fetch richer metadata in the background (az repos pr show, az boards work-item show). Triage data comes from a configurable PowerShell script (see docs/triage-and-investigation.md). Investigation sessions are launched via the configured InvestigationLauncher adapter (see docs/investigation.md).
Architecture
See docs/architecture.md for module map and async model.
For Contributors
| Document | Contents |
|---|---|
docs/architecture.md |
Module map, dependency diagram, async model, screen lifecycle, state ownership |
docs/ado-integration.md |
az command shapes, auth assumptions, error handling, JSON mapping |
docs/triage-and-investigation.md |
PowerShell script contract, categorizer pipeline, AI enrichment, investigation launcher |
docs/investigation.md |
Pluggable InvestigationLauncher adapter: NoOpLauncher + custom backends |
docs/configuration.md |
Full 4-layer resolution, config schema, setup wizard, in-app settings |
docs/development.md |
Running locally, tests, adding a tab, adding a settings field, CSS conventions, known cruft |
Troubleshooting / FAQ
az login not authenticated
Run az login to sign in, then az account set --subscription <name-or-id> to select the right subscription.
No PRs or work items showing
Verify your org URL in the config file (%LOCALAPPDATA%\ado-dashboard\config.json on Windows, ~/.config/ado-dashboard/config.json on Linux/macOS). Re-run ado-dashboard --setup to reconfigure from scratch.
PowerShell not found (Triage tab)
Install pwsh or point the triage script to the Windows built-in powershell. PowerShell is only needed if you use the Triage tab.
Triage tab shows "No triage board configured"
That's expected — Triage is opt-in. Press s to open Settings and add a board URL.
App shows version v0.2.1-dirty
Your working tree has uncommitted changes. Commit or stash them and restart the app.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ado_dashboard-0.3.0.tar.gz.
File metadata
- Download URL: ado_dashboard-0.3.0.tar.gz
- Upload date:
- Size: 965.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6816a72a11cbff206f9e5e3619ceec3d07dfbf81078c23c1e336030d90715a5
|
|
| MD5 |
197f29985d1e82e4f463b70ad570279e
|
|
| BLAKE2b-256 |
4041c0613769c818948978590849322872de5af06ee9b66b8c36eb4616105e6e
|
Provenance
The following attestation bundles were made for ado_dashboard-0.3.0.tar.gz:
Publisher:
release.yml on gaburn/ado-dashboard
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ado_dashboard-0.3.0.tar.gz -
Subject digest:
b6816a72a11cbff206f9e5e3619ceec3d07dfbf81078c23c1e336030d90715a5 - Sigstore transparency entry: 1661538400
- Sigstore integration time:
-
Permalink:
gaburn/ado-dashboard@6a10158bcb4debf53231df638009bcaba79122d7 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gaburn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6a10158bcb4debf53231df638009bcaba79122d7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ado_dashboard-0.3.0-py3-none-any.whl.
File metadata
- Download URL: ado_dashboard-0.3.0-py3-none-any.whl
- Upload date:
- Size: 87.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1871fd1ee579732ade88995758c5c94db3e9954f8c43edd7effdd7acbcdbb194
|
|
| MD5 |
f136d13cf044472925ad70f053708804
|
|
| BLAKE2b-256 |
6714fd38529c59af85a795459bd26b10abb10544b1ab866e3c58058682796a0a
|
Provenance
The following attestation bundles were made for ado_dashboard-0.3.0-py3-none-any.whl:
Publisher:
release.yml on gaburn/ado-dashboard
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ado_dashboard-0.3.0-py3-none-any.whl -
Subject digest:
1871fd1ee579732ade88995758c5c94db3e9954f8c43edd7effdd7acbcdbb194 - Sigstore transparency entry: 1661538527
- Sigstore integration time:
-
Permalink:
gaburn/ado-dashboard@6a10158bcb4debf53231df638009bcaba79122d7 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gaburn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6a10158bcb4debf53231df638009bcaba79122d7 -
Trigger Event:
push
-
Statement type: