Token导航 LogoToken导航TokenDH.com
云服务操作浏览器github未标认证来源可访问许可证需确认审计通过

azure-devops-wiki-markdownAzure devops wiki Markdown 部署

Agent Skill

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

总安装

674

周安装

27

GitHub Stars

13

下载量

218
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill azure-devops-wiki-markdown

简介

精准路由 Azure DevOps Wiki 相关的 Markdown 语法与渲染特性问题。

  • 适用于页面排版异常、Mermaid 图表失效或代码块高亮错误排查。
  • 区分通用 Markdown 与 Wiki-only 功能,避免混淆本地预览与服务器渲染差异。
  • 调用 support-matrix.md 验证特定功能在 Done/Widget/PR 中的可用性。
  • 提交变更前应在 PR 中预览效果,确保多端显示一致。

SKILL.md

Azure DevOps Wiki Markdown

Route Azure DevOps Markdown questions to the right reference, with extra depth on wiki-only blocks, Mermaid-safe authoring, and code-fence language identifiers.

Verified against Microsoft Learn Azure DevOps Markdown guidance, the Azure Repos Sprint 259 release note, and the current Highlight.js supported-language table on April 9, 2026.

Decision Tree

What do you need to do?

  • Draft or repair a normal wiki page -> read references/syntax.md
  • Check whether a feature works in Done, Widget, PR, README, or Wiki -> read references/support-matrix.md
  • Use wiki-only features such as [[_TOSP_]], <details>, query-table, @ mentions, KaTeX, or video embeds -> read references/advanced-features.md
  • Draft a proposal decision tree for a plan, rollout, ADR, or dependency discussion -> read references/decision-trees.md and templates/decision-tree-proposal.md
  • Create or debug a Mermaid diagram -> read references/mermaid.md
  • Pick a fenced-code language tag or alias -> read references/code-languages.md and optionally run python3 scripts/find_code_language.py <query>
  • Diagnose Azure DevOps-specific rendering surprises -> read references/gotchas.md

Quick Reference

TaskUse
Create a wiki TOC[[_TOC_]]
Create a table of subpages[[_TOSP_]]
Force a line break inside a paragraphend the line with two spaces before pressing Enter
Add a Mermaid diagram to a wiki page::: mermaid... :::
Add Azure Boards query results::: query-table <query-guid>... :::
Mention a user while editing in code@<{identity-guid}>
Link to another wiki page[Display text](/parent-page/child-page)
Force a line break in a wiki table cell<br/>
Verify a code-fence aliaspython3 scripts/find_code_language.py typescript

Reading Guide

TaskRead
Page structure, links, line breaks, tables, and standard wiki authoringreferences/syntax.md
Wiki-only features such as subpage tables, collapsible sections, query tables, mentions, KaTeX, and video embedsreferences/advanced-features.md
Proposal decision trees and rollout-plan examplesreferences/decision-trees.md
Feature-by-surface support differencesreferences/support-matrix.md
Supported Mermaid diagram types, syntax, and limitationsreferences/mermaid.md
Safe code-fence aliases, ambiguous aliases, and local verificationreferences/code-languages.md
Failure modes, symptoms, and fixesreferences/gotchas.md
Starter wiki pagetemplates/wiki-page-starter.md
Starter advanced wiki pagetemplates/wiki-page-advanced-starter.md
Starter proposal decision treetemplates/decision-tree-proposal.md
Starter Mermaid snippetstemplates/mermaid-starter.md

Operating Rules

  • Treat wiki pages as the safe target for Mermaid, [[_TOC_]], [[_TOSP_]], query-table, HTML tags, table-cell <br/>, and collapsible <details> sections. Check references/support-matrix.md before assuming the same feature works in PRs, READMEs, widgets, or Done fields.
  • For flowchart-style Mermaid, prefer graph TD or graph LR. Microsoft documents Mermaid support but explicitly calls out flowchart syntax as a limitation in Azure DevOps.
  • For proposal decision trees, keep one branching question per node and put the recommendation, risks, and next step below the diagram.
  • Prefer mainstream code-fence aliases such as bash, powershell, json, yml, ts, tsx, python, csharp, cpp, sql, and plaintext. Use the helper script for edge cases and alias overlaps.
  • When a user edits wiki Markdown directly in source control instead of the browser editor, favor literal, documented syntax over UI-only instructions.

Gotchas

  1. Azure DevOps line breaks are stricter than many Markdown renderers. Pressing Enter alone does not create an in-paragraph line break; add two trailing spaces first.
  2. Mermaid in Azure DevOps wiki pages uses ::: mermaid blocks, not triple-backtick ``` `mermaid ``` fences.
  3. Azure DevOps documents Mermaid support but also warns that flowchart syntax is limited. Convert generic Mermaid flowcharts to graph TD or graph LR.
  4. [[_TOC_]] and [[_TOSP_]] are case-sensitive, and only the first instance of each tag renders on a page.
  5. <details><summary> blocks need a blank line after </summary>, and multiple blocks need spacing after </details>, or the page can render incorrectly.
  6. query-table needs a real Azure Boards query GUID, not the query name or the full query URL.
  7. When editing in code, @ mentions use @<{identity-guid}>, not the visible alias form from the browser editor.
  8. Highlight.js lists some languages as third-party packages or ambiguous aliases. Do not promise highlighting for uncommon tags until you verify them locally.
  9. KaTeX math is documented for pull requests and wiki files. Do not project that support onto README files or dashboard widgets without a separate check.

Verification

  • Run python3 scripts/find_code_language.py <query> when a user asks whether a language alias exists or whether an alias is ambiguous.
  • Run python3 scripts/validate.py. from this skill directory after edits.
  • Run python3 scripts/test_skill.py. to verify eval structure and cross-references locally.

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

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

平台分布

Codex

35.28%
按下载量换算77

Claude

28.5%
按下载量换算62

Cursor

17.46%
按下载量换算38

Gemini CLI

9.19%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills