azure-kusto-graph-skills
v0.0.0-placeholderKusto graph analysis, IRQL security hunting pipelines, and graph visualization skills for Azure Data Explorer.
By MicrosoftLicense: MIT242 GitHub starsUpdated 7 hours ago
Get the plugin
git clone https://github.com/microsoft/GitHub-Copilot-for-AzureClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/azure-kusto-graph-skills/.
Plugin files
├── .claude-plugin/plugin.json├── skills/azure-kusto-graph/SKILL.md├── skills/azure-kusto-irql/SKILL.md├── skills/azure-kusto-irql-graph/SKILL.md└── .mcp.json
Included Skills3
Build and query Kusto graphs from natural language. Covers transient graphs (make-graph), persistent graph models/snapshots, pattern matching (graph-match), shortest paths, connected components, and graph-to-table export. Generates the edges-first thinking: define edges, define node lookups, union, make-graph. WHEN: make-graph, graph-match, graph-shortest-paths, graph-to-table, graph-mark-components, persistent graph, graph model, graph snapshot, build a graph from data, find paths between nodes, pattern matching in graph, connected components, transient graph, Kusto graph, KQL graph.
Compose IRQL (Incident Response Query Language) queries for Kusto cybersecurity investigations. Translates natural language hunting questions into composable IRQL pipelines using Get_*, Extract_*, and Enrich_* functions. WHEN: IRQL query, security hunt, threat hunting KQL, incident response query, compose hunting pipeline, failed logins, phishing investigation, lateral movement, process execution, file creation events.
Apply IRQL graph functions to KQL or IRQL query results for Kusto Explorer visualization. Generates Lift_To_Graph mappings and composes Graph_Render_View, Graph_Fold_By_Property, Extract_Node_*, Enrich_Node_*, and Enrich_Graph_* calls. Accepts a supplied query or limited basic natural-language source request; it is not a general natural-language-to-KQL/IRQL skill. WHEN: Lift_To_Graph, Graph_Render_View, Graph_Fold_By_Property, IRQL graph enrichment, graph mapping for existing query results, icon-decorated graph, fold graph nodes. Use azure-kusto-graph for native make-graph analysis, graph-match, shortest paths, components, or persistent graphs.
MCP servers1
- command
- npx
- args
- -y @azure/mcp@latest server start
Plugin manifests1
{
"name": "azure-kusto-graph-skills",
"description": "Kusto graph analysis, IRQL security hunting pipelines, and graph visualization skills for Azure Data Explorer.",
"version": "0.0.0-placeholder",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/github-copilot-for-azure",
"repository": "https://github.com/microsoft/GitHub-Copilot-for-Azure",
"license": "MIT",
"keywords": [
"azure",
"kusto",
"graph",
"irql",
"security",
"kql"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"hooks": "./hooks/claude-hooks.json"
}