A repository of agent skill definitions. Each skill lives in its own folder under skills/ and is described by a single SKILL.md file.
This repository is designed to store and maintain guidance for intelligent agents that assist with .NET development, code review, architecture analysis, and skill scaffolding. The focus is on clear, actionable skill metadata rather than application source code.
skills/— contains agent skill directoriesdotnet-code-review/— expert code review guidance for C# / .NET codedotnet-developer/— .NET/C# development best practices and version-aware guidancedotnet-version-checker/— checks the official .NET support policy for the latest stable releasetechnical-deep-dive/— investigative deep-dive guidance for technical topicswrite-skill/— canonical skill scaffolding template for new skill creation
.github/copilot-instructions.md— workspace-level guidance for any agent or assistant working in this repo
Each skill should:
- live in its own directory under
skills/ - contain a single
SKILL.md - include YAML frontmatter with fields such as
name,description,applyTo, and optional metadata likecompatibility,skills, ortriggersOn - provide a clear purpose, when-to-use guidance, workflow steps, and validation criteria
- stay focused and concise, typically under 500 lines
- Review the existing
write-skill/SKILL.mdtemplate. - Create a new directory under
skills/with a lowercase, hyphen-separated name. - Add a
SKILL.mdfile that follows the repo's frontmatter and workflow conventions. - Update existing skills by preserving useful content and adding targeted workflow or metadata changes.
- This repository does not currently include build or test automation.
- The main objective is to document and standardize agent skill behavior rather than compile code.
- Keep updates tightly scoped to skill definitions and workspace guidance.