Add release-monitoring-report skill#442
Open
shahzaibj wants to merge 1 commit into
Open
Conversation
First check-in of the release-monitoring-report skill: a version-over-version release-health report generator for the Android Broker and Authenticator. Includes KQL query catalog, PowerShell/Node helpers (run-kql, bootstrap, validate, compare-versions, find-suspect-prs, fetch-appcenter-crashes), diagnostic-pattern + crash-source docs, and the HTML report template. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
❌ Work item link check failed. Description does not contain AB#{ID}. Click here to Learn more. |
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
First check-in of the
release-monitoring-reportskill — an agent skill that produces a version-over-version release-health report for the Android Broker and Authenticator as a single self-contained HTML file. For each app it answers two questions — what changed this release (KPIs + tables vs a baseline) and why (error-code movers, per-scenario deltas, crash analysis) — and ends in a clear SAFE / WATCH / HOLD verdict.This is a tooling/automation-only change: everything lands under
.github/skills/and ships no product code.What's included (27 files under
.github/skills/release-monitoring-report/)SKILL.mdassets/queries/*.kql+README.mdassets/scripts/run-kql.ps1,bootstrap-report.ps1,validate-report.ps1,compare-versions.js,find-suspect-prs.ps1,fetch-appcenter-crashes.js(App Center crash pull:groups/diff/enrich/newcrashes/signature)assets/docs/assets/templates/report-template.htmlHighlights
newcrashes(genuinely-new java-frame signatures via anti-join against a union of priors) +signature(cross-version presence) reliably separate real new crashes from pre-existing/environmental ones and from native-frame false positives.Secrets / cleanliness
~/.android-release-reports/appcenter.token); only internal Kusto cluster/DB names (AAD-accessed) appear..pr-patches/,AD-MFA-phonefactor-phoneApp-android/, and a local.gitignoreedit were deliberately excluded.Risk
Low —
.github/skills/only, no app/build/runtime impact. Helpers requireaz login(Kusto) and an optional App Center token; nothing runs automatically.Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com