Skip to content

gilbertwong96/ado_cli

Repository files navigation

ado

AI-native Azure DevOps CLI — structured JSON output, embedded skills for LLM agents, and a self-discoverable command tree. Built for humans and AI agents (pi, Claude Code, Copilot, Cursor, etc.) to share.

A self-contained, cross-platform command-line tool for managing Azure DevOps — projects, repositories, work items, pipelines, pull requests, releases, and more. Works with both cloud (dev.azure.com) and self-hosted Azure DevOps Server.

Built with Finch, CLI Mate, and Burrito.

CI codecov Elixir License: Apache-2.0 Website


Why "AI-native"?

Most CLIs are designed for humans and retrofitted for AI agents with --json flags that nobody uses. ado is designed the other way around:

Feature Human-friendly AI-agent-friendly
Output Tables + colors Stable JSON envelopes on every command
Discovery ado --help → 3 levels deep ado schema --json — full command tree in 1 round trip
Documentation Embedded man pages ado skills list / ado skills read NAME --json
Error handling Pretty stack traces {ok: false, error: {code, status, message, details}}
Auth Browser OAuth (interactive) PAT, device code, browser — all machine-discoverable
Distribution brew install ado Single self-contained binary, no runtime deps

Every command supports --json for machine consumption. Every error has a stable code (e.g. auth_required, not_found, validation_error) so agents can match on it instead of parsing English.

For LLM agents: run ado skills install to install the embedded skills to your agent's skill directory (~/.pi/agent/skills/, ~/.claude/skills/, etc.) so they load natively on startup.


Installation

npm (recommended)

npm install -g @gilbertwong1996/ado --foreground-scripts

npm 11+ note: newer npm versions gate lifecycle scripts behind explicit approval. The --foreground-scripts flag allows the postinstall to run, which downloads the platform binary and auto-installs shell completion.

Pre-built binaries

Download the binary for your platform from the latest release and put it on your $PATH:

# Example for Apple Silicon Mac (pick the right binary for your platform)
curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.4-macos-aarch64
chmod +x ado && sudo mv ado /usr/local/bin/

From source

Requires Elixir 1.20+ and Mix:

git clone https://github.com/gilbertwong96/ado_cli.git
cd ado_cli
mix deps.get
mix escript.build
cp ado /usr/local/bin/

Or build standalone binaries with Burrito:

MIX_ENV=prod mix release
# Binaries in burrito_out/ (macOS aarch64, Linux x86_64/aarch64, Windows x86_64/aarch64)

Note: mix release in dev produces an OTP system service (start, stop, eval) — not a CLI tool. Use mix escript.build for dev iteration.


Quick Start

# Set credentials
export ADO_ORG=myorg
export ADO_PAT=mypersonalaccesstoken

# List projects
ado projects list

# Create a work item
ado workitems create MyProject --type Bug --title "Fix login page"

# Open a pull request
ado prs create MyProject MyRepo --title "Add feature" --source dev --target main

Shell Completion

<TAB> works out of the box once you source the generated script:

# bash (add to ~/.bashrc)
eval "$(ado completion bash)"

# zsh (add to ~/.zshrc; also works as a one-liner)
ado completion zsh > "${fpath[1]}/_ado"

# fish (add to ~/.config/fish/config.fish)
ado completion fish | source

# PowerShell (add to $PROFILE)
ado completion powershell | Out-String | Invoke-Expression

After installing, pressing <TAB> after ado shows every top-level subcommand; after ado prs shows abandon, comments, complete, create, diff, list, show; and so on at every nesting level.

Re-run the completion command after upgrading ado to pick up new subcommands and options.


For LLM Agents (pi, Claude Code, Copilot, Cursor, Codex)

Run ado schema --json to discover the full command tree, or install the embedded skills so your agent loads them natively:

# Install skills to your agent's skill directory
ado skills install                          # pi + claude + cursor + codex
ado skills install --target pi              # ~/.pi/agent/skills/
ado skills install --target claude          # ~/.claude/skills/
ado skills install --target cursor          # ~/.cursor/skills/
ado skills install --target codex           # ~/.codex/skills/
ado skills install --target copilot --repo .# ./.github/ado-cli/  (per-repo)

# Verify the install
ls ~/.pi/agent/skills/                       # you should see ado-cli/, ado-auth/, ado-ci/

Once installed, the agent can ado skills list, ado skills read <name>, and ado schema <command> --json as native operations, with no shell-out overhead.


Authentication

