Was ist mcp-create-adaptive-cards?
Von mcp-create-adaptive-cards.prompt.md konvertierter Skill Quelle: github/awesome-copilot.
Von mcp-create-adaptive-cards.prompt.md konvertierter Skill
Installieren Sie den KI-Skill mcp-create-adaptive-cards schnell in Ihrer Entwicklungsumgebung über die Kommandozeile
Quelle: github/awesome-copilot.
{ "functions": [ { "name": "GetBudgets", "description": "Returns budget details including name and available funds", "capabilities": { "responsesemantics": { "datapath": "$", "properties": { "title": "$.name", "subtitle": "$.availableFunds" }, "statictemplate": { "type": "AdaptiveCard", "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5", "body": [ { "type": "Container", "$data": "${$root}", "items": [ { "type": "TextBlock", "text": "Name: ${if(name, name, 'N/A')}", "wrap": true }, { "type": "TextBlock", "text": "Available funds: ${if(availableFunds, formatNumber(availableFunds, 2), 'N/A')}", "wrap": true } ] } ] } } } } ] }
{ "name": "GetTransactions", "description": "Returns transaction details with dynamic templates", "capabilities": { "responsesemantics": { "datapath": "$.transactions", "properties": { "templateselector": "$.displayTemplate" } } } }
Von mcp-create-adaptive-cards.prompt.md konvertierter Skill Quelle: github/awesome-copilot.
Stabile Felder und Befehle für KI/Such-Zitate.
npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cardsVon mcp-create-adaptive-cards.prompt.md konvertierter Skill Quelle: github/awesome-copilot.
Öffnen Sie Ihr Terminal oder Kommandozeilen-Tool (Terminal, iTerm, Windows Terminal, etc.) Kopieren Sie diesen Befehl und führen Sie ihn aus: npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cards Nach der Installation wird der Skill automatisch in Ihrer KI-Programmierumgebung konfiguriert und ist bereit zur Verwendung in Claude Code, Cursor oder OpenClaw
https://github.com/github/awesome-copilot