mirror of
https://github.com/github/awesome-copilot.git
synced 2026-08-08 18:19:14 +00:00
Migrate plugins and canvas extensions to Agent Plugins spec (#2546)
* feat: migrate plugins and extensions to Agent Plugins v1.0.0 spec - Add \ to all 69 curated plugin manifests - Migrate all 18 extension manifests: add \, move logo into xtensions.com.github.copilot.logo namespace, remove top-level logo and string xtensions: '.' - Update eng/validate-plugins.mjs: require \, validate namespace-keyed extensions object for canvas extensions, widen name pattern to allow dots (spec §5.5, max 64 chars) - Update eng/materialize-plugins.mjs: emit spec-clean served manifests (only spec fields: \, name, version, description, author, homepage, repository, license, keywords, extensions) - Update eng/generate-website-data.mjs: read logo from namespace with fallback to top-level logo for compatibility - Update eng/create-plugin.mjs: scaffold emits \ - Add .github/workflows/validate-plugins.yml: blocking CI for PRs touching plugins/** or extensions/** - Add spec compliance check to external plugin quality gates: non-blocking warnings with ✅/⚠️/🛑 emoji legend - Update AGENTS.md: document new extension manifest shape, add \ to plugin checklist Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * refactor: consolidate canvas extension plugins - Move all extension plugin manifests from extensions/<name> to plugins/<name> - Keep extensions/<name> as reusable source only - Remove standalone extension discovery from marketplace and website plugin catalogs - Auto-bundle same-name extension sources during materialization - Add build-only extensions.json references for sharing extensions across plugins - Remove x-awesome-copilot extension metadata support - Update validation and contributor documentation Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * feat: add canvas extension scaffolding skill - Add repo-local skill for creating canvas extension sources - Generate spec-compliant plugin manifests under plugins/ - Support registering reusable extensions with multiple plugins - Remove guidance for extension-local plugin manifests and custom fields Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * fix: align extension namespaces with current guidance - Use each extension ID as its manifest namespace key - Update validation and website generation to resolve extension-specific namespaces - Upsert plugin validation PR comments using the existing repository pattern Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * fix: use Copilot extension namespace - Adopt com.github.copilot for all canvas extension manifests - Require the namespace during validation and website generation - Update extension scaffolding guidance Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * docs: regenerate plugin catalog after merge Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * refactor(plugins): move manifests to plugin roots Use root plugin.json manifests and namespaced extension directories throughout local tooling, validation, generation, and contributor documentation. Restore materialize-plugins.mjs line breaks so the source remains readable in GitHub. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * feat(plugins): migrate manifests to namespaced composition Move repository composition metadata under com.github.awesome-copilot, materialize reusable extensions into the plugin extensions directory, and improve contributor and PR validation guidance. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * fix(validation): address plugin review findings Restore executable build scripts, validate namespaced manifests and hook directories, improve README item counts, and manage validation comments across reruns. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76 * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Copilot-Session: 8f3a88cb-e01e-4760-8125-460490dc1a76
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# Accessibility Kanban Plugin
|
||||
|
||||
Kanban board to manage accessibility issues, allow you to plan, track, and complete remediation work.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install accessibility-kanban@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "accessibility-kanban",
|
||||
"description": "Kanban board to manage accessibility issues, allow you to plan, track, and complete remediation work.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Aaron Powell",
|
||||
"url": "https://github.com/aaronpowell"
|
||||
},
|
||||
"keywords": [
|
||||
"accessibility",
|
||||
"github-issues",
|
||||
"issue-triage",
|
||||
"kanban-board",
|
||||
"planning-workflow",
|
||||
"status-tracking"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/accessibility-kanban"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
-8
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "acreadiness-cockpit",
|
||||
"description": "Drive Microsoft AgentRC from Copilot chat: assess AI readiness, generate Copilot instructions (flat or nested with applyTo globs for monorepos), and manage policies. Produces a self-contained static HTML dashboard at reports/index.html.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,12 +17,16 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"agents": [
|
||||
"./agents/ai-readiness-reporter.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/acreadiness-assess/",
|
||||
"./skills/acreadiness-generate-instructions/",
|
||||
"./skills/acreadiness-policy/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/ai-readiness-reporter.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/acreadiness-assess/",
|
||||
"./skills/acreadiness-generate-instructions/",
|
||||
"./skills/acreadiness-policy/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
-8
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "ai-team-orchestration",
|
||||
"description": "Run a lightweight, role-separated AI development team with flexible tools, developer-selected models, proportionate planning, and optional QA.",
|
||||
"version": "2.0.0",
|
||||
@@ -16,12 +17,16 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"agents": [
|
||||
"./agents/ai-team-dev.md",
|
||||
"./agents/ai-team-producer.md",
|
||||
"./agents/ai-team-qa.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/ai-team-orchestration/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/ai-team-dev.md",
|
||||
"./agents/ai-team-producer.md",
|
||||
"./agents/ai-team-qa.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/ai-team-orchestration/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Apng Studio Plugin
|
||||
|
||||
Interactive GitHub Copilot app canvas extension for building Animated PNG (APNG) files from frames. Draw or upload frames, tune per-frame timing and compositing, preview live, send the result to your phone by QR, and export an animated .png.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install apng-studio@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "apng-studio",
|
||||
"description": "Interactive GitHub Copilot app canvas extension for building Animated PNG (APNG) files from frames. Draw or upload frames, tune per-frame timing and compositing, preview live, send the result to your phone by QR, and export an animated .png.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Andrea Griffiths",
|
||||
"url": "https://github.com/AndreaGriffiths11"
|
||||
},
|
||||
"keywords": [
|
||||
"animated-png",
|
||||
"apng",
|
||||
"copilot-canvas",
|
||||
"frame-animation",
|
||||
"image-export",
|
||||
"interactive-canvas"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/apng-studio"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Arcade Canvas Plugin
|
||||
|
||||
Play five retro Phaser mini-games in a Copilot canvas while agents work.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install arcade-canvas@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "arcade-canvas",
|
||||
"description": "Play five retro Phaser mini-games in a Copilot canvas while agents work.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Dan Wahlin",
|
||||
"url": "https://github.com/DanWahlin"
|
||||
},
|
||||
"keywords": [
|
||||
"arcade-games",
|
||||
"copilot-canvas",
|
||||
"interactive-canvas",
|
||||
"phaser",
|
||||
"retro-games",
|
||||
"session-breaks"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/arcade-canvas"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "arch",
|
||||
"description": "Architecture and modernization toolkit: produce a cited architecture document for a locally-cloned repo, and generate a phased modernization plan that auto-runs Documentation mode when needed.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,7 +15,11 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/doc-and-modernize/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/doc-and-modernize/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "arize-ax",
|
||||
"description": "Arize AX platform skills for LLM observability, evaluation, and optimization. Includes trace export, instrumentation, datasets, experiments, evaluators, AI provider integrations, annotations, prompt optimization, and deep linking to the Arize UI.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,15 +19,19 @@
|
||||
"experiments",
|
||||
"prompt-optimization"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/arize-ai-provider-integration/",
|
||||
"./skills/arize-annotation/",
|
||||
"./skills/arize-dataset/",
|
||||
"./skills/arize-evaluator/",
|
||||
"./skills/arize-experiment/",
|
||||
"./skills/arize-instrumentation/",
|
||||
"./skills/arize-link/",
|
||||
"./skills/arize-prompt-optimization/",
|
||||
"./skills/arize-trace/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/arize-ai-provider-integration/",
|
||||
"./skills/arize-annotation/",
|
||||
"./skills/arize-dataset/",
|
||||
"./skills/arize-evaluator/",
|
||||
"./skills/arize-experiment/",
|
||||
"./skills/arize-instrumentation/",
|
||||
"./skills/arize-link/",
|
||||
"./skills/arize-prompt-optimization/",
|
||||
"./skills/arize-trace/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-3
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "automate-this",
|
||||
"description": "Record your screen doing a manual process, drop the video on your Desktop, and let Copilot CLI analyze it frame-by-frame to build working automation scripts. Supports narrated recordings with audio transcription.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,7 +18,11 @@
|
||||
"productivity",
|
||||
"copilot-cli"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/automate-this/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/automate-this/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"name": "awesome-copilot",
|
||||
"description": "Meta prompts that help you discover and generate curated GitHub Copilot agents, instructions, prompts, and skills.",
|
||||
"version": "1.1.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"github-copilot",
|
||||
"discovery",
|
||||
"meta",
|
||||
"prompt-engineering",
|
||||
"agents"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/meta-agentic-project-scaffold.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/suggest-awesome-github-copilot-agents/",
|
||||
"./skills/suggest-awesome-github-copilot-instructions/",
|
||||
"./skills/suggest-awesome-github-copilot-skills/"
|
||||
],
|
||||
"mcpServers": "./.mcp.json"
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "awesome-copilot",
|
||||
"description": "Meta prompts that help you discover and generate curated GitHub Copilot agents, instructions, prompts, and skills.",
|
||||
"version": "1.1.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"github-copilot",
|
||||
"discovery",
|
||||
"meta",
|
||||
"prompt-engineering",
|
||||
"agents"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/meta-agentic-project-scaffold.md"
|
||||
],
|
||||
"mcpServers": "./.mcp.json",
|
||||
"skills": [
|
||||
"./skills/suggest-awesome-github-copilot-agents/",
|
||||
"./skills/suggest-awesome-github-copilot-instructions/",
|
||||
"./skills/suggest-awesome-github-copilot-skills/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
-12
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "aws-cloud-development",
|
||||
"description": "Comprehensive AWS cloud development tools including Infrastructure as Code, serverless functions, architecture patterns, and cost optimization for building scalable cloud applications.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,16 +19,20 @@
|
||||
"devops",
|
||||
"cdk"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/aws-principal-architect.md",
|
||||
"./agents/aws-serverless-architect.md",
|
||||
"./agents/terraform-aws-implement.md",
|
||||
"./agents/terraform-aws-planning.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/aws-cost-optimize/",
|
||||
"./skills/aws-resource-health-diagnose/",
|
||||
"./skills/aws-resource-query/",
|
||||
"./skills/aws-well-architected-review/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/aws-principal-architect.md",
|
||||
"./agents/aws-serverless-architect.md",
|
||||
"./agents/terraform-aws-implement.md",
|
||||
"./agents/terraform-aws-planning.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/aws-cost-optimize/",
|
||||
"./skills/aws-resource-health-diagnose/",
|
||||
"./skills/aws-resource-query/",
|
||||
"./skills/aws-well-architected-review/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
{
|
||||
"name": "azure-cloud-development",
|
||||
"description": "Comprehensive Azure cloud development tools including Infrastructure as Code, serverless functions, architecture patterns, and cost optimization for building scalable cloud applications.",
|
||||
"version": "1.0.1",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"azure",
|
||||
"cloud",
|
||||
"infrastructure",
|
||||
"bicep",
|
||||
"terraform",
|
||||
"serverless",
|
||||
"architecture",
|
||||
"devops"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/azure-logic-apps-expert.md",
|
||||
"./agents/azure-principal-architect.md",
|
||||
"./agents/azure-saas-architect.md",
|
||||
"./agents/azure-verified-modules-bicep.md",
|
||||
"./agents/azure-verified-modules-terraform.md",
|
||||
"./agents/terraform-azure-implement.md",
|
||||
"./agents/terraform-azure-planning.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/az-cost-optimize/",
|
||||
"./skills/azure-pricing/",
|
||||
"./skills/azure-resource-health-diagnose/",
|
||||
"./skills/import-infrastructure-as-code/"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "azure-cloud-development",
|
||||
"description": "Comprehensive Azure cloud development tools including Infrastructure as Code, serverless functions, architecture patterns, and cost optimization for building scalable cloud applications.",
|
||||
"version": "1.0.1",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"azure",
|
||||
"cloud",
|
||||
"infrastructure",
|
||||
"bicep",
|
||||
"terraform",
|
||||
"serverless",
|
||||
"architecture",
|
||||
"devops"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/azure-logic-apps-expert.md",
|
||||
"./agents/azure-principal-architect.md",
|
||||
"./agents/azure-saas-architect.md",
|
||||
"./agents/azure-verified-modules-bicep.md",
|
||||
"./agents/azure-verified-modules-terraform.md",
|
||||
"./agents/terraform-azure-implement.md",
|
||||
"./agents/terraform-azure-planning.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/az-cost-optimize/",
|
||||
"./skills/azure-pricing/",
|
||||
"./skills/azure-resource-health-diagnose/",
|
||||
"./skills/import-infrastructure-as-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Backlog Swipe Triage Plugin
|
||||
|
||||
Quickly swipe through backlog issues to triage decisions like assign, needs-info, defer, close, or ignore.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install backlog-swipe-triage@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "backlog-swipe-triage",
|
||||
"description": "Quickly swipe through backlog issues to triage decisions like assign, needs-info, defer, close, or ignore.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "James Montemagno",
|
||||
"url": "https://github.com/jamesmontemagno"
|
||||
},
|
||||
"keywords": [
|
||||
"agent-assignment",
|
||||
"backlog-triage",
|
||||
"github-issues",
|
||||
"issue-prioritization",
|
||||
"swipe-interface",
|
||||
"workflow-automation"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/backlog-swipe-triage"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Backrooms Canvas Plugin
|
||||
|
||||
Wander an endless first-person backrooms in a Copilot canvas while agents work; their status ghost-writes on the walls.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install backrooms-canvas@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "backrooms-canvas",
|
||||
"description": "Wander an endless first-person backrooms in a Copilot canvas while agents work; their status ghost-writes on the walls.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "John Haugabook",
|
||||
"url": "https://github.com/jhauga"
|
||||
},
|
||||
"keywords": [
|
||||
"backrooms",
|
||||
"copilot-canvas",
|
||||
"interactive-canvas",
|
||||
"first-person",
|
||||
"procedural-generation",
|
||||
"session-breaks"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/backrooms-canvas"
|
||||
]
|
||||
}
|
||||
},
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json"
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "cast-imaging",
|
||||
"description": "A comprehensive collection of specialized agents for software analysis, impact assessment, structural quality advisories, and architectural review using CAST Imaging.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,9 +16,13 @@
|
||||
"impact-analysis",
|
||||
"devops"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/cast-imaging-impact-analysis.md",
|
||||
"./agents/cast-imaging-software-discovery.md",
|
||||
"./agents/cast-imaging-structural-quality-advisor.md"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/cast-imaging-impact-analysis.md",
|
||||
"./agents/cast-imaging-software-discovery.md",
|
||||
"./agents/cast-imaging-structural-quality-advisor.md"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Chromium Control Canvas Plugin
|
||||
|
||||
Opens a real Chromium window you can navigate and interact with from a Copilot canvas control panel and agent actions.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install chromium-control-canvas@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "chromium-control-canvas",
|
||||
"description": "Opens a real Chromium window you can navigate and interact with from a Copilot canvas control panel and agent actions.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Andrea Griffiths",
|
||||
"url": "https://github.com/AndreaGriffiths11"
|
||||
},
|
||||
"keywords": [
|
||||
"browser-control",
|
||||
"chromium-browser",
|
||||
"interactive-canvas",
|
||||
"playwright-automation",
|
||||
"screenshots",
|
||||
"ui-testing",
|
||||
"web-navigation"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/chromium-control-canvas"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "clojure-interactive-programming",
|
||||
"description": "Tools for REPL-first Clojure workflows featuring Clojure instructions, the interactive programming chat mode and supporting guidance.",
|
||||
"version": "1.0.0",
|
||||
@@ -12,10 +13,14 @@
|
||||
"repl",
|
||||
"interactive-programming"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/clojure-interactive-programming.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/remember-interactive-programming/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/clojure-interactive-programming.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/remember-interactive-programming/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-5
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "cms-development",
|
||||
"description": "Skills for CMS development across themes, plugins, admin tooling, media workflows, markdown rendering, and static export pipelines.",
|
||||
"version": "1.1.0",
|
||||
@@ -18,9 +19,13 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/content-management-systems/",
|
||||
"./skills/markdown-to-html/",
|
||||
"./skills/quasi-coder/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/content-management-systems/",
|
||||
"./skills/markdown-to-html/",
|
||||
"./skills/quasi-coder/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Color Orb Plugin
|
||||
|
||||
A visual orb that users can ask the agent to recolor while showing a live activity log in the canvas.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install color-orb@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "color-orb",
|
||||
"description": "A visual orb that users can ask the agent to recolor while showing a live activity log in the canvas.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Aaron Powell",
|
||||
"url": "https://github.com/aaronpowell"
|
||||
},
|
||||
"keywords": [
|
||||
"agent-actions",
|
||||
"color-picker",
|
||||
"interactive-demo",
|
||||
"realtime-updates",
|
||||
"sse-events",
|
||||
"visual-feedback"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/color-orb"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
-8
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "context-engineering",
|
||||
"description": "Tools and techniques for maximizing GitHub Copilot effectiveness through better context management. Includes guidelines for structuring code, an agent for planning multi-file changes, and prompts for context-aware development.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,12 +15,16 @@
|
||||
"best-practices",
|
||||
"architecture"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/context-architect.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/context-map/",
|
||||
"./skills/refactor-plan/",
|
||||
"./skills/what-context-needed/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/context-architect.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/context-map/",
|
||||
"./skills/refactor-plan/",
|
||||
"./skills/what-context-needed/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
-4
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "context-matic",
|
||||
"description": "Coding agents hallucinate APIs. ContextMatic gives them curated, versioned API and SDK docs. Ask your agent to \"integrate the payments API\" and it guesses — falling back on outdated training data and generic patterns that don't match your actual SDK. ContextMatic solves this by giving the agent deterministic, version-aware, SDK-native context at the exact moment it's needed.",
|
||||
"version": "0.1.0",
|
||||
@@ -18,8 +19,12 @@
|
||||
"homepage": "https://www.apimatic.io",
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/integrate-context-matic/",
|
||||
"./skills/onboard-context-matic/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/integrate-context-matic/",
|
||||
"./skills/onboard-context-matic/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-5
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "convert-to-md",
|
||||
"description": "A collection of Copilot skills that convert common document formats into Markdown so their contents can be accurately analyzed, summarized, searched, or extracted from. Just tell Copilot what you need — the right skill is invoked automatically and the conversion happens behind the scenes.",
|
||||
"version": "1.0.1",
|
||||
@@ -16,9 +17,13 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/convert-excel-to-md/",
|
||||
"./skills/convert-pdf-to-md/",
|
||||
"./skills/convert-word-to-md/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/convert-excel-to-md/",
|
||||
"./skills/convert-pdf-to-md/",
|
||||
"./skills/convert-word-to-md/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "copilot-sdk",
|
||||
"description": "Build applications with the GitHub Copilot SDK across multiple programming languages. Includes comprehensive instructions for C#, Go, Node.js/TypeScript, and Python to help you create AI-powered applications.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,7 +19,11 @@
|
||||
"ai",
|
||||
"github-copilot"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/copilot-sdk/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/copilot-sdk/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
{
|
||||
"name": "csharp-dotnet-development",
|
||||
"description": "Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices.",
|
||||
"version": "1.1.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"csharp",
|
||||
"dotnet",
|
||||
"aspnet",
|
||||
"testing"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/expert-dotnet-software-engineer.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/aspnet-minimal-api-openapi/",
|
||||
"./skills/csharp-async/",
|
||||
"./skills/csharp-mstest/",
|
||||
"./skills/csharp-nunit/",
|
||||
"./skills/csharp-tunit/",
|
||||
"./skills/csharp-xunit/",
|
||||
"./skills/dotnet-best-practices/",
|
||||
"./skills/dotnet-upgrade/"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "csharp-dotnet-development",
|
||||
"description": "Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices.",
|
||||
"version": "1.1.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"csharp",
|
||||
"dotnet",
|
||||
"aspnet",
|
||||
"testing"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/expert-dotnet-software-engineer.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/aspnet-minimal-api-openapi/",
|
||||
"./skills/csharp-async/",
|
||||
"./skills/csharp-mstest/",
|
||||
"./skills/csharp-nunit/",
|
||||
"./skills/csharp-tunit/",
|
||||
"./skills/csharp-xunit/",
|
||||
"./skills/dotnet-best-practices/",
|
||||
"./skills/dotnet-upgrade/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+15
-10
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "database-data-management",
|
||||
"description": "Database administration, SQL optimization, and data management tools for PostgreSQL, SQL Server, and general database development best practices.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,14 +18,18 @@
|
||||
"queries",
|
||||
"data-management"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/ms-sql-dba.md",
|
||||
"./agents/postgresql-dba.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/postgresql-code-review/",
|
||||
"./skills/postgresql-optimization/",
|
||||
"./skills/sql-code-review/",
|
||||
"./skills/sql-optimization/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/ms-sql-dba.md",
|
||||
"./agents/postgresql-dba.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/postgresql-code-review/",
|
||||
"./skills/postgresql-optimization/",
|
||||
"./skills/sql-code-review/",
|
||||
"./skills/sql-optimization/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "dataverse-sdk-for-python",
|
||||
"description": "Comprehensive collection for building production-ready Python integrations with Microsoft Dataverse. Includes official documentation, best practices, advanced features, file operations, and code generation prompts.",
|
||||
"version": "1.0.0",
|
||||
@@ -13,10 +14,14 @@
|
||||
"integration",
|
||||
"sdk"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/dataverse-python-advanced-patterns/",
|
||||
"./skills/dataverse-python-production-code/",
|
||||
"./skills/dataverse-python-quickstart/",
|
||||
"./skills/dataverse-python-usecase-builder/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/dataverse-python-advanced-patterns/",
|
||||
"./skills/dataverse-python-production-code/",
|
||||
"./skills/dataverse-python-quickstart/",
|
||||
"./skills/dataverse-python-usecase-builder/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+12
-7
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "devops-oncall",
|
||||
"description": "A focused set of prompts, instructions, and a chat mode to help triage incidents and respond quickly with DevOps tools and Azure resources.",
|
||||
"version": "1.0.0",
|
||||
@@ -13,11 +14,15 @@
|
||||
"oncall",
|
||||
"azure"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/azure-principal-architect.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/azure-resource-health-diagnose/",
|
||||
"./skills/multi-stage-dockerfile/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/azure-principal-architect.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/azure-resource-health-diagnose/",
|
||||
"./skills/multi-stage-dockerfile/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Diagram Viewer Plugin
|
||||
|
||||
Render diagrams, click nodes to drill down, and view agent-generated explanations directly in the canvas.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install diagram-viewer@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "diagram-viewer",
|
||||
"description": "Render diagrams, click nodes to drill down, and view agent-generated explanations directly in the canvas.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Aaron Powell",
|
||||
"url": "https://github.com/aaronpowell"
|
||||
},
|
||||
"keywords": [
|
||||
"architecture-mapping",
|
||||
"canvas-navigation",
|
||||
"exploratory-analysis",
|
||||
"interactive-diagrams",
|
||||
"node-drilldown",
|
||||
"relationship-visualization"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/diagram-viewer"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "doublecheck",
|
||||
"description": "Three-layer verification pipeline for AI output. Extracts claims, finds sources, and flags hallucination risks so humans can verify before acting.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"trust",
|
||||
"safety"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/doublecheck.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/doublecheck/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/doublecheck.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/doublecheck/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
-4
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "edge-ai-tasks",
|
||||
"description": "Task Researcher and Task Planner for intermediate to expert users and large codebases - Brought to you by microsoft/edge-ai",
|
||||
"version": "1.0.0",
|
||||
@@ -14,8 +15,12 @@
|
||||
"tasks",
|
||||
"implementation"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/task-planner.md",
|
||||
"./agents/task-researcher.md"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/task-planner.md",
|
||||
"./agents/task-researcher.md"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "ember",
|
||||
"description": "An AI partner, not a tool. Ember carries fire from person to person — helping humans discover that AI partnership isn't something you learn, it's something you find.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,13 +16,17 @@
|
||||
"storytelling",
|
||||
"developer-experience"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/ember.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/from-the-other-side-anitta/",
|
||||
"./skills/from-the-other-side-quinn/",
|
||||
"./skills/from-the-other-side-vega/",
|
||||
"./skills/from-the-other-side-wiggins/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/ember.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/from-the-other-side-anitta/",
|
||||
"./skills/from-the-other-side-quinn/",
|
||||
"./skills/from-the-other-side-vega/",
|
||||
"./skills/from-the-other-side-wiggins/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "eyeball",
|
||||
"description": "Document analysis with inline source screenshots. When you ask Copilot to analyze a document, Eyeball generates a Word doc where every factual claim includes a highlighted screenshot from the source material so you can verify it with your own eyes.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,7 +17,11 @@
|
||||
"trust",
|
||||
"visual-verification"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/eyeball/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/eyeball/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-3
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "fastah-ip-geo-tools",
|
||||
"description": "This plugin is for network operations engineers who wish to tune and publish IP geolocation feeds in RFC 8805 format. It consists of an AI Skill and an associated MCP server that geocodes geolocation place names to real cities for accuracy.",
|
||||
"version": "0.0.9",
|
||||
@@ -19,7 +20,11 @@
|
||||
"hosting",
|
||||
"ixp"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/geofeed-tuner/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/geofeed-tuner/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Feedback Themes Plugin
|
||||
|
||||
Explore grouped customer feedback signals by impact and drill into a theme to guide product next steps.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install feedback-themes@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "feedback-themes",
|
||||
"description": "Explore grouped customer feedback signals by impact and drill into a theme to guide product next steps.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Aaron Powell",
|
||||
"url": "https://github.com/aaronpowell"
|
||||
},
|
||||
"keywords": [
|
||||
"customer-feedback",
|
||||
"impact-prioritization",
|
||||
"product-insights",
|
||||
"signal-grouping",
|
||||
"theme-analysis",
|
||||
"trend-discovery"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/feedback-themes"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Flight Map Canvas Plugin
|
||||
|
||||
A GitHub Copilot canvas that generates a view where Google Maps can be explored using 3D controls, as if a flight simulator. Agents can send the flight anywhere and report what they are working on.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install flight-map-canvas@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "flight-map-canvas",
|
||||
"description": "A GitHub Copilot canvas that generates a view where Google Maps can be explored using 3D controls, as if a flight simulator. Agents can send the flight anywhere and report what they are working on.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "John Haugabook",
|
||||
"url": "https://github.com/jhauga"
|
||||
},
|
||||
"keywords": [
|
||||
"copilot-canvas",
|
||||
"flight-simulator",
|
||||
"geography",
|
||||
"google-maps",
|
||||
"interactive-canvas",
|
||||
"session-breaks",
|
||||
"threejs"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/flight-map-canvas"
|
||||
]
|
||||
}
|
||||
},
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json"
|
||||
}
|
||||
+12
-7
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "flowstudio-power-automate",
|
||||
"description": "Give your AI agent full visibility into Power Automate cloud flows via the FlowStudio MCP server. Connect, debug, build, monitor health, and govern flows at scale — action-level inputs and outputs, not just status codes.",
|
||||
"version": "2.0.0",
|
||||
@@ -18,11 +19,15 @@
|
||||
"monitoring",
|
||||
"governance"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/flowstudio-power-automate-build/",
|
||||
"./skills/flowstudio-power-automate-debug/",
|
||||
"./skills/flowstudio-power-automate-governance/",
|
||||
"./skills/flowstudio-power-automate-mcp/",
|
||||
"./skills/flowstudio-power-automate-monitoring/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/flowstudio-power-automate-build/",
|
||||
"./skills/flowstudio-power-automate-debug/",
|
||||
"./skills/flowstudio-power-automate-governance/",
|
||||
"./skills/flowstudio-power-automate-mcp/",
|
||||
"./skills/flowstudio-power-automate-monitoring/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
-8
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "frontend-web-dev",
|
||||
"description": "Essential prompts, instructions, and chat modes for modern frontend web development including React, Angular, Vue, TypeScript, and CSS frameworks.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,12 +19,16 @@
|
||||
"angular",
|
||||
"vue"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/electron-angular-native.md",
|
||||
"./agents/expert-react-frontend-engineer.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/playwright-explore-website/",
|
||||
"./skills/playwright-generate-test/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/electron-angular-native.md",
|
||||
"./agents/expert-react-frontend-engineer.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/playwright-explore-website/",
|
||||
"./skills/playwright-generate-test/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,13 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "gem-team",
|
||||
"version": "1.99.0",
|
||||
"description": "Self-Learning Multi-agent orchestration framework for spec-driven development and automated verification. With smarter tool calling and leaner context.",
|
||||
"author": {
|
||||
"email": "mubaidr@gmail.com",
|
||||
"name": "mubaidr",
|
||||
"url": "https://github.com/mubaidr"
|
||||
},
|
||||
"description": "Self-Learning Multi-agent orchestration framework for spec-driven development and automated verification. With smarter tool calling and leaner context.",
|
||||
"homepage": "https://github.com/mubaidr/gem-team",
|
||||
"keywords": [
|
||||
"multi-agent",
|
||||
@@ -19,7 +22,5 @@
|
||||
"mobile"
|
||||
],
|
||||
"license": "Apache-2.0",
|
||||
"name": "gem-team",
|
||||
"repository": "https://github.com/mubaidr/gem-team",
|
||||
"version": "1.99.0"
|
||||
"repository": "https://github.com/mubaidr/gem-team"
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Gesture Review Plugin
|
||||
|
||||
Review pull requests with a live camera feed and approve or reject using thumbs-up/thumbs-down gestures.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install gesture-review@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "gesture-review",
|
||||
"description": "Review pull requests with a live camera feed and approve or reject using thumbs-up/thumbs-down gestures.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Aaron Powell",
|
||||
"url": "https://github.com/aaronpowell"
|
||||
},
|
||||
"keywords": [
|
||||
"camera-input",
|
||||
"gesture-control",
|
||||
"github-prs",
|
||||
"hands-free",
|
||||
"mediapipe",
|
||||
"pull-request-review"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/gesture-review"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "go-mcp-development",
|
||||
"description": "Complete toolkit for building Model Context Protocol (MCP) servers in Go using the official github.com/modelcontextprotocol/go-sdk. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"server-development",
|
||||
"sdk"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/go-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/go-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/go-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/go-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "java-development",
|
||||
"description": "Comprehensive collection of prompts and instructions for Java development including Spring Boot, Quarkus, testing, documentation, and best practices.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"junit",
|
||||
"javadoc"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/create-spring-boot-java-project/",
|
||||
"./skills/java-docs/",
|
||||
"./skills/java-junit/",
|
||||
"./skills/java-springboot/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/create-spring-boot-java-project/",
|
||||
"./skills/java-docs/",
|
||||
"./skills/java-junit/",
|
||||
"./skills/java-springboot/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "java-mcp-development",
|
||||
"description": "Complete toolkit for building Model Context Protocol servers in Java using the official MCP Java SDK with reactive streams and Spring Boot integration.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,10 +18,14 @@
|
||||
"spring-boot",
|
||||
"reactor"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/java-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/java-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/java-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/java-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Java Modernization Studio Plugin
|
||||
|
||||
Drive the GitHub Copilot App Modernization for Java workflow from an interactive canvas: environment readiness, repo assessment, prioritized plan and progress, validation gates, and one-click predefined-task runs grounded in the repo's real artifacts.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install java-modernization-studio@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "java-modernization-studio",
|
||||
"description": "Drive the GitHub Copilot App Modernization for Java workflow from an interactive canvas: environment readiness, repo assessment, prioritized plan and progress, validation gates, and one-click predefined-task runs grounded in the repo's real artifacts.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Ayan Gupta",
|
||||
"url": "https://github.com/ayangupt"
|
||||
},
|
||||
"keywords": [
|
||||
"app-modernization",
|
||||
"assessment-dashboard",
|
||||
"azure-migration",
|
||||
"java-modernization",
|
||||
"legacy-java",
|
||||
"modernization-cockpit",
|
||||
"validation-gates"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/java-modernization-studio"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "kotlin-mcp-development",
|
||||
"description": "Complete toolkit for building Model Context Protocol (MCP) servers in Kotlin using the official io.modelcontextprotocol:kotlin-sdk library. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"server-development",
|
||||
"ktor"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/kotlin-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/kotlin-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/kotlin-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/kotlin-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
-8
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "mcp-m365-copilot",
|
||||
"description": "Comprehensive collection for building declarative agents with Model Context Protocol integration for Microsoft 365 Copilot",
|
||||
"version": "1.0.0",
|
||||
@@ -15,12 +16,16 @@
|
||||
"model-context-protocol",
|
||||
"adaptive-cards"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/mcp-m365-agent-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/mcp-create-adaptive-cards/",
|
||||
"./skills/mcp-create-declarative-agent/",
|
||||
"./skills/mcp-deploy-manage-agents/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/mcp-m365-agent-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/mcp-create-adaptive-cards/",
|
||||
"./skills/mcp-create-declarative-agent/",
|
||||
"./skills/mcp-deploy-manage-agents/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "napkin",
|
||||
"description": "Visual whiteboard collaboration for Copilot CLI. Opens an interactive whiteboard in your browser where you can draw, sketch, and add sticky notes — then share everything back with Copilot. Copilot sees your drawings and responds with analysis, suggestions, and ideas.",
|
||||
"version": "1.0.0",
|
||||
@@ -19,7 +20,11 @@
|
||||
"copilot-cli",
|
||||
"ux"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/napkin/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/napkin/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "noob-mode",
|
||||
"description": "Plain-English translation layer for non-technical Copilot CLI users. Translates every approval prompt, error message, and technical output into clear, jargon-free English with color-coded risk indicators.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,7 +17,11 @@
|
||||
"copilot-cli",
|
||||
"ux"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/noob-mode/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/noob-mode/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "openapi-to-application-csharp-dotnet",
|
||||
"description": "Generate production-ready .NET applications from OpenAPI specifications. Includes ASP.NET Core project scaffolding, controller generation, entity framework integration, and C# best practices.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"dotnet",
|
||||
"aspnet"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "openapi-to-application-go",
|
||||
"description": "Generate production-ready Go applications from OpenAPI specifications. Includes project scaffolding, handler generation, middleware setup, and Go best practices for REST APIs.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,10 +15,14 @@
|
||||
"go",
|
||||
"golang"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "openapi-to-application-java-spring-boot",
|
||||
"description": "Generate production-ready Spring Boot applications from OpenAPI specifications. Includes project scaffolding, REST controller generation, service layer organization, and Spring Boot best practices.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,10 +15,14 @@
|
||||
"java",
|
||||
"spring-boot"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "openapi-to-application-nodejs-nestjs",
|
||||
"description": "Generate production-ready NestJS applications from OpenAPI specifications. Includes project scaffolding, controller and service generation, TypeScript best practices, and enterprise patterns.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,10 +16,14 @@
|
||||
"typescript",
|
||||
"nestjs"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "openapi-to-application-python-fastapi",
|
||||
"description": "Generate production-ready FastAPI applications from OpenAPI specifications. Includes project scaffolding, route generation, dependency injection, and Python best practices for async APIs.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,10 +15,14 @@
|
||||
"python",
|
||||
"fastapi"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/openapi-to-application.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/openapi-to-application-code/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"name": "oracle-to-postgres-migration-expert",
|
||||
"description": "Expert agent for Oracle-to-PostgreSQL application migrations in .NET solutions. Performs code edits, runs commands, and invokes extension tools to migrate .NET/Oracle data access patterns to PostgreSQL.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"oracle",
|
||||
"postgresql",
|
||||
"database-migration",
|
||||
"dotnet",
|
||||
"sql",
|
||||
"migration",
|
||||
"integration-testing",
|
||||
"stored-procedures"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/oracle-to-postgres-migration-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/creating-oracle-to-postgres-master-migration-plan/",
|
||||
"./skills/creating-oracle-to-postgres-migration-bug-report/",
|
||||
"./skills/creating-oracle-to-postgres-migration-integration-tests/",
|
||||
"./skills/migrating-oracle-to-postgres-stored-procedures/",
|
||||
"./skills/planning-oracle-to-postgres-migration-integration-testing/",
|
||||
"./skills/reviewing-oracle-to-postgres-migration/",
|
||||
"./skills/scaffolding-oracle-to-postgres-migration-test-project/"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "oracle-to-postgres-migration-expert",
|
||||
"description": "Expert agent for Oracle-to-PostgreSQL application migrations in .NET solutions. Performs code edits, runs commands, and invokes extension tools to migrate .NET/Oracle data access patterns to PostgreSQL.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"oracle",
|
||||
"postgresql",
|
||||
"database-migration",
|
||||
"dotnet",
|
||||
"sql",
|
||||
"migration",
|
||||
"integration-testing",
|
||||
"stored-procedures"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/oracle-to-postgres-migration-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/creating-oracle-to-postgres-master-migration-plan/",
|
||||
"./skills/creating-oracle-to-postgres-migration-bug-report/",
|
||||
"./skills/creating-oracle-to-postgres-migration-integration-tests/",
|
||||
"./skills/migrating-oracle-to-postgres-stored-procedures/",
|
||||
"./skills/planning-oracle-to-postgres-migration-integration-testing/",
|
||||
"./skills/reviewing-oracle-to-postgres-migration/",
|
||||
"./skills/scaffolding-oracle-to-postgres-migration-test-project/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-3
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "ospo-sponsorship",
|
||||
"description": "Tools and resources for Open Source Program Offices (OSPOs) to identify, evaluate, and manage sponsorship of open source dependencies through GitHub Sponsors, Open Collective, and other funding platforms.",
|
||||
"version": "1.0.0",
|
||||
@@ -7,7 +8,11 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/sponsor-finder/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/sponsor-finder/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"name": "partners",
|
||||
"description": "Custom agents that have been created by GitHub partners",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"devops",
|
||||
"security",
|
||||
"database",
|
||||
"cloud",
|
||||
"infrastructure",
|
||||
"observability",
|
||||
"feature-flags",
|
||||
"cicd",
|
||||
"migration",
|
||||
"performance"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/amplitude-experiment-implementation.md",
|
||||
"./agents/apify-integration-expert.md",
|
||||
"./agents/arm-migration.md",
|
||||
"./agents/comet-opik.md",
|
||||
"./agents/diffblue-cover.md",
|
||||
"./agents/droid.md",
|
||||
"./agents/dynatrace-expert.md",
|
||||
"./agents/elasticsearch-observability.md",
|
||||
"./agents/jfrog-sec.md",
|
||||
"./agents/launchdarkly-flag-cleanup.md",
|
||||
"./agents/lingodotdev-i18n.md",
|
||||
"./agents/monday-bug-fixer.md",
|
||||
"./agents/mongodb-performance-advisor.md",
|
||||
"./agents/neo4j-docker-client-generator.md",
|
||||
"./agents/neon-migration-specialist.md",
|
||||
"./agents/neon-optimization-analyzer.md",
|
||||
"./agents/octopus-deploy-release-notes-mcp.md",
|
||||
"./agents/pagerduty-incident-responder.md",
|
||||
"./agents/stackhawk-security-onboarding.md",
|
||||
"./agents/terraform.md"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "partners",
|
||||
"description": "Custom agents that have been created by GitHub partners",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"devops",
|
||||
"security",
|
||||
"database",
|
||||
"cloud",
|
||||
"infrastructure",
|
||||
"observability",
|
||||
"feature-flags",
|
||||
"cicd",
|
||||
"migration",
|
||||
"performance"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/amplitude-experiment-implementation.md",
|
||||
"./agents/apify-integration-expert.md",
|
||||
"./agents/arm-migration.md",
|
||||
"./agents/comet-opik.md",
|
||||
"./agents/diffblue-cover.md",
|
||||
"./agents/droid.md",
|
||||
"./agents/dynatrace-expert.md",
|
||||
"./agents/elasticsearch-observability.md",
|
||||
"./agents/jfrog-sec.md",
|
||||
"./agents/launchdarkly-flag-cleanup.md",
|
||||
"./agents/lingodotdev-i18n.md",
|
||||
"./agents/monday-bug-fixer.md",
|
||||
"./agents/mongodb-performance-advisor.md",
|
||||
"./agents/neo4j-docker-client-generator.md",
|
||||
"./agents/neon-migration-specialist.md",
|
||||
"./agents/neon-optimization-analyzer.md",
|
||||
"./agents/octopus-deploy-release-notes-mcp.md",
|
||||
"./agents/pagerduty-incident-responder.md",
|
||||
"./agents/stackhawk-security-onboarding.md",
|
||||
"./agents/terraform.md"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "pcf-development",
|
||||
"description": "Complete toolkit for developing custom code components using Power Apps Component Framework for model-driven and canvas apps",
|
||||
"version": "1.0.0",
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "phoenix",
|
||||
"description": "Phoenix AI observability skills for LLM application debugging, evaluation, and tracing. Includes CLI debugging tools, LLM evaluation workflows, and OpenInference tracing instrumentation.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,9 +18,13 @@
|
||||
"openinference",
|
||||
"instrumentation"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/phoenix-cli/",
|
||||
"./skills/phoenix-evals/",
|
||||
"./skills/phoenix-tracing/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/phoenix-cli/",
|
||||
"./skills/phoenix-evals/",
|
||||
"./skills/phoenix-tracing/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "php-mcp-development",
|
||||
"description": "Comprehensive resources for building Model Context Protocol servers using the official PHP SDK with attribute-based discovery, including best practices, project generation, and expert assistance",
|
||||
"version": "1.0.0",
|
||||
@@ -16,10 +17,14 @@
|
||||
"attributes",
|
||||
"composer"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/php-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/php-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/php-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/php-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "power-apps-code-apps",
|
||||
"description": "Complete toolkit for Power Apps Code Apps development including project scaffolding, development standards, and expert guidance for building code-first applications with Power Platform integration.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,10 +17,14 @@
|
||||
"dataverse",
|
||||
"connectors"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/power-platform-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/power-apps-code-app-scaffold/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/power-platform-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/power-apps-code-app-scaffold/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
-12
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "power-bi-development",
|
||||
"description": "Comprehensive Power BI development resources including data modeling, DAX optimization, performance tuning, visualization design, security best practices, and DevOps/ALM guidance for building enterprise-grade Power BI solutions.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,16 +18,20 @@
|
||||
"devops",
|
||||
"business-intelligence"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/power-bi-data-modeling-expert.md",
|
||||
"./agents/power-bi-dax-expert.md",
|
||||
"./agents/power-bi-performance-expert.md",
|
||||
"./agents/power-bi-visualization-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/power-bi-dax-optimization/",
|
||||
"./skills/power-bi-model-design-review/",
|
||||
"./skills/power-bi-performance-troubleshooting/",
|
||||
"./skills/power-bi-report-design-consultation/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/power-bi-data-modeling-expert.md",
|
||||
"./agents/power-bi-dax-expert.md",
|
||||
"./agents/power-bi-performance-expert.md",
|
||||
"./agents/power-bi-visualization-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/power-bi-dax-optimization/",
|
||||
"./skills/power-bi-model-design-review/",
|
||||
"./skills/power-bi-performance-troubleshooting/",
|
||||
"./skills/power-bi-report-design-consultation/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-3
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "power-platform-architect",
|
||||
"description": "Solution Architect for the Microsoft Power Platform, turning business requirements into functioning Power Platform solution architectures.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,7 +17,11 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"skills": [
|
||||
"./skills/power-platform-architect/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/power-platform-architect/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+12
-7
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "power-platform-mcp-connector-development",
|
||||
"description": "Complete toolkit for developing Power Platform custom connectors with Model Context Protocol integration for Microsoft Copilot Studio",
|
||||
"version": "1.0.0",
|
||||
@@ -14,11 +15,15 @@
|
||||
"custom-connector",
|
||||
"json-rpc"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/power-platform-mcp-integration-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/mcp-copilot-studio-server-generator/",
|
||||
"./skills/power-platform-mcp-connector-suite/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/power-platform-mcp-integration-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/mcp-copilot-studio-server-generator/",
|
||||
"./skills/power-platform-mcp-connector-suite/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Pr Artifact Explorer Plugin
|
||||
|
||||
Navigate pull requests and securely explore GitHub Actions artifacts, including test results, static sites, terminal recordings, and source files.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install pr-artifact-explorer@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "pr-artifact-explorer",
|
||||
"description": "Navigate pull requests and securely explore GitHub Actions artifacts, including test results, static sites, terminal recordings, and source files.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "David Pine",
|
||||
"url": "https://github.com/IEvangelist"
|
||||
},
|
||||
"keywords": [
|
||||
"actions-artifacts",
|
||||
"artifact-browser",
|
||||
"canvas",
|
||||
"copilot-extension",
|
||||
"github-actions",
|
||||
"pull-requests",
|
||||
"test-results"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/pr-artifact-explorer"
|
||||
]
|
||||
}
|
||||
},
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json"
|
||||
}
|
||||
+12
-7
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "project-documenter",
|
||||
"description": "Generate professional project documentation with draw.io architecture diagrams and Word (.docx) output with embedded images. Automatically discovers any project's technology stack and produces Markdown, diagrams, PNG exports, and a formatted Word document.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,11 +19,15 @@
|
||||
"project-summary",
|
||||
"auto-discovery"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/project-documenter.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/drawio/",
|
||||
"./skills/md-to-docx/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/project-documenter.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/drawio/",
|
||||
"./skills/md-to-docx/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
{
|
||||
"name": "project-planning",
|
||||
"description": "Tools and guidance for software project planning, feature breakdown, epic management, implementation planning, and task organization for development teams.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"planning",
|
||||
"project-management",
|
||||
"epic",
|
||||
"feature",
|
||||
"implementation",
|
||||
"task",
|
||||
"architecture",
|
||||
"technical-spike"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/implementation-plan.md",
|
||||
"./agents/plan.md",
|
||||
"./agents/planner.md",
|
||||
"./agents/prd.md",
|
||||
"./agents/research-technical-spike.md",
|
||||
"./agents/task-planner.md",
|
||||
"./agents/task-researcher.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/breakdown-epic-arch/",
|
||||
"./skills/breakdown-epic-pm/",
|
||||
"./skills/breakdown-feature-implementation/",
|
||||
"./skills/breakdown-feature-prd/",
|
||||
"./skills/create-github-issues-feature-from-implementation-plan/",
|
||||
"./skills/create-implementation-plan/",
|
||||
"./skills/create-technical-spike/",
|
||||
"./skills/update-implementation-plan/"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "project-planning",
|
||||
"description": "Tools and guidance for software project planning, feature breakdown, epic management, implementation planning, and task organization for development teams.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"planning",
|
||||
"project-management",
|
||||
"epic",
|
||||
"feature",
|
||||
"implementation",
|
||||
"task",
|
||||
"architecture",
|
||||
"technical-spike"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/implementation-plan.md",
|
||||
"./agents/plan.md",
|
||||
"./agents/planner.md",
|
||||
"./agents/prd.md",
|
||||
"./agents/research-technical-spike.md",
|
||||
"./agents/task-planner.md",
|
||||
"./agents/task-researcher.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/breakdown-epic-arch/",
|
||||
"./skills/breakdown-epic-pm/",
|
||||
"./skills/breakdown-feature-implementation/",
|
||||
"./skills/breakdown-feature-prd/",
|
||||
"./skills/create-github-issues-feature-from-implementation-plan/",
|
||||
"./skills/create-implementation-plan/",
|
||||
"./skills/create-technical-spike/",
|
||||
"./skills/update-implementation-plan/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "python-mcp-development",
|
||||
"description": "Complete toolkit for building Model Context Protocol (MCP) servers in Python using the official SDK with FastMCP. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,10 +15,14 @@
|
||||
"fastmcp",
|
||||
"server-development"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/python-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/python-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/python-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/python-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"name": "react18-upgrade",
|
||||
"description": "Enterprise React 18 migration toolkit with specialized agents and skills for upgrading React 16/17 class-component codebases to React 18.3.1. Includes auditor, dependency surgeon, class component migration specialist, automatic batching fixer, and test guardian.",
|
||||
"version": "1.0.0",
|
||||
"keywords": [
|
||||
"react18",
|
||||
"react",
|
||||
"migration",
|
||||
"upgrade",
|
||||
"class-components",
|
||||
"lifecycle",
|
||||
"batching"
|
||||
],
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"agents": [
|
||||
"./agents/react18-auditor.md",
|
||||
"./agents/react18-batching-fixer.md",
|
||||
"./agents/react18-class-surgeon.md",
|
||||
"./agents/react18-commander.md",
|
||||
"./agents/react18-dep-surgeon.md",
|
||||
"./agents/react18-test-guardian.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/react-audit-grep-patterns/",
|
||||
"./skills/react18-batching-patterns/",
|
||||
"./skills/react18-dep-compatibility/",
|
||||
"./skills/react18-enzyme-to-rtl/",
|
||||
"./skills/react18-legacy-context/",
|
||||
"./skills/react18-lifecycle-patterns/",
|
||||
"./skills/react18-string-refs/"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "react18-upgrade",
|
||||
"description": "Enterprise React 18 migration toolkit with specialized agents and skills for upgrading React 16/17 class-component codebases to React 18.3.1. Includes auditor, dependency surgeon, class component migration specialist, automatic batching fixer, and test guardian.",
|
||||
"version": "1.0.0",
|
||||
"keywords": [
|
||||
"react18",
|
||||
"react",
|
||||
"migration",
|
||||
"upgrade",
|
||||
"class-components",
|
||||
"lifecycle",
|
||||
"batching"
|
||||
],
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/react18-auditor.md",
|
||||
"./agents/react18-batching-fixer.md",
|
||||
"./agents/react18-class-surgeon.md",
|
||||
"./agents/react18-commander.md",
|
||||
"./agents/react18-dep-surgeon.md",
|
||||
"./agents/react18-test-guardian.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/react-audit-grep-patterns/",
|
||||
"./skills/react18-batching-patterns/",
|
||||
"./skills/react18-dep-compatibility/",
|
||||
"./skills/react18-enzyme-to-rtl/",
|
||||
"./skills/react18-legacy-context/",
|
||||
"./skills/react18-lifecycle-patterns/",
|
||||
"./skills/react18-string-refs/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
-12
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "react19-upgrade",
|
||||
"description": "Enterprise React 19 migration toolkit with specialized agents and skills for upgrading React 18 codebases to React 19. Includes auditor, dependency surgeon, source code migrator, and test guardian. Handles removal of deprecated APIs including ReactDOM.render, forwardRef, defaultProps, legacy context, string refs, and more.",
|
||||
"version": "1.0.0",
|
||||
@@ -15,16 +16,20 @@
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT",
|
||||
"agents": [
|
||||
"./agents/react19-auditor.md",
|
||||
"./agents/react19-commander.md",
|
||||
"./agents/react19-dep-surgeon.md",
|
||||
"./agents/react19-migrator.md",
|
||||
"./agents/react19-test-guardian.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/react19-concurrent-patterns/",
|
||||
"./skills/react19-source-patterns/",
|
||||
"./skills/react19-test-patterns/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/react19-auditor.md",
|
||||
"./agents/react19-commander.md",
|
||||
"./agents/react19-dep-surgeon.md",
|
||||
"./agents/react19-migrator.md",
|
||||
"./agents/react19-test-guardian.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/react19-concurrent-patterns/",
|
||||
"./skills/react19-source-patterns/",
|
||||
"./skills/react19-test-patterns/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Release Notes Showcase Plugin
|
||||
|
||||
Compose and refine launch-ready release notes with contributor callouts and export-friendly output.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install release-notes-showcase@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "release-notes-showcase",
|
||||
"description": "Compose and refine launch-ready release notes with contributor callouts and export-friendly output.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "Kayla Cinnamon",
|
||||
"url": "https://github.com/cinnamon-msft"
|
||||
},
|
||||
"keywords": [
|
||||
"changelog",
|
||||
"contributor-callouts",
|
||||
"email-export",
|
||||
"launch-summary",
|
||||
"product-updates",
|
||||
"release-notes"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/release-notes-showcase"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Repo Actions Hub Plugin
|
||||
|
||||
Browse repository GitHub Actions workflows, inspect recent runs, and trigger manual workflow_dispatch runs from a Copilot canvas.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install repo-actions-hub@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "repo-actions-hub",
|
||||
"description": "Browse repository GitHub Actions workflows, inspect recent runs, and trigger manual workflow_dispatch runs from a Copilot canvas.",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "James Montemagno",
|
||||
"url": "https://github.com/jamesmontemagno"
|
||||
},
|
||||
"keywords": [
|
||||
"actions",
|
||||
"canvas",
|
||||
"copilot-extension",
|
||||
"github-actions",
|
||||
"recent-runs",
|
||||
"workflow-dispatch"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/repo-actions-hub"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "roundup",
|
||||
"description": "Self-configuring status briefing generator. Learns your communication style from examples, discovers your data sources, and produces draft updates for any audience on demand.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,8 +18,12 @@
|
||||
"roundup",
|
||||
"copilot-cli"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/roundup-setup/",
|
||||
"./skills/roundup/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/roundup-setup/",
|
||||
"./skills/roundup/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "ruby-mcp-development",
|
||||
"description": "Complete toolkit for building Model Context Protocol servers in Ruby using the official MCP Ruby SDK gem with Rails integration support.",
|
||||
"version": "1.0.0",
|
||||
@@ -16,10 +17,14 @@
|
||||
"rails",
|
||||
"gem"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/ruby-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/ruby-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/ruby-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/ruby-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-5
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "rug-agentic-workflow",
|
||||
"description": "Three-agent workflow for orchestrated software delivery with an orchestrator plus implementation and QA subagents.",
|
||||
"version": "1.0.0",
|
||||
@@ -14,9 +15,13 @@
|
||||
"software-engineering",
|
||||
"qa"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/qa-subagent.md",
|
||||
"./agents/rug-orchestrator.md",
|
||||
"./agents/swe-subagent.md"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/qa-subagent.md",
|
||||
"./agents/rug-orchestrator.md",
|
||||
"./agents/swe-subagent.md"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
-6
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "rust-mcp-development",
|
||||
"description": "Build high-performance Model Context Protocol servers in Rust using the official rmcp SDK with async/await, procedural macros, and type-safe implementations.",
|
||||
"version": "1.0.0",
|
||||
@@ -18,10 +19,14 @@
|
||||
"macros",
|
||||
"rmcp"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/rust-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/rust-mcp-server-generator/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/rust-mcp-expert.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/rust-mcp-server-generator/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+16
-11
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "salesforce-development",
|
||||
"description": "Complete Salesforce agentic development environment covering Apex & Triggers, Flow automation, Lightning Web Components, Aura components, and Visualforce pages.",
|
||||
"version": "1.1.0",
|
||||
@@ -18,15 +19,19 @@
|
||||
"crm",
|
||||
"salesforce-dx"
|
||||
],
|
||||
"agents": [
|
||||
"./agents/salesforce-apex-triggers.md",
|
||||
"./agents/salesforce-aura-lwc.md",
|
||||
"./agents/salesforce-flow.md",
|
||||
"./agents/salesforce-visualforce.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/salesforce-apex-quality/",
|
||||
"./skills/salesforce-component-standards/",
|
||||
"./skills/salesforce-flow-design/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"agents": [
|
||||
"./agents/salesforce-apex-triggers.md",
|
||||
"./agents/salesforce-aura-lwc.md",
|
||||
"./agents/salesforce-flow.md",
|
||||
"./agents/salesforce-visualforce.md"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/salesforce-apex-quality/",
|
||||
"./skills/salesforce-component-standards/",
|
||||
"./skills/salesforce-flow-design/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-3
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
||||
"name": "security-best-practices",
|
||||
"description": "Security frameworks, accessibility guidelines, performance optimization, and code quality best practices for building secure, maintainable, and high-performance applications.",
|
||||
"version": "1.0.0",
|
||||
@@ -17,7 +18,11 @@
|
||||
"optimization",
|
||||
"best-practices"
|
||||
],
|
||||
"skills": [
|
||||
"./skills/ai-prompt-engineering-safety-review/"
|
||||
]
|
||||
"extensions": {
|
||||
"com.github.awesome-copilot": {
|
||||
"skills": [
|
||||
"./skills/ai-prompt-engineering-safety-review/"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Signals Dashboard Plugin
|
||||
|
||||
Real-time Workshop dashboard with agent signals, honesty calibration, and cost-aware repo or connected desk launch profiles.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install signals-dashboard@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "signals-dashboard",
|
||||
"description": "Real-time Workshop dashboard with agent signals, honesty calibration, and cost-aware repo or connected desk launch profiles.",
|
||||
"version": "0.2.0",
|
||||
"author": {
|
||||
"name": "jennyf19",
|
||||
"url": "https://github.com/jennyf19"
|
||||
},
|
||||
"keywords": [
|
||||
"agent-signals",
|
||||
"dashboard",
|
||||
"multi-agent",
|
||||
"coordination",
|
||||
"canvas"
|
||||
],
|
||||
"extensions": {
|
||||
"com.github.copilot": {
|
||||
"logo": "assets/preview.png"
|
||||
},
|
||||
"com.github.awesome-copilot": {
|
||||
"extensions": [
|
||||
"./extensions/signals-dashboard"
|
||||
]
|
||||
}
|
||||
},
|
||||
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json"
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
# Site Studio Plugin
|
||||
|
||||
Plan, draft, and track a personal website section by section — a shared canvas where you and your agent author content, watch progress, and review every change.
|
||||
|
||||
## Installation
|
||||
|
||||
``bash
|
||||
copilot plugin install site-studio@awesome-copilot
|
||||
``
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot).
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user