Addding draw-io-diagram-generator Agent Skill and Instructions#1178
Closed
SriSatyaLokesh wants to merge 8 commits intogithub:stagedfrom
Closed
Addding draw-io-diagram-generator Agent Skill and Instructions#1178SriSatyaLokesh wants to merge 8 commits intogithub:stagedfrom
SriSatyaLokesh wants to merge 8 commits intogithub:stagedfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
This PR adds two new contributions for Draw.io (diagrams.net) support in GitHub Copilot to the awesome-copilot repository:
skills/draw-io-diagram-generator/— The skill enables users to generate Draw.io or diragrams.net diagrams from natural language descriptions, supporting various diagram types such as flowcharts, sequence diragrams, UML diagrams, architecture diagrams, and more directly from vscode or in copilot CLI. The skill includes a fully documentedSKILL.md, bundled XML templates for common diagram types, and a Python validation script to verify generated.drawiofiles.instructions/draw-io.instructions.md— A new instruction file that automatically applies Draw.io diagram standards whenever Copilot works with.drawio,.drawio.svg, or.drawio.pngfiles. It enforces a required workflow (identify → select template → plan → generate → validate), references the skill for full XML recipes, and ensures consistent, valid mxGraph XML output across all Draw.io files in a project.Together, these two files provide end-to-end Draw.io support - the instruction file ensures Copilot follows best practices when working on existing diagram files, while the skill handles generation from scratch.
Type of Contribution
Additional Notes
All skills validated successfully. No breaking changes.
Draw.io (diagrams.net) is one of the most widely adopted diagramming tools in software engineering and architecture workflows, with deep integrations in VS Code, Confluence, GitHub, and more. Despite this, there was no existing skill in the awesome-copilot repository to help users generate Draw.io diagrams using natural language - a common, repetitive task. Adding
draw-io-diagram-generatorskill fills this gap by letting Copilot users describe a system, workflow, or architecture in plain natural language and get a ready-to-open.drawiofile in return, significantly reducing the time spent on manual diagramming. This makes the skill a high-value, practical addition to the collection for developers, architects, and technical writers alike.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.