npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@keber/ado-powershell

v1.2.0

Published

Azure DevOps PowerShell skill for GitHub Copilot, Claude Code, and other AI agents.

Downloads

130

Readme

ado-powershell

An AI agent skill that enables GitHub Copilot, Claude Code, and other compatible agents to interact with the Azure DevOps REST API using PowerShell - covering Work Items, Test Plans, Pipelines, Git repositories, and more.


Installation

Install the CLI globally from npm:

npm install -g ado-powershell

Then, inside any project where you want the skill available to your AI agent:

cd your-project
adops install --skills

This copies the skill files into .github/skills/ado-powershell/ in your project. GitHub Copilot and Claude Code will discover and use them automatically.


Requirements

  • Node.js 16+ (for the CLI)
  • PowerShell 7+ or Windows PowerShell 5.1 (for the skill scripts)
  • An Azure DevOps Personal Access Token (PAT) with permissions matching the operations you need

Configuration

Set these environment variables before the agent runs the skill:

$env:ADO_ORG     = 'my-organization'
$env:ADO_PROJECT = 'my-project'
$env:ADO_PAT     = 'your-pat-here'   # never hardcode; read from a secret store

Alternatively, pass values explicitly to Initialize-AdoSession, or point it to a JSON config file. See the skill's SKILL.md for the full resolution order.


What the skill provides

Once installed, the agent gets access to the following PowerShell functions:

| Domain | Functions | |--------|-----------| | Work Items | Get, batch-get, WIQL query, create, update, comment, link, attach files | | Testing | Test Plans, Suites, Cases, Runs, Results (read and write) | | Pipelines | List pipelines, list and filter runs, trigger a run | | Git | Repositories, branches, team iterations/sprints |

All write functions support -WhatIf for dry-run simulation. Full parameter documentation and examples are in the references folder.


Skill structure

.github/skills/ado-powershell/
  SKILL.md              # Agent entry point - quick-lookup index
  load.ps1              # Single dot-source to load all functions
  scripts/
    ado-base.ps1        # Auth, session management, HTTP core
    ado-workitems.ps1   # Work Item CRUD, WIQL, links, attachments
    ado-testing.ps1     # Test Plans, Suites, Cases, Runs, Results
    ado-pipelines.ps1   # Pipelines: list, runs, trigger
    ado-git.ps1         # Repositories, branches, iterations
  references/
    workitems.md        # Full parameter docs + examples
    testing.md
    pipelines.md
    git.md
    endpoints.md        # ADO API v7.1 endpoint reference
    errors.md           # HTTP errors and PAT permission matrix
  assets/
    smoke-test.ps1      # Connectivity and permission validation script

Validating the installation

After installing the skill, the agent can run the smoke test to verify connectivity and PAT permissions:

. .github/skills/ado-powershell/assets/smoke-test.ps1

License

MIT