|
2 | 2 |
|
3 | 3 | ## [0.5.0] - 2026-03-04 |
4 | 4 |
|
| 5 | +### Class Diagram and C4 Architecture Support |
| 6 | +- Added `classDiagram` guidance for OOP design and domain modeling |
| 7 | +- Documented relationships: association, composition, aggregation, inheritance |
| 8 | +- Added C4 architecture support using `graph TD` + `subgraph` (not native `C4Context` which ignores themes) |
| 9 | +- Added `.dir-tree` CSS pattern for file structures with tree connectors |
| 10 | +- Added quick-reference table for choosing Mermaid diagram types |
| 11 | + |
5 | 12 | ### Claude Code Plugin Support |
6 | 13 | - Added `.claude-plugin/plugin.json` manifest for Claude Code plugin installation |
7 | 14 | - Renamed `prompts/` to `commands/` (compatible with both pi and Claude Code) |
8 | 15 | - Claude Code: `claude /plugin install https://github.com/nicobailon/visual-explainer` |
9 | 16 | - Note: Claude Code namespaces commands as `/visual-explainer:command-name` |
10 | 17 |
|
| 18 | +### OpenAI Codex Support |
| 19 | +- Added install instructions for OpenAI Codex to README |
| 20 | +- Uses `~/.agents/skills` and `~/.agents/commands` paths |
| 21 | + |
11 | 22 | ### Share Command |
12 | 23 | - New `/share` prompt and `scripts/share.sh` for instant sharing of visual explainer pages |
13 | 24 | - Uses vercel-deploy skill — no account or authentication required |
|
16 | 27 | - JSON output for programmatic use |
17 | 28 |
|
18 | 29 | ### Bug Fixes |
| 30 | +- Fixed pi skill loading: scoped `pi.skills` to `./SKILL.md` instead of `./` (was trying to load README.md and CHANGELOG.md as skills) |
| 31 | +- Fixed Mermaid line breaks: use `<br/>` instead of `\n` in flowchart labels (renders as literal text otherwise) |
19 | 32 | - Fixed `mermaid-flowchart.html` to match documented pattern: moved flex centering from `.mermaid-wrap .mermaid` to `.mermaid-wrap`, added `min-height: 400px` |
20 | 33 | - Fixed `share.sh` to properly capture and display deployment errors (was silently exiting due to `set -e`) |
21 | 34 |
|
|
0 commit comments