Multiple auth methods, auto-resolved in priority order. No az CLI required.

Priority Method How
1 CLI flags --org ORG --pat TOKEN
2 Environment variables ADO_ORG + ADO_PAT
3 Config file ~/.ado_cli/config.json (persistent)

Auth via ado login is browser-based OAuth — no az login is detected or required. The CLI is self-contained.

Login (persistent)

Three login methods are supported. Pick the one that fits your situation:

1. Browser OAuth (default) — recommended for interactive use

Opens your default browser to the Microsoft sign-in page, then captures the auth code on a local callback. Works with both work/school (AAD) and personal (MSA) Microsoft accounts. Personal accounts (e.g. me@outlook.com) on *.visualstudio.com orgs are supported via an ARM-first token-exchange flow.

# Open browser, sign in, get redirected back. Org auto-detected.
ado login

# Hint the org (avoids the auto-detect query)
ado login --org myorg

What happens:

  1. ado opens https://login.microsoftonline.com/... in your browser
  2. You sign in with AAD or MSA credentials
  3. The CLI captures the auth code on a localhost callback
  4. The CLI exchanges the code for an ARM token, then for an Azure DevOps access token, and saves the token to ~/.ado_cli/config.json
  5. Org is auto-detected from the token (or use --org to pin it)

2. Device code — recommended for SSH / no-browser sessions

For headless terminals, remote boxes, or any machine without a browser reachable from the same shell. The CLI prints a URL and a code; you visit the URL in any browser (laptop, phone) and enter the code to authenticate.

ado login --method device --org myorg

Example output:

To sign in, use a web browser to open:
  https://microsoft.com/devicelogin
And enter the code: ABC123XYZ

The CLI polls the token endpoint every few seconds; once you complete the sign-in on the other device, the CLI saves the token and you're logged in.

3. Personal Access Token (PAT) — recommended for CI / scripts

Stores a PAT in ~/.ado_cli/config.json for repeated use. Best for automation, CI runners, and scripts. See How to create a PAT.

ado login --method pat --org myorg --pat mytoken

Required scopes for full CLI coverage: vso.work, vso.code, vso.project, vso.build, vso.release (or "Full access" if you prefer).

4. Environment variables (no login) — recommended for ephemeral CI

Skip ado login entirely by setting env vars in the runner / shell:

export ADO_ORG=myorg
export ADO_PAT=mytoken
ado projects list

ADO_PAT is only read from the environment; it is never written to the config file. ADO_ORG is also accepted as a CLI flag (--org myorg).

Check status / log out

ado whoami       # Show current auth method, org, server
ado logout       # Remove ~/.ado_cli/config.json

Auth priority order

When you run a command, the CLI resolves credentials in this order:

  1. --pat / --org CLI flags (per-invocation)
  2. ADO_PAT / ADO_ORG env vars (per-session)
  3. ~/.ado_cli/config.json (persistent, set via ado login)

The first source that provides both an org and a token wins.


Self-Hosted Azure DevOps Server

For on-premises / private cloud Azure DevOps Server:

# CLI flag
ado --server https://ado.internal.example.com --org DefaultCollection projects list

# Environment variable
export ADO_SERVER=https://ado.internal.example.com

# Login with server
ado login --method pat --server https://ado.internal.example.com --org DefaultCollection --pat xxx

When --server is set, --org becomes the collection name (e.g. DefaultCollection).


Commands

The CLI covers 24 service areas of Azure DevOps. The canonical, up-to-date reference is the ado-cli skill:

ado skills read ado-cli
# Or read on disk: cat priv/skills/ado-cli/SKILL.md

Quick examples:

# Projects
ado projects list
ado projects create MyProject --description "My project" --visibility private

# Repos & PRs
ado repos list MyProject
ado repos create MyProject MyRepo
ado prs create MyProject MyRepo --title "Add feature" --source dev --target main
ado prs complete MyProject MyRepo 42 --merge-strategy squash --delete-source

# Work items
ado workitems list MyProject --type Bug --state Active
ado workitems query MyProject --wiql "SELECT [System.Id] FROM WorkItems WHERE [System.AssignedTo] = @Me"
ado workitems create MyProject --type Bug --title "Fix login" --tags "bug,critical"

# Pipelines (YAML)
ado pipelines list MyProject --top 10
ado pipelines run MyProject 42 --branch main --variables "ENV=staging,DEBUG=true"

# Watch a build in real-time (live status + streaming logs)
ado ci watch MyProject 99
ado ci watch MyProject --latest --definition 42 --branch main

