.github/skills/send-notification/SKILL.md
Send adaptive card notifications to Microsoft Teams via Azure Logic App. Use when (1) sending issue triage reports to Teams, (2) posting JSON payloads as Teams notifications, (3) triggering workflow result notifications. Triggers on requests like "send notification", "notify team", "post to Teams", "send report".
npx skillsauth add microsoft/vscode-java-pack send-notificationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Send adaptive card notifications to Microsoft Teams via an Azure Logic App HTTP trigger.
This skill posts a JSON payload to a configured Logic App endpoint, which transforms the data into an adaptive card and sends it to a bound Teams group chat.
The notification URL must be set via environment variable:
NOTIFICATION_URL: The Azure Logic App HTTP trigger URLThe payload should be a JSON object matching the IssueLens triage report schema:
{
"title": "Daily Issue Report for Java Tooling",
"timeFrame": "January 28, 2026",
"totalIssues": 8,
"criticalIssues": 3,
"overallSummary": "Today, 8 issues were reported. 3 were identified as critical.",
"criticalIssuesSummary": [
{
"issueNumber": 1234,
"url": "https://github.com/org/repo/issues/1234",
"title": "Issue title here",
"summary": "Brief description of the issue and reason for criticality.",
"labels": "🔴 **High Priority** | 🏷️ bug, critical"
}
],
"allIssues": [
{
"issueNumber": 1234,
"url": "https://github.com/org/repo/issues/1234",
"title": "Issue title here"
}
],
"workflowRunUrl": "https://github.com/org/repo/actions/runs/12345"
}
For the full JSON schema, see references/payload-schema.json.
NOTIFICATION_URL environment variable is setUse curl or equivalent HTTP client to POST the JSON:
curl -X POST "$NOTIFICATION_URL" \
-H "Content-Type: application/json" \
-d '<json_payload>'
Report the result to the user with the HTTP status code.
This skill is designed to work with the IssueLens triage agent. After the agent generates a JSON report, invoke this skill to send the notification:
testing
Send workflow bot messages to Teams personal chat via Azure Logic App. Use when (1) sending personal notifications to individuals, (2) delivering triage summaries to specific recipients, (3) triggering personal workflow alerts. Triggers on requests like "send personal notification", "notify user", "send message to", "personal message".
development
Send HTML email notifications via Azure Logic App. Use when (1) sending formatted emails to recipients, (2) delivering reports or summaries via email, (3) triggering email notifications from workflows. Triggers on requests like "send email", "email this", "send via email", "mail to".
testing
Classify and label GitHub issues based on repository-specific labeling instructions. Use when (1) auto-labeling new issues, (2) classifying issue types (bug, feature, etc.), (3) adding priority or area labels, (4) applying consistent labeling rules. Triggers on requests like "label issue", "classify issue", "what labels should this issue have", "add labels to issue".
devops
Local text-to-speech via sherpa-onnx (offline, no cloud)