A Codex skill for creating, rebuilding, and refining editable academic diagrams in .drawio / diagrams.net format.
Important
This repository is a local Codex skill, not a web service or backend application.
You do not need Docker, npm install, or server deployment.
To use it, copy skill/drawio into your local Codex skills directory.
| Item | Value |
|---|---|
| Project type | Local Codex skill |
| Build required | No |
| Server deployment | No |
| Package installation | No |
| Target location | ~/.codex/skills/ |
| Success signal | Codex can respond to $drawio prompts |
Clone or download this repository to your machine.
Windows PowerShell:
New-Item -ItemType Directory -Force $env:USERPROFILE\.codex\skills | Out-Null
Copy-Item -Recurse -Force .\skill\drawio $env:USERPROFILE\.codex\skills\macOS / Linux:
mkdir -p ~/.codex/skills
cp -R ./skill/drawio ~/.codex/skills/In Codex, try:
Use $drawio to create a simple academic system architecture diagram as both a .drawio file and a PNG.
If Codex recognizes $drawio, the deployment is complete.
- Chinese guide: README.zh-CN.md
- English guide: README.en.md
drawio-skill/
|-- README.md
|-- README.zh-CN.md
|-- README.en.md
|-- PUBLISHING.md
|-- SECURITY.md
|-- LICENSE
|-- .gitignore
`-- skill/
`-- drawio/
|-- SKILL.md
|-- agents/
| `-- openai.yaml
|-- references/
| |-- academic-diagram-style.md
| `-- figure-types.md
`-- scripts/
`-- new-drawio-figure.ps1
This repository uses the MIT License.