Add Azuredevops
Wires the Azure DevOps connector into a Power Apps code app via the pa CLI
Test report
- Verdict
- Works with setup
- Score
- Tested
- Jul 21, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · 8948a50
Fetched SKILL.md via the GitHub API + raw endpoint. Frontmatter parses cleanly (name + description + allowed-tools + model). Spot-checked all three body references: shared-instructions.md (200), connector-reference.md (200), and its #inspecting-large-generated-files anchor (heading confirmed present). No security smells — no curl|sh, base64, or exfiltration; only `pa app add data-source` and `npm run build`. Could NOT run the output stage: the skill needs the Power Platform CLI, an authenticated ADO connection, and a scaffolded code app with generated files (src/generated/services/AzureDevOpsService.ts, .power/appschemas/dataSourceInfo.ts, the visualstudioteamservices schema) that only `pa app add data-source` produces — so the Step-3 HttpRequest parameters→body fix has no files to apply to, and no baseline vs skill artifact could be produced. Trigger judged on 5 phrasings (below), all correct.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 4/10
- Docs & honesty 4/5
What Add Azuredevops does
Adds the Azure DevOps connector to a Power Apps code app: finds the connection, runs the pa CLI to add the data source, applies a required HttpRequest parameter-rename fix in three generated files, then builds. Triggers when a user wants to query ADO work items, create bugs, manage pipelines, or make Azure DevOps REST API calls from a Power Platform code app.
How to install Add Azuredevops
git clone --depth 1 https://github.com/microsoft/power-platform-skills.git /tmp/add-azuredevops-src
mkdir -p ~/.claude/skills
cp -R /tmp/add-azuredevops-src/plugins/code-apps/skills/add-azuredevops ~/.claude/skills/add-azuredevops
# NOTE: This is a plugin skill. Its body links to ${PLUGIN_ROOT}/shared/shared-instructions.md
# and ${PLUGIN_ROOT}/shared/connector-reference.md. Copied standalone as above, ${PLUGIN_ROOT}
# does not resolve and those links break. To keep them working, also copy the shared dir:
# cp -R /tmp/add-azuredevops-src/plugins/code-apps/shared ~/.claude/skills/add-azuredevops/shared
# (links still won't auto-resolve the ${PLUGIN_ROOT} token, but the files are then local).
# PREFERRED: install as a plugin so ${PLUGIN_ROOT} resolves and sibling skills (/list-connections) exist:
# /plugin marketplace add microsoft/power-platform-skills then install the "code-apps-preview" plugin.
# RUNTIME DEPS (not installable here): Power Platform CLI (pa/pac), an authenticated Azure DevOps
# connection in your Power Platform environment, and an existing scaffolded Power Apps code app.
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Add Azuredevops
-
/add-azuredevopsWires the Azure DevOps connector into a Power Apps code app via the pa CLI
It also activates on plain-language prompts like these:
-
Connect Azure DevOps to my Power Apps code app -
Query work items from this code app -
Create a bug in Azure DevOps from the app
Frequently asked questions
- Is the Add Azuredevops skill free?
- Yes. The skill itself is free from microsoft/power-platform-skills. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Add Azuredevops work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 21, 2026. Verdict: Works with setup. Fetched SKILL.md via the GitHub API + raw endpoint. Frontmatter parses cleanly (name + description + allowed-tools + model). Spot-checked all three body references: shared-instructions.md (200), connector-reference.md (200), and its #inspecting-large-generated-files anchor (heading confirmed present). No security smells — no curl|sh, base64, or exfiltration; only `pa app add data-source` and `npm run build`. Could NOT run the output stage: the skill needs the Power Platform CLI, an authenticated ADO connection, and a scaffolded code app with generated files (src/generated/services/AzureDevOpsService.ts, .power/appschemas/dataSourceInfo.ts, the visualstudioteamservices schema) that only `pa app add data-source` produces — so the Step-3 HttpRequest parameters→body fix has no files to apply to, and no baseline vs skill artifact could be produced. Trigger judged on 5 phrasings (below), all correct.
- What is the Add Azuredevops SkillProof Score?
- 7.2/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 4/10, docs & honesty 4/5.
- How do I install Add Azuredevops?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Add Azuredevops with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.