用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Azure/azure-sdk-for-rust --skill lint-markdown命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | lint-markdown |
| description | Check and fix formatting and other issues in markdown files using markdownlint-cli2. |
Check markdown files for common mistakes.
Run npm ci from this skill directory (.github/skills/lint-markdown/) first. Then run commands using npm exec --prefix .github/skills/lint-markdown -- markdownlint-cli2 {command} from the repository root.
Configuration is in .markdownlint-cli2.yaml files. The root configuration is at the repository root.
For markdownlint rules configuration, nest it under the config property following the markdownlint schema at https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json. Use friendly rule names (e.g., line-length) instead of codes (e.g., MD013).
Run npm exec --prefix .github/skills/lint-markdown -- markdownlint-cli2 from the repository root with a list of modified markdown files to lint.
Run with the --fix flag with a list of modified markdown files to automatically fix supported issues:
npm exec --prefix .github/skills/lint-markdown -- markdownlint-cli2 --fix
Run the same lint command again to verify all issues are fixed. There should be no errors reported.