English | 한국어
A Codex plugin that turns complex topics into visual explanations for people seeing them for the first time.
The included $e11y-teacher skill checks source material and authoritative references, then creates a self-contained HTML page that explains the topic with large visuals and few words. The output opens directly in a browser without a build step or separate server.
The following prompt creates a beginner-friendly visual guide to OAuth:
$e11y-teacher Explain OAuth.
Open the OAuth e11y example HTML · If GitHub does not display the interactive page, download the file and open it in a browser.
This example includes:
- Distinct connector shapes and clear arrowheads for different relationships
- An animated Authorization Code + PKCE data flow
- An interactive, step-by-step PKCE simulation
- A decision structure that distinguishes OAuth from OpenID Connect
- Desktop and mobile rendering QA for boxes, layers, and overflow
First, add this repository as a Codex marketplace:
codex plugin marketplace add silbaram/skill-plugin --ref mainInstall simple-output from the marketplace:
codex plugin add simple-output@personalStart a new conversation after installation. Plugin skills are loaded in new conversations.
Provide the skill name, the topic to explain, and an output path:
$e11y-teacher Explain OAuth. Save the result to docs/oauth-e11y-example.html.
You can change both the topic and the destination:
$e11y-teacher Explain Kubernetes Pods. Save the result in the current project root.
Generated files follow these principles:
- Assume no prior knowledge and introduce real terms in a useful order.
- Show the central relationship with a large visual before using long prose.
- Distinguish connector direction, shape, and color according to meaning.
- Use animation or a small simulation only when time, movement, or state changes matter.
- Record authoritative sources and important unverified areas at the end of the page.
- Support UTF-8, responsive layouts, keyboard focus, and
prefers-reduced-motion.
Upgrade the registered Git marketplace and reinstall the plugin:
codex plugin marketplace upgrade personal
codex plugin add simple-output@personalAfter updating, start a new conversation before using $e11y-teacher again.
.
├── .agents/plugins/marketplace.json
├── README.md
├── README.ko.md
├── plugins/simple-output/
│ ├── .codex-plugin/plugin.json
│ └── skills/e11y-teacher/
│ ├── SKILL.md
│ └── references/
│ ├── diagram-patterns.md
│ ├── qa.md
│ └── visual-treatment.md
└── assets/
├── oauth-e11y-example.html
└── oauth-e11y-example-preview.png
.agents/plugins/marketplace.jsondeclares the installable plugin and its local source path..codex-plugin/plugin.jsondefines thesimple-outputname, version, display metadata, and skill path.SKILL.mdcontains the core instructions used by$e11y-teacherto research and structure an explanation.references/contains separate guidance for diagrams, visual treatment, and rendering QA.
Codex plugins bundle reusable skills and external-service connections to extend ChatGPT and Codex. See the official OpenAI Plugins documentation for the concepts and component model.
