Skip to main content

plugin.json

The plugin manifest defines the Git-Ape plugin metadata. The same manifest is consumed by both the VS Code agent plugin loader and the GitHub Copilot CLI plugin loader — no separate config is required.

Current Configuration​

FieldValue
Namegit-ape
Version0.0.1
DescriptionIntelligent agent system for deploying any Azure workload through GitHub Copilot. Provides guided, safe, and validated deployments using ARM templates, with built-in security analysis, cost estimation, and CI/CD pipeline integration.
AuthorMicrosoft
LicenseMIT
Agents Path.github/agents/
Skills Path.github/skills/

Keywords​

azure · cloud · workloads · deployment · arm-templates · devops · security · cost-estimation · github-actions · copilot-agents

Full Source​

{
"name": "git-ape",
"description": "Intelligent agent system for deploying any Azure workload through GitHub Copilot. Provides guided, safe, and validated deployments using ARM templates, with built-in security analysis, cost estimation, and CI/CD pipeline integration.",
"version": "0.0.1",
"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",
"cloud",
"workloads",
"deployment",
"arm-templates",
"devops",
"security",
"cost-estimation",
"github-actions",
"copilot-agents"
],
"agents": ".github/agents/",
"skills": ".github/skills/"
}