feat(skills): add diagnose skill for AI workflow health check 🤖🤖🤖#1622
Merged
aaronpowell merged 1 commit intogithub:stagedfrom May 6, 2026
Merged
feat(skills): add diagnose skill for AI workflow health check 🤖🤖🤖#1622aaronpowell merged 1 commit intogithub:stagedfrom
aaronpowell merged 1 commit intogithub:stagedfrom
Conversation
Contributor
🔍 Skill Validator Results✅ All checks passed
Summary
Full validator output```text Found 1 skill(s) [diagnose] 📊 diagnose: 983 BPE tokens [chars/4: 1,005] (detailed ✓), 9 sections, 1 code blocks ✅ All checks passed (1 skill(s)) ``` |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new diagnose skill to the skills catalog so Copilot can audit AI workflows across prompt, context, tooling, architecture, and safety dimensions, and updates the generated skills index accordingly.
Changes:
- Adds
skills/diagnose/SKILL.mdwith the new diagnostic workflow, scoring rubric, and report template. - Defines the five evaluation dimensions and a sample scored report/output format.
- Updates
docs/README.skills.mdto include the new skill in the generated skills table.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
skills/diagnose/SKILL.md |
New skill definition for AI workflow diagnostics, including front matter, scoring guidance, and output template. |
docs/README.skills.md |
Adds the generated catalog entry for the new diagnose skill. |
| @@ -0,0 +1,106 @@ | |||
| --- | |||
| name: diagnose | |||
| description: "Perform a systematic diagnostic scan of an AI workflow across 5 quality dimensions — prompt quality, context efficiency, tool health, architecture fitness, and safety — producing a scored report with prioritized remediation actions." | |||
Comment on lines
+61
to
+84
| ## Diagnostic Report Format | ||
|
|
||
| ```text | ||
| ╔══════════════════════════════════════╗ | ||
| ║ WORKFLOW DIAGNOSTIC ║ | ||
| ╠══════════════════════════════════════╣ | ||
| ║ Prompt Quality ████░ 4/5 ║ | ||
| ║ Context Efficiency ███░░ 3/5 ║ | ||
| ║ Tool Health ██░░░ 2/5 ║ | ||
| ║ Architecture ████░ 4/5 ║ | ||
| ║ Safety & Reliability ██░░░ 2/5 ║ | ||
| ╠══════════════════════════════════════╣ | ||
| ║ Overall Score: 15/25 ║ | ||
| ╚══════════════════════════════════════╝ | ||
|
|
||
| CRITICAL FINDINGS: | ||
| 1. [Most severe issue — immediate action needed] | ||
| 2. [Second most severe] | ||
| 3. [Third] | ||
|
|
||
| RECOMMENDED ACTIONS: | ||
| 1. [Specific remediation for finding #1] | ||
| 2. [Specific remediation for finding #2] | ||
| 3. [Specific remediation for finding #3] |
Comment on lines
+63
to
+74
| ```text | ||
| ╔══════════════════════════════════════╗ | ||
| ║ WORKFLOW DIAGNOSTIC ║ | ||
| ╠══════════════════════════════════════╣ | ||
| ║ Prompt Quality ████░ 4/5 ║ | ||
| ║ Context Efficiency ███░░ 3/5 ║ | ||
| ║ Tool Health ██░░░ 2/5 ║ | ||
| ║ Architecture ████░ 4/5 ║ | ||
| ║ Safety & Reliability ██░░░ 2/5 ║ | ||
| ╠══════════════════════════════════════╣ | ||
| ║ Overall Score: 15/25 ║ | ||
| ╚══════════════════════════════════════╝ |
aaronpowell
approved these changes
May 6, 2026
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.
Summary
Adds a new
diagnoseskill for systematically auditing AI workflow quality across 5 dimensions.What this skill does
Performs a structured diagnostic scan and produces a scored report with prioritized remediation actions.
5 dimensions:
Output: ASCII box report with 1–5 scores per dimension, overall score (X/25), critical findings, and ranked remediation actions.
Usage trigger
Invoke when a user wants to:
Validation
npm run skill:validate✅ passesnpm run build✅ docs updated