Diagnostics Report Analyzer Skill Installation
July 8, 2026 ยท View on GitHub
The Diagnostics Report Analyzer Skill helps AI agents inspect Diagnostics-Report.html attachments by reading the embedded JSON payload first, while still understanding legacy HTML-only and mixed-format reports.
Recommended: skills.sh
Install the skill with npx skills:
npx skills add https://github.com/AvdLee/Diagnostics --skill diagnostics-report-analyzer-skill
Then ask your agent to use it when analyzing a report:
Use the diagnostics report analyzer skill to inspect Diagnostics-Report.html and summarize the most likely issue.
Claude Code Plugin
This repository includes a Claude plugin manifest in .claude-plugin/.
For personal use in Claude Code:
- Add this repository as a marketplace:
/plugin marketplace add AvdLee/Diagnostics
- Install the plugin:
/plugin install diagnostics-report-analyzer@diagnostics-report-analyzer-skill
For project configuration, add the plugin to your repository's .claude/settings.json:
{
"enabledPlugins": {
"diagnostics-report-analyzer@diagnostics-report-analyzer-skill": true
},
"extraKnownMarketplaces": {
"diagnostics-report-analyzer-skill": {
"source": {
"source": "github",
"repo": "AvdLee/Diagnostics"
}
}
}
}
Claude Code will prompt contributors to install the plugin when they open the project.
Cursor Plugin
This repository includes a Cursor plugin manifest in .cursor-plugin/plugin.json.
Install or enable it using Cursor's plugin support, then ask Cursor to use the diagnostics-report-analyzer-skill when inspecting Diagnostics report attachments. See the Cursor plugins documentation and Cursor skills documentation for the latest installation flow.
OpenAI-Compatible Tools and Codex
This repository includes OpenAI-compatible manifests at:
openai.ymlagents/openai.yaml
For tools that use local skill folders, copy or symlink the skill folder into your tool's skills directory:
cp -R diagnostics-report-analyzer-skill/ "$CODEX_HOME/skills/diagnostics-report-analyzer-skill"
See the Codex skills documentation for where your client expects skills to be saved.
pi Package Manager
This repository includes package.json metadata for pi-compatible skill installation:
pi install https://github.com/AvdLee/Diagnostics
The skill will be available automatically in pi sessions that load the package.
Generic Plugin Manifest
Clients that support generic plugin discovery can read plugins.json. It points to:
diagnostics-report-analyzer-skill/
Use this path as the canonical skill folder for any client that supports the Agent Skills open format.
Manual Installation
- Clone this repository.
- Install or symlink
diagnostics-report-analyzer-skill/into your AI client's skills directory. - Ask your agent to use the Diagnostics Report Analyzer Skill when inspecting
.htmlreport attachments.
To verify installation, ask your agent to inspect a Diagnostics report and confirm it reads script#diagnostics-report-data before falling back to rendered HTML.