# Pipelines (Classic builds)
ado pipelines-builds queue MyProject --definition 5 --branch main
ado pipelines-builds cancel MyProject 99

# Variable groups + per-pipeline variables (secrets)
ado pipelines vars create MyProject --name prod-secrets --variables "DB_HOST=db,DB_PASS=secret" --secret DB_PASS
ado pipelines variables create MyProject 42 --key DEPLOY_TOKEN --value "ghp_xxx" --secret

# Iterations, areas, wikis
ado iterations list MyProject MyTeam
ado areas create MyProject --name Backend
ado wikis create MyProject --name Engineering

# Users, teams, security
ado users list
ado teams members list MyProject MyTeam
ado security groups create MyProject --name "Deployers"
ado security permissions namespaces

# Banners + packages
ado banners set --message "Maintenance in progress" --type warning
ado packages list MyProject MyFeed
ado imports create MyProject new-repo --url https://github.com/org/repo.git

# CI / scriptable
ado --json projects list | jq '.[].name'

For the complete command reference including all options, flags, and JSON output schemas, see the embedded ado-cli skill (ado skills read ado-cli). Every command also supports --help for inline reference:

ado --help
ado projects --help
ado pipelines vars create --help

Global Options

-o, --org ORG       Azure DevOps organization / collection name [env: ADO_ORG]
-t, --pat TOKEN     Personal Access Token [env: ADO_PAT]
-s, --server URL    Self-hosted Azure DevOps Server URL [env: ADO_SERVER]
-v, --verbose       Enable verbose output
    --json          Output raw JSON instead of formatted tables
    --help          Show help for any command

Development

Setup

# Install dependencies
mix deps.get

# Compile
mix compile

# Run tests
mix test

# Run in dev mode
mix run -e 'AdoCli.CLI.run(System.argv())' -- projects list

Build

# Escript (fast CLI binary for dev)
mix escript.build
./ado projects list

# Burrito native binaries (for distribution)
MIX_ENV=prod mix release
# → burrito_out/  (macOS aarch64, Linux x86_64/aarch64, Windows x86_64/aarch64)

mix release in dev produces an OTP system service (start/stop/eval). Use mix escript.build for CLI iteration.

Documentation

# Generate HTML docs
mix docs
# Open doc/index.html

# Also outputs: doc/llms.txt (AI context), doc/ado_cli.epub

Quality

# Full CI pipeline (compile, format, credo, deps check, xref, dialyzer)
mix ci

# Quick checks
mix lint         # Credo static analysis
mix inspect      # Project structure map (reach)
mix health       # Dead code & smell detection
mix test         # Unit tests

Quality Tools

Tool Purpose Mix Task
Credo Static code analysis mix credo --strict
Dialyxir Type checking mix dialyzer
ex_dna Code duplication detection mix ex_dna
ex_slop AI-generated code slop checks (loaded by Credo)
Reach Program dependence graph mix reach.map
mix_audit Dependency vulnerability audit mix deps.audit
ExDoc Documentation generation mix docs

Project Structure

