What is mcp-create-adaptive-cards?
Skill converted from mcp-create-adaptive-cards.prompt.md Source: github/awesome-copilot.
Skill converted from mcp-create-adaptive-cards.prompt.md
Quickly install mcp-create-adaptive-cards AI skill to your development environment via command line
Source: 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" } } } }
Skill converted from mcp-create-adaptive-cards.prompt.md Source: github/awesome-copilot.
Stable fields and commands for AI/search citations.
npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cardsSkill converted from mcp-create-adaptive-cards.prompt.md Source: github/awesome-copilot.
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cards Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw
https://github.com/github/awesome-copilot