Skip to content

Conversation

@TianqiZhang
Copy link
Contributor

Pull Request Checklist

  • I have read and followed the CONTRIBUTING.md guidelines.
  • My contribution adds a new instruction, prompt, agent, or skill file in the correct directory.
  • The file follows the required naming convention.
  • The content is clearly structured and follows the example format.
  • I have tested my instructions, prompt, agent, or skill with GitHub Copilot.
  • I have run npm start and verified that README.md is up to date.

Description

This PR adds the microsoft-skill-creator skill, that's a meta-skill that helps people create skills that teach AI agents about a certain Microsoft technology, product or service.


Type of Contribution

  • New instruction file.
  • New prompt file.
  • New agent file.
  • New collection file.
  • New skill file.
  • Update to existing instruction, prompt, agent, collection or skill.
  • Other (please specify):

By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.

Copilot AI review requested due to automatic review settings February 10, 2026 06:05
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new microsoft-skill-creator Agent Skill to help users generate other Microsoft-technology-focused skills, including a set of reusable skill templates and an entry in the skills registry docs.

Changes:

  • Added microsoft-skill-creator skill instructions and workflow in SKILL.md
  • Added reusable Microsoft skill templates in references/skill-templates.md
  • Registered the new skill in docs/README.skills.md

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.

File Description
skills/microsoft-skill-creator/SKILL.md Defines the meta-skill’s purpose and end-to-end process for investigating a Microsoft technology and generating a new skill.
skills/microsoft-skill-creator/references/skill-templates.md Provides copy/paste templates for different Microsoft technology categories (SDK, Azure service, framework, API).
docs/README.skills.md Adds the new skill to the published skills index and lists its bundled reference asset.

Comment on lines +3 to +5
description: Create agent skills for Microsoft technologies using Learn MCP tools. Use when users want to create a skill that teaches agents about any Microsoft technology, library, framework, or service (Azure, .NET, M365, VS Code, Bicep, etc.). Investigates topics deeply, then generates a hybrid skill storing essential knowledge locally while enabling dynamic deeper investigation.
context: fork
compatibility: Requires Microsoft Learn MCP Server (https://learn.microsoft.com/api/mcp)
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

context: fork isn’t a documented skill frontmatter field in this repo’s skill template/validator guidance, and it doesn’t appear to be consumed by the build/validation scripts. Consider removing it or renaming it to a supported field (or documenting/implementing its purpose) to avoid confusing future contributors.

Copilot uses AI. Check for mistakes.
Comment on lines +40 to +47
```{language}
{code}
```

### {Pattern 2: e.g., "Error Handling"}
```{language}
{code}
```
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The outer fenced block starts with markdown but contains inner {language} fences (e.g., in the Common Patterns section). In Markdown, the inner fences will terminate the outer block, so the template won’t render as intended. Use a longer fence for the outer block (e.g., ````markdown) or switch the inner fences to tildes, and apply the same fix across all templates in this file.

Suggested change
```{language}
{code}
```
### {Pattern 2: e.g., "Error Handling"}
```{language}
{code}
```
~~~{language}
{code}
~~~
### {Pattern 2: e.g., "Error Handling"}
~~~{language}
{code}
~~~

Copilot uses AI. Check for mistakes.
- **Do**: {recommendation}
- **Avoid**: {anti-pattern}

See [best-practices.md](references/best-practices.md) for detailed guidance.
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This template links to references/best-practices.md, but that file isn’t provided by the template itself. Consider making this a placeholder (e.g., "See {optional best-practices reference file}") or adding a note that the generated skill should include that reference file if the link is kept, to avoid producing broken links by default.

Suggested change
See [best-practices.md](references/best-practices.md) for detailed guidance.
See {optional best-practices reference file (for example, `references/best-practices.md`)} for detailed guidance.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant