microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
docs/getting-started/methods/cli-plugins.md
78lines · modecode
| 1 | --- |
| 2 | title: Copilot CLI Plugins |
| 3 | description: Install HVE Core agents, prompts, and skills as Copilot CLI plugins |
| 4 | author: Microsoft |
| 5 | ms.date: 2026-02-12 |
| 6 | ms.topic: how-to |
| 7 | --- |
| 8 | |
| 9 | Install HVE Core collections as Copilot CLI plugins for terminal-based |
| 10 | AI-assisted development workflows. |
| 11 | |
| 12 | ## Prerequisites |
| 13 | |
| 14 | * GitHub Copilot CLI installed and authenticated |
| 15 | * Git symlink support enabled (Windows: Developer Mode + |
| 16 | `git config --global core.symlinks true`) |
| 17 | |
| 18 | ## Register hve-core as a Plugin Marketplace |
| 19 | |
| 20 | ```bash |
| 21 | copilot plugin marketplace add microsoft/hve-core |
| 22 | ``` |
| 23 | |
| 24 | ## Browse Available Plugins |
| 25 | |
| 26 | Type `/plugin` in a Copilot CLI chat session to browse available plugins. |
| 27 | |
| 28 | ## Install a Plugin |
| 29 | |
| 30 | ```bash |
| 31 | copilot plugin install hve-core@hve-core |
| 32 | copilot plugin install hve-core-all@hve-core |
| 33 | ``` |
| 34 | |
| 35 | ## Available Plugins |
| 36 | |
| 37 | | Plugin | Description | |
| 38 | |-------------------|---------------------------------------------| |
| 39 | | hve-core | Research, Plan, Implement, Review lifecycle | |
| 40 | | github | GitHub issue management | |
| 41 | | ado | Azure DevOps integration | |
| 42 | | coding-standards | Language-specific coding guidelines | |
| 43 | | project-planning | PRDs, BRDs, ADRs, architecture diagrams | |
| 44 | | data-science | Data specs, notebooks, dashboards | |
| 45 | | design-thinking | Design thinking coaching and methodology | |
| 46 | | security-planning | Security and incident response | |
| 47 | | installer | HVE Core installation automation | |
| 48 | | experimental | Experimental and preview artifacts | |
| 49 | | hve-core-all | Full HVE Core bundle | |
| 50 | |
| 51 | ## Plugin Contents |
| 52 | |
| 53 | Each plugin includes: |
| 54 | |
| 55 | | Component | Description | |
| 56 | |--------------|---------------------------------------------------| |
| 57 | | Agents | Custom chat agents for specialized workflows | |
| 58 | | Commands | Task prompts accessible via the CLI | |
| 59 | | Instructions | Coding standards and conventions | |
| 60 | | Skills | Self-contained skill packages (hve-core-all only) | |
| 61 | |
| 62 | Artifacts are symlinked from the plugin directory to the source repository, |
| 63 | enabling zero-copy installation. |
| 64 | |
| 65 | ## Limitations |
| 66 | |
| 67 | * Instructions are included but may not be natively consumed by the CLI |
| 68 | plugin system |
| 69 | * The `copilot plugin` commands are not yet in official GitHub Copilot |
| 70 | documentation |
| 71 | * Skills require skill-compatible agent environments |
| 72 | |
| 73 | --- |
| 74 | |
| 75 | <!-- markdownlint-disable MD036 --> |
| 76 | *🤖 Crafted with precision by ✨Copilot following brilliant human instruction, |
| 77 | then carefully refined by our team of discerning human reviewers.* |
| 78 | <!-- markdownlint-enable MD036 --> |