microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dabed001c8ac7da3f2e4368ae1f279080c627cbd

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/getting-started/methods/cli-plugins.md

78lines · modecode

1---
2title: Copilot CLI Plugins
3description: Install HVE Core agents, prompts, and skills as Copilot CLI plugins
4author: Microsoft
5ms.date: 2026-02-12
6ms.topic: how-to
7---
8
9Install HVE Core collections as Copilot CLI plugins for terminal-based
10AI-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
21copilot plugin marketplace add microsoft/hve-core
22```
23
24## Browse Available Plugins
25
26Type `/plugin` in a Copilot CLI chat session to browse available plugins.
27
28## Install a Plugin
29
30```bash
31copilot plugin install hve-core@hve-core
32copilot 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
53Each 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
62Artifacts are symlinked from the plugin directory to the source repository,
63enabling 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,
77then carefully refined by our team of discerning human reviewers.*
78<!-- markdownlint-enable MD036 -->