ado_cli/
├── lib/
│   ├── ado_cli.ex                    # Main module (escript entry point)
│   ├── ado_cli/
│   │   ├── application.ex            # Burrito entry point
│   │   ├── auth.ex                   # Multi-provider authentication (PAT, browser, device)
│   │   ├── client.ex                 # Finch HTTP client with redirect handling
│   │   ├── config_file.ex            # ~/.ado_cli/config.json persistence
│   │   ├── skills.ex                 # Embedded skill file reader
│   │   └── cli/
│   │       ├── cli.ex                # CLI dispatch & global options
│   │       ├── helpers.ex            # Shared output/error helpers
│   │       ├── projects.ex           # projects list|show|create|update|delete
│   │       ├── repos.ex              # repos list|show|create|delete
│   │       ├── branch_policies.ex    # branch-policies list|show|create|update|delete
│   │       ├── work_items.ex         # workitems list|show|query|create|update|delete|comments
│   │       ├── pipelines.ex          # pipelines list|show|run|create|update|delete|vars|variables
│   │       ├── builds.ex             # pipelines-builds (classic) list|show|queue|cancel|tags|definitions
│   │       ├── folders.ex            # pipelines-folders list|create|delete
│   │       ├── run_artifacts.ex      # pipelines-artifacts list|download
│   │       ├── pull_requests.ex      # prs list|show|create|complete|abandon|approve|vote|comments
│   │       ├── releases.ex           # releases list|show
│   │       ├── iterations.ex         # iterations list|show|create|update|delete
│   │       ├── areas.ex              # areas list|show|create|update|delete
│   │       ├── wikis.ex              # wikis and pages list|show|create|update
│   │       ├── teams.ex              # teams list|show|create|update|delete|members
│   │       ├── users.ex              # users list|show|add|remove
│   │       ├── extensions.ex         # extensions list|show|install|uninstall|enable|disable
│   │       ├── agent_pools.ex        # agent-pools list|show|queues
│   │       ├── connections.ex        # connections list|show
│   │       ├── security.ex           # security groups + permissions
│   │       ├── banners.ex            # banners show|set|delete
│   │       ├── packages.ex           # packages list|versions|show
│   │       ├── imports.ex            # imports list|show|create (GitHub→AzDo migration)
│   │       ├── auth_commands.ex      # login command
│   │       ├── logout.ex             # logout command
│   │       ├── whoami.ex             # whoami command
│   │       └── skills.ex             # skills list|read command
│   └── mix/tasks/ci/
│       └── dialyzer.ex              # CI dialyzer with Finch false-positive filter
├── priv/skills/                      # Embedded skill content (loaded at compile time)
│   ├── ado-cli/                      # Main reference
│   ├── ado-auth/                     # Auth details
│   └── ado-ci/                       # CI/CD patterns
├── config/
│   └── config.exs                    # Application configuration
├── test/
├── .credo.exs                        # Credo configuration (strict mode)
├── AGENTS.md                         # CI quality gate principles
└── mix.exs                           # Project definition & aliases

Command Reference

The CLI covers 24 service areas of Azure DevOps. The canonical, up-to-date reference is the ado-cli skill embedded in the binary:

ado skills read ado-cli

Or see the on-disk source at priv/skills/ado-cli/SKILL.md. The skill includes the full command table, conventions, and quick-start examples.


API Coverage

All commands use Azure DevOps REST API v7.1 (configurable via ADO_API_VERSION). The CLI covers 24 service areas of Azure DevOps. See the embedded ado-cli skill (ado skills read ado-cli) for the full command reference and per-endpoint coverage.

Service area Endpoint Status
Core / Projects _apis/projects list, show, create, update, delete
Git / Repos {project}/_apis/git/repositories list, show, create, delete
Git / Pull Requests {project}/_apis/git/repositories/{id}/pullrequests list, show, create, complete, abandon, vote, comments
Git / Policies {project}/_apis/policy/configurations list, show, create, update, delete
Git / Imports {project}/_apis/git/importRequests list, show, create
Work Items {project}/_apis/wit/wiql, _apis/wit/workitems/{id} query, show, create, update, delete, comments, attachments
Sprints / Iterations {project}/_apis/work/teamsettings/iterations list, show, create, update, delete
Area Paths {project}/_apis/wit/classificationNodes/areas list, show, create, update, delete
Pipelines (YAML) {project}/_apis/pipelines, /runs list, show, run, create, update, delete
Pipelines (Variables) {project}/_apis/pipelines/{id}/variables list, create, delete
Variable Groups {project}/_apis/distributedtask/variablegroups list, show, create, update, delete
Pipelines (Classic) {project}/_apis/build/builds list, show, queue, cancel, tags, definitions
Pipelines (Folders) {project}/_apis/pipelines/folders list, create, delete
Pipeline Artifacts {project}/_apis/build/builds/{id}/artifacts list, download
Releases {project}/_apis/release/releases list, show
Wikis {project}/_apis/wiki/wikis, pages list, show, create, update, delete
Teams _apis/teams list, show, create, update, delete, members
Users _apis/accesscontrolentries list, show, add, remove
Extensions _apis/extensionmanagement/installedextensions list, show, install, uninstall, enable, disable
Agent Pools _apis/distributedtask/pools, /queues list, show, queues
Service Connections {project}/_apis/serviceendpoint/endpoints list, show
Security Groups _apis/graph/groups list, show, create, delete, members
Security Permissions _apis/securitynamespaces, _apis/permissions namespaces, list
Admin Banners _apis/settings/entries/banners show, set, delete
Universal Packages {project}/_apis/packaging/feeds/{id}/packages list, versions, show

CI Pipeline

Every commit must pass the full CI gate (mix ci):

