Token导航 LogoToken导航TokenDH.com
云服务执行命令clawhub未标认证来源可访问clear审计通过

azure-devops-reportsAzure devops reports 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

4,144

周安装

178

GitHub Stars

公开资料未说明

下载量

1,452
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:azure-devops-reports(Azure devops reports 部署)
来源仓库:https://github.com/webspeaks/azure-devops-reports
安装命令:
openclaw skills install azure-devops-reports
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install azure-devops-reports

简介

安全读取 Azure DevOps 工作项并生成报表。

  • 适用于项目进度跟踪和资源统计场景。azure-devops-reports 属于云服务类 Skill,可作为该场景下的辅助能力补充。
  • 支持 WIQL 查询和 Excel 格式导出。
  • 通过 OpenClaw 宿主运行,需最小化读取权限。
  • 导出数据包含敏感信息时应加密存储。

SKILL.md

name
azure-devops-reports
description
Read Azure DevOps projects, teams, team members, saved queries, and work items securely; run WIQL-based reporting; and export spreadsheet-ready reports with summaries and charts. Use when the user wants Azure DevOps project lists, team lists, team-member lists, saved query results, sprint/work item reporting, WIQL queries, Excel/CSV exports, charts, assignee/state/type breakdowns, or team/project work item analysis.
metadata

Azure DevOps Reports

Use this skill for secure, read-focused Azure DevOps reporting.

Configuration

Load credentials from a local .env file stored in this skill directory.

Required variables:

  • AZURE_DEVOPS_ORG
  • AZURE_DEVOPS_PAT

Optional defaults:

  • AZURE_DEVOPS_DEFAULT_PROJECT
  • AZURE_DEVOPS_DEFAULT_TEAM
  • AZURE_DEVOPS_DEFAULT_QUERY_ID
  • AZURE_DEVOPS_OUTPUT_DIR

If required values are missing, ask the user to create or update .env in this skill directory.

Runtime requirements

This skill requires:

  • Node.js
  • Python 3
  • pip3
  • Python package: xlsxwriter

Install Python dependency once:

pip3 install -r requirements.txt

Safety guarantees

  • Read-only Azure DevOps access only
  • No create, update, or delete operations for Azure DevOps work items
  • No secret logging
  • No Authorization header logging
  • No arbitrary shell execution from user input
  • Output restricted to local report files under the skill directory
  • AZURE_DEVOPS_OUTPUT_DIR must resolve inside the skill directory
  • Prefer least-privilege PAT scopes: vso.project and vso.work

Workflow

  1. Load config from the skill-local .env file.
  2. Resolve project, team, and query id from explicit arguments or configured defaults.
  3. Decide whether the request is project-scoped, team-scoped, team-member scoped, saved-query, sprint-scoped, or custom-WIQL.
  4. Fetch work item ids via WIQL when filtering is needed.
  5. Fetch detailed work item fields.
  6. Normalize records for reporting.
  7. Default to the configured saved query when no explicit command or query id is provided.
  8. Export to JSON or CSV data bundles.
  9. Build summary tables for state, assignee, and work item type.
  10. Build Excel charts from exported JSON when the user asks for workbook generation.
  11. Use project listing, team listing, team-member listing, sprint listing, and saved-query reporting when the user asks in plain language.

Scripts

  • scripts/projects.js — list projects
  • scripts/teams.js — list teams in a project and team members
  • scripts/iterations.js — list team iterations / current sprint
  • scripts/queries.js — list saved queries and inspect a query definition
  • scripts/workitems.js — run work item queries and normalize results
  • scripts/export-report.js — export JSON/CSV data bundles
  • scripts/build_excel_report.py — generate Excel workbooks with charts from exported JSON

Exact script usage

Run all commands from the skill directory:

cd /path/to/azure-devops-reports

1) List projects

node scripts/projects.js list

2) List teams in a project

node scripts/teams.js list "Project Name"

3) List members in a team

node scripts/teams.js members "Project Name" "Team Name"

4) List current sprint

node scripts/iterations.js current "Project Name" "Team Name"

5) List all iterations / sprints

node scripts/iterations.js list "Project Name" "Team Name"

6) List saved queries in a project

node scripts/queries.js list --project "Project Name"

7) Get a saved query definition by id

node scripts/queries.js get --project "Project Name" --id "QUERY_GUID"

8) Fetch work items using saved query id

Explicit:

node scripts/workitems.js query-id --project "Project Name" --id "QUERY_GUID"

With defaults from .env:

node scripts/workitems.js query-id

9) List work items closed in the last 7 days

Using the default project from .env:

node scripts/workitems.js closed-last-week

With an explicit project:

node scripts/workitems.js closed-last-week --project "Project Name"

10) Export report data as JSON

Default saved-query export using .env defaults:

node scripts/export-report.js

Explicit saved-query export:

node scripts/export-report.js query-id \
  --project "Project Name" \
  --id "QUERY_GUID" \
  --format json \
  --out query-data.json

Explicit sprint summary export:

node scripts/export-report.js sprint-summary \
  --project "Project Name" \
  --team "Team Name" \
  --format json \
  --out sprint-summary.json

11) Build Excel workbook from exported JSON

python3 scripts/build_excel_report.py \
  --input output/query-data.json \
  --output output/query-report.xlsx

Ask ClawBot in plain English

These requests should map to the skill without manual script execution:

  • show my Azure DevOps projects
  • how many teams do we have?
  • list all team members in <Your Team Name> team
  • can you list the sprints?
  • generate the Azure DevOps report
  • regenerate the excel
  • list all work items closed in last week
  • summarize closed items from last week
  • show current progress of sprint 07
  • which team member has most open items?

References

Read these only if needed:

  • references/field-mapping.md for normalized field choices
  • references/report-types.md for report presets and chart ideas
  • references/api-notes.md for endpoint notes and PAT scope guidance

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.15%
按下载量换算1,048

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install azure-devops-reports 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills