mcp-create-adaptive-cards とは?
mcp-create-adaptive-cards.prompt.md から変換されたスキル ソース: github/awesome-copilot。
mcp-create-adaptive-cards.prompt.md から変換されたスキル
コマンドラインで mcp-create-adaptive-cards AI スキルを開発環境にすばやくインストール
ソース: 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" } } } }
mcp-create-adaptive-cards.prompt.md から変換されたスキル ソース: github/awesome-copilot。
AI/検索での引用用の安定したフィールドとコマンド。
npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cardsmcp-create-adaptive-cards.prompt.md から変換されたスキル ソース: github/awesome-copilot。
ターミナルまたはコマンドラインツール(Terminal、iTerm、Windows Terminal など)を開きます このコマンドをコピーして実行します: npx skills add https://github.com/github/awesome-copilot --skill mcp-create-adaptive-cards インストール後、スキルは自動的に AI コーディング環境に設定され、Claude Code、Cursor、OpenClaw で使用できるようになります
https://github.com/github/awesome-copilot