{
  "schemaVersion": "1.0",
  "item": {
    "slug": "azure-devops",
    "name": "Azure DevOps",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/PALs-Software/azure-devops",
    "canonicalUrl": "https://clawhub.ai/PALs-Software/azure-devops",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/azure-devops",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=azure-devops",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "azure-devops",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T09:12:53.020Z",
      "expiresAt": "2026-05-07T09:12:53.020Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=azure-devops",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=azure-devops",
        "contentDisposition": "attachment; filename=\"azure-devops-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "azure-devops"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/azure-devops"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/azure-devops",
    "agentPageUrl": "https://openagent3.xyz/skills/azure-devops/agent",
    "manifestUrl": "https://openagent3.xyz/skills/azure-devops/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/azure-devops/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Azure DevOps Skill",
        "body": "List projects, repositories, branches. Create pull requests. Manage work items. Check build status."
      },
      {
        "title": "Check before running for valid Configuration, if values missing ask the user!",
        "body": "Required:\n\nAZURE_DEVOPS_PAT: Personal Access Token\nAZURE_DEVOPS_ORG: Organization name\n\nIf values are missing from ~/.openclaw/openclaw.json, the agent should:\n\nASK the user for the missing PAT and/or organization name\nStore them in ~/.openclaw/openclaw.json under skills.entries[\"azure-devops\"]"
      },
      {
        "title": "Example Config",
        "body": "{\n  skills: {\n    entries: {\n      \"azure-devops\": {\n        apiKey: \"YOUR_PERSONAL_ACCESS_TOKEN\",  // AZURE_DEVOPS_PAT\n        env: {\n          AZURE_DEVOPS_ORG: \"YourOrganizationName\"\n        }\n      }\n    }\n  }\n}"
      },
      {
        "title": "List Projects",
        "body": "curl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/_apis/projects?api-version=7.1\" \\\n  | jq -r '.value[] | \"\\(.name) - \\(.description // \"No description\")\"'"
      },
      {
        "title": "List Repositories in a Project",
        "body": "PROJECT=\"YourProject\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories?api-version=7.1\" \\\n  | jq -r '.value[] | \"\\(.name) - \\(.webUrl)\"'"
      },
      {
        "title": "List Branches in a Repository",
        "body": "PROJECT=\"YourProject\"\nREPO=\"YourRepo\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO}/refs?filter=heads/&api-version=7.1\" \\\n  | jq -r '.value[] | .name | sub(\"refs/heads/\"; \"\")'"
      },
      {
        "title": "Create a Pull Request",
        "body": "PROJECT=\"YourProject\"\nREPO_ID=\"repo-id-here\"\nSOURCE_BRANCH=\"feature/my-branch\"\nTARGET_BRANCH=\"main\"\nTITLE=\"PR Title\"\nDESCRIPTION=\"PR Description\"\n\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  -H \"Content-Type: application/json\" \\\n  -X POST \\\n  -d '{\n    \"sourceRefName\": \"refs/heads/'\"${SOURCE_BRANCH}\"'\",\n    \"targetRefName\": \"refs/heads/'\"${TARGET_BRANCH}\"'\",\n    \"title\": \"'\"${TITLE}\"'\",\n    \"description\": \"'\"${DESCRIPTION}\"'\"\n  }' \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_ID}/pullrequests?api-version=7.1\""
      },
      {
        "title": "Get Repository ID",
        "body": "PROJECT=\"YourProject\"\nREPO_NAME=\"YourRepo\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_NAME}?api-version=7.1\" \\\n  | jq -r '.id'"
      },
      {
        "title": "List Pull Requests",
        "body": "PROJECT=\"YourProject\"\nREPO_ID=\"repo-id\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_ID}/pullrequests?api-version=7.1\" \\\n  | jq -r '.value[] | \"#\\(.pullRequestId): \\(.title) [\\(.sourceRefName | sub(\"refs/heads/\"; \"\"))] -> [\\(.targetRefName | sub(\"refs/heads/\"; \"\"))] - \\(.createdBy.displayName)\"'"
      },
      {
        "title": "Notes",
        "body": "Base URL: https://dev.azure.com/${AZURE_DEVOPS_ORG}\nAPI Version: 7.1\nAuth: Basic Auth with empty username and PAT as password\nNever log or expose the PAT in responses\nDocumentation: https://learn.microsoft.com/en-us/rest/api/azure/devops/"
      }
    ],
    "body": "Azure DevOps Skill\n\nList projects, repositories, branches. Create pull requests. Manage work items. Check build status.\n\nCheck before running for valid Configuration, if values missing ask the user!\n\nRequired:\n\nAZURE_DEVOPS_PAT: Personal Access Token\nAZURE_DEVOPS_ORG: Organization name\n\nIf values are missing from ~/.openclaw/openclaw.json, the agent should:\n\nASK the user for the missing PAT and/or organization name\nStore them in ~/.openclaw/openclaw.json under skills.entries[\"azure-devops\"]\nExample Config\n{\n  skills: {\n    entries: {\n      \"azure-devops\": {\n        apiKey: \"YOUR_PERSONAL_ACCESS_TOKEN\",  // AZURE_DEVOPS_PAT\n        env: {\n          AZURE_DEVOPS_ORG: \"YourOrganizationName\"\n        }\n      }\n    }\n  }\n}\n\nCommands\nList Projects\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/_apis/projects?api-version=7.1\" \\\n  | jq -r '.value[] | \"\\(.name) - \\(.description // \"No description\")\"'\n\nList Repositories in a Project\nPROJECT=\"YourProject\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories?api-version=7.1\" \\\n  | jq -r '.value[] | \"\\(.name) - \\(.webUrl)\"'\n\nList Branches in a Repository\nPROJECT=\"YourProject\"\nREPO=\"YourRepo\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO}/refs?filter=heads/&api-version=7.1\" \\\n  | jq -r '.value[] | .name | sub(\"refs/heads/\"; \"\")'\n\nCreate a Pull Request\nPROJECT=\"YourProject\"\nREPO_ID=\"repo-id-here\"\nSOURCE_BRANCH=\"feature/my-branch\"\nTARGET_BRANCH=\"main\"\nTITLE=\"PR Title\"\nDESCRIPTION=\"PR Description\"\n\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  -H \"Content-Type: application/json\" \\\n  -X POST \\\n  -d '{\n    \"sourceRefName\": \"refs/heads/'\"${SOURCE_BRANCH}\"'\",\n    \"targetRefName\": \"refs/heads/'\"${TARGET_BRANCH}\"'\",\n    \"title\": \"'\"${TITLE}\"'\",\n    \"description\": \"'\"${DESCRIPTION}\"'\"\n  }' \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_ID}/pullrequests?api-version=7.1\"\n\nGet Repository ID\nPROJECT=\"YourProject\"\nREPO_NAME=\"YourRepo\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_NAME}?api-version=7.1\" \\\n  | jq -r '.id'\n\nList Pull Requests\nPROJECT=\"YourProject\"\nREPO_ID=\"repo-id\"\ncurl -s -u \":${AZURE_DEVOPS_PAT}\" \\\n  \"https://dev.azure.com/${AZURE_DEVOPS_ORG}/${PROJECT}/_apis/git/repositories/${REPO_ID}/pullrequests?api-version=7.1\" \\\n  | jq -r '.value[] | \"#\\(.pullRequestId): \\(.title) [\\(.sourceRefName | sub(\"refs/heads/\"; \"\"))] -> [\\(.targetRefName | sub(\"refs/heads/\"; \"\"))] - \\(.createdBy.displayName)\"'\n\nNotes\nBase URL: https://dev.azure.com/${AZURE_DEVOPS_ORG}\nAPI Version: 7.1\nAuth: Basic Auth with empty username and PAT as password\nNever log or expose the PAT in responses\nDocumentation: https://learn.microsoft.com/en-us/rest/api/azure/devops/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PALs-Software/azure-devops",
    "publisherUrl": "https://clawhub.ai/PALs-Software/azure-devops",
    "owner": "PALs-Software",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/azure-devops",
    "downloadUrl": "https://openagent3.xyz/downloads/azure-devops",
    "agentUrl": "https://openagent3.xyz/skills/azure-devops/agent",
    "manifestUrl": "https://openagent3.xyz/skills/azure-devops/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/azure-devops/agent.md"
  }
}