Step Check
1 compile --all-warnings --warnings-as-errors
2 format --check-formatted
3 credo --strict
4 deps.unlock --check-unused
5 deps.audit
6 xref graph --label compile-connected --fail-above 0
7 dialyzer (with Finch false-positive filtering)

See AGENTS.md for the full quality gate specification.


Watch a build in real-time

ado ci watch streams live status and per-line log output for an Azure DevOps build — like tail -f for CI:

# Watch build #123 in MyProject
ado ci watch MyProject 123

# Watch the latest build on a specific pipeline + branch
ado ci watch MyProject --latest --definition 42 --branch main

# Tighter polling (default 2s)
ado ci watch MyProject 123 --poll-interval 500

The watcher polls the Azure DevOps Build API every 2s (configurable) and prints:

  • Build status (running / succeeded / failed / canceled)
  • Job/step transitions from the timeline
  • New log lines as they're written by the running step

The underlying streaming mechanism uses ?id=N on the log endpoint, which returns log content up to line N. The watcher increments N each tick and only prints lines it hasn't seen before.

The watch exits automatically when the build reaches a terminal state, or on Ctrl+C.


Skills for AI Agents

ado ships with embedded skill files (YAML-frontmatter Markdown) for use by AI coding agents. The skills teach agents how to use the CLI, not the underlying REST API — agents should never call the Azure DevOps REST API directly when the CLI is available.

What's in the binary

Three skills are embedded at compile time and exposed via:

ado skills list                       # List all available skills
ado skills read ado-cli               # Main reference: setup, auth, all 24 command groups
ado skills read ado-auth              # Authentication details (PAT, browser, MSA, troubleshooting)
ado skills read ado-ci                # CI/CD patterns: GitHub Actions, GitLab CI, secrets, scripts

Skills are also on disk in priv/skills/{name}/SKILL.md for repository-level inspection or to copy into an agent's ~/.claude/skills/ directory.

For AI agents: how to use these skills

  1. Read ado-cli first when you need to discover available commands. The Command Groups table in that skill is the canonical reference — it covers all 24 service areas (projects, repos, workitems, pipelines, vars, builds, artifacts, folders, prs, releases, iterations, areas, wikis, teams, users, extensions, agent-pools, connections, security groups, security permissions, banners, packages, imports, branch-policies).

  2. Read ado-auth before invoking any command, to confirm which auth method is in effect and how to handle the Not authenticated error. The skill explains PAT vs browser OAuth vs device code, MSA personal org support, and the priority order of CLI flags / env vars / config file.

  3. Read ado-ci when running ado in a pipeline / CI script. The skill documents:

    • The recommended env-var-based auth (ADO_ORG + ADO_PAT)
    • JSON output (ado --json ... | jq ...) for scripting
    • Exit codes (0 success, 1 generic, 2 API error, 3 auth)
    • GitHub Actions and GitLab CI examples
  4. Always prefer --json flag when scripting. The CLI emits stable JSON in non-tabular mode; --json also skips table-formatting errors that can appear in CI environments that don't handle ANSI escapes well.

  5. Always quote project and repo names that contain spaces:

    ado repos list "Employee Management"
  6. Never log credentials. The CLI masks PATs in error output, but don't echo them yourself. Pass via ADO_PAT env var or --pat flag only.

Loading skills into an agent

If your agent supports the skills discovery protocol:

# Quick check
ado skills list | head

# Dump a skill to a file (e.g., for an agent's skill directory)
ado skills read ado-cli > ~/.claude/skills/ado-cli/SKILL.md

If your agent does not support the skills protocol, paste the output of ado skills read ado-cli into its context — it contains the full command reference (~130 lines).

Skills vs REST API

The skills deliberately do not document the Azure DevOps REST API. Agents reading the skills will call the CLI rather than constructing HTTP requests by hand. This is intentional: the CLI handles auth, retries, result pagination, and cross-org quirks that vary between AAD / MSA / self-hosted deployments.


Publishing

ado is distributed through two channels:

  1. GitHub Releases — single self-contained binary per platform.
  2. npm — 6 packages under the @gilbertwong1996 scope, one of which (the main @gilbertwong1996/ado) is a thin Node.js wrapper that picks the right platform binary via optionalDependencies.

Note: The npm scope is @gilbertwong1996 (the maintainer's npm username), but the GitHub repo is gilbertwong96/ado_cli (the maintainer's GitHub handle). These are different accounts.

All publishing happens from your local laptop, not from CI. Tag a release, push the tag, wait for the CI release job to attach the binaries, then run the publish script. The CI release job produces the GitHub Release artifacts; npm publishing is intentionally a manual step so the maintainer (currently just you) can verify the artifacts before they go public.

