From 16cda2493fda4610ac88a0c755d72d21849efd81 Mon Sep 17 00:00:00 2001 From: Victor M de Souza Date: Tue, 12 May 2026 12:49:04 -0500 Subject: [PATCH] Add plugin.json for Copilot CLI plugin installation Enables this repo to be installed as a Copilot CLI plugin via: copilot plugin install vicslive/copilot-cli-for-beginners Exposes the .github/skills/ and .github/agents/ directories so CLI users get the same agents and skills that VS Code workspace users already see. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- plugin.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 plugin.json diff --git a/plugin.json b/plugin.json new file mode 100644 index 00000000..967edc77 --- /dev/null +++ b/plugin.json @@ -0,0 +1,20 @@ +{ + "name": "copilot-cli-for-beginners", + "description": "Beginner-friendly course teaching GitHub Copilot CLI — includes example agents, skills, and prompts for hands-on learning.", + "version": "1.0.0", + "author": { + "name": "Microsoft Corporation" + }, + "repository": "https://github.com/vicslive/copilot-cli-for-beginners.git", + "license": "MIT", + "keywords": [ + "github-copilot", + "cli", + "tutorial", + "course", + "beginners" + ], + "category": "education", + "skills": ".github/skills/", + "agents": ".github/agents/" +}