plugin-json
title: "plugin.json Reference" sidebar_label: "plugin.json" description: "Git-Ape Copilot CLI plugin manifest"​
plugin.json
The plugin manifest defines the Git-Ape Copilot CLI plugin metadata.
Current Configuration​
| Field | Value |
|---|---|
| Name | git-ape |
| Version | 0.0.2 |
| Description | Intelligent cloud deployment agent system for GitHub Copilot. Provides guided, safe, and validated Azure and AWS resource deployments with built-in security analysis, cost estimation, and CI/CD pipeline integration. |
| Author | Microsoft |
| License | MIT |
| Agents Path | .github/agents/ |
| Skills Path | .github/skills/ |
Keywords​
azure · aws · cloud · infrastructure · arm-templates · cloudformation · deployment · devops · iac · security · cost-estimation · github-actions
Full Source​
{
"name": "git-ape",
"description": "Intelligent cloud deployment agent system for GitHub Copilot. Provides guided, safe, and validated Azure and AWS resource deployments with built-in security analysis, cost estimation, and CI/CD pipeline integration.",
"version": "0.0.2",
"author": {
"name": "Microsoft",
"url": "https://github.com/Azure/git-ape"
},
"homepage": "https://github.com/Azure/git-ape",
"repository": "https://github.com/Azure/git-ape",
"license": "MIT",
"keywords": [
"azure",
"aws",
"cloud",
"infrastructure",
"arm-templates",
"cloudformation",
"deployment",
"devops",
"iac",
"security",
"cost-estimation",
"github-actions"
],
"agents": ".github/agents/",
"skills": ".github/skills/"
}