From de7f025204b5c40bc158413ca5bdc41d1c106930 Mon Sep 17 00:00:00 2001 From: "Dina Berry (She/her)" Date: Mon, 11 May 2026 10:42:26 -0700 Subject: [PATCH] fix: replace Mermaid diagram with text-based before/after comparison The architecture diagram rendered too small and was hard to read. Replaced with a markdown table (before) and tree view (after) that communicates the same information inline without image sizing issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../2026-05-11-tuning-up-copilot-skills.md | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/website/blog/2026-05-11-tuning-up-copilot-skills.md b/website/blog/2026-05-11-tuning-up-copilot-skills.md index 97fe55c..d043f56 100644 --- a/website/blog/2026-05-11-tuning-up-copilot-skills.md +++ b/website/blog/2026-05-11-tuning-up-copilot-skills.md @@ -229,7 +229,25 @@ azure-sdk-sample-review/ │ └── quickstart/ ``` -SDK reference consolidation: before/after, single source of truth +**Before:** 86 files across 6 language folders, 45% duplicated content. + +| ☕ Java | 🐍 Python | 🔷 Go | 🟣 .NET | 📘 TypeScript | 🦀 Rust | +|---------|-----------|-------|---------|---------------|---------| +| `references/` | `references/` | `references/` | `references/` | `references/` | `references/` | +| *14 generic + specific* | *14 generic + specific* | *14 generic + specific* | *14 generic + specific* | *14 generic + specific* | *14 generic + specific* | + +**After:** Single source of truth — 14 shared files, language folders hold only what's unique. + +``` +references/ +├── shared/ ← 14 generic files (update once, not six times) +├── java/ ← Java-specific only +├── python/ ← Python-specific only +├── go/ ← Go-specific only +├── dotnet/ ← .NET-specific only +├── typescript/ ← TypeScript-specific only +└── rust/ ← Rust-specific only +``` Eliminated six duplicated routing SKILL.md files. One dispatch mechanism instead of six. Waza compliance achieved — no more isolation violations. All 7 behavioral evals running at 100%.