Release flow

# 1. Bump version in mix.exs, commit, tag
$EDITOR mix.exs                          # bump version: "0.2.0" -> "0.4.4"
git add -u && git commit -m "v0.2.0"
git tag -a v0.2.0 -m "Release 0.2.0"
git push github main v0.2.0

Pushing the tag triggers the CI release job, which cross-compiles the Burrito binary for all 5 platforms and uploads them as artifacts. The release-attach job then creates the GitHub Release with the 5 binaries attached.

Wait a few minutes for CI to finish. Verify the release is up:

gh release view v0.2.0

Then publish to npm locally:

# Downloads binaries from the v0.2.0 release + publishes all 6 pkgs
./scripts/npm-publish.sh 0.2.0

That's it. The script handles everything else.

What the publish script does

scripts/npm-publish.sh VERSION runs four steps:

  1. gh release download v${VERSION} — fetches the 5 binaries (ado-${VERSION}-{macos-aarch64,macos-x86_64,linux-x86_64,linux-aarch64,windows-x86_64.exe}) from the GitHub Release you just tagged.
  2. Copies each binary into npm/@gilbertwong1996-ado-<platform>-<arch>/bin/ado{,.exe}.
  3. jq bumps the version in all 6 package.json files (@gilbertwong1996/ado and the 5 platform packages).
  4. npm publish --access public for the 5 platform packages first, then the main package last (so its optionalDependencies resolve cleanly).

Useful flags

./scripts/npm-publish.sh 0.2.0 --dry-run       # show what would happen, no network
./scripts/npm-publish.sh 0.2.0 --skip-download  # binaries already in place

Verifying a publish

# Check the published package on npm
npm view @gilbertwong1996/ado
npm view @gilbertwong1996/ado-darwin-arm64 dist.integrity

# Install from npm and smoke-test
npm install -g @gilbertwong1996/ado
ado --help
ado projects list --json
ado skills install --target pi

Prerequisites

Tool Why How to get it
gh Download release binaries brew install gh && gh auth login
npm Publish packages brew install node (bundles npm)
jq Edit package.json files brew install jq
An npm token with publish rights on @gilbertwong1996/* Auth npm login then verify with npm whoami

The script uses whatever npm authentication is in your environment (usually ~/.npmrc). No tokens are hard-coded.

Why local-only publishing?

A few reasons:

  • You're the only maintainer. There's no team to coordinate with, and no separation-of-duties that requires a CI service identity.
  • OIDC provenance doesn't work locally. npm publish --provenance requires a GitHub Actions OIDC token, which only Actions has. Your local publish will show no provenance badge on npmjs.com — that's fine for a single-maintainer project.
  • You want to verify before going public. The script's --dry-run flag lets you inspect exactly what would be published without actually publishing.
  • The NPM_TOKEN secret is fragile. Long-lived npm tokens in CI are a security liability. A local publish uses your own short-lived login session.

If a second maintainer joins later, the script can still be invoked from CI by exporting the same gh and npm auth that you'd use locally. The script has no assumptions about where it runs.

Rolling back a bad publish

npm allows unpublishing within 72 hours of release:

npm unpublish @gilbertwong1996/ado@0.2.0

After 72 hours, you'll need to publish a new patch version. Prefer fix-forward over rollback.

Why the 6-package split?

Package Size Who downloads
@gilbertwong1996/ado ~3 KB (Node.js wrapper) Everyone
@gilbertwong1996/ado-darwin-arm64 ~9 MB Apple Silicon Mac users only
@gilbertwong1996/ado-darwin-x64 ~9 MB Intel Mac users only
@gilbertwong1996/ado-linux-arm64 ~15 MB Linux aarch64 users only
@gilbertwong1996/ado-linux-x64 ~16 MB Linux x86_64 users only
@gilbertwong1996/ado-win32-x64 ~22 MB Windows users only

os, cpu, and libc fields in each package.json make npm pick only the right one at install time. A Mac user never downloads the 22 MB Windows binary, and vice versa.


License

Copyright © 2026 Gilbert Wong

This project is licensed under the Apache License, Version 2.0 — see the LICENSE file for the full text. You may obtain a copy of the license at https://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

AI-native Azure DevOps CLI — structured JSON output, embedded skills for LLM agents (pi, Claude Code, Copilot), self-discoverable command tree, single-file cross-platform binary via Burrito.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors