microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
06df9d2820e2c050f995a5fb9ceeb397406d5cb6

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

115lines · modecode

1---
2title: Copilot CLI Plugins
3description: Install HVE Core agents, prompts, and skills as Copilot CLI plugins
4sidebar_position: 2
5author: Microsoft
6ms.date: 2026-03-23
7ms.topic: how-to
8---
9
10Install HVE Core collections as Copilot CLI plugins for terminal-based
11AI-assisted development workflows.
12
13## Prerequisites
14
15* GitHub Copilot CLI installed and authenticated
16* Git symlink support enabled (Windows: Developer Mode +
17 `git config --global core.symlinks true`)
18
19## Register hve-core as a Plugin Marketplace
20
21```bash
22copilot plugin marketplace add microsoft/hve-core
23```
24
25## Browse Available Plugins
26
27Type `/plugin` in a Copilot CLI chat session to browse available plugins.
28
29## Install a Plugin
30
31Choose **one** of the following plugins to install. Each command installs a
32different collection from the hve-core marketplace.
33
34For the core Research, Plan, Implement, Review lifecycle:
35
36```bash
37copilot plugin install hve-core@hve-core
38```
39
40For the full bundle (includes everything in `hve-core` plus all additional
41collections):
42
43```bash
44copilot plugin install hve-core-all@hve-core
45```
46
47> [!TIP]
48> `hve-core-all` is a superset of `hve-core`. Install one or the other, not
49> both. If you are unsure which to pick, start with `hve-core-all` for the
50> complete experience.
51
52## Available Plugins
53
54| Plugin | Description |
55|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
56| hve-core | Research, Plan, Implement, Review lifecycle |
57| github | GitHub issue management |
58| ado | Azure DevOps integration |
59| coding-standards | Language-specific coding guidelines |
60| project-planning | PRDs, BRDs, ADRs, architecture diagrams |
61| data-science | Data specs, notebooks, dashboards |
62| design-thinking | Design thinking coaching and methodology |
63| security | Security and incident response |
64| installer | Installer skill for guided workspace setup and MCP auto-configuration ([Extension](https://marketplace.visualstudio.com/items?itemName=ise-hve-essentials.hve-installer)) |
65| experimental | Experimental and preview artifacts |
66| hve-core-all | Full HVE Core bundle |
67
68## Plugin Contents
69
70Each plugin includes:
71
72| Component | CLI Discovery | Description |
73|--------------|---------------|----------------------------------------------------|
74| Agents | Yes | Custom chat agents for specialized workflows |
75| Commands | Yes | Task prompts accessible via the CLI |
76| Skills | Yes | Self-contained skill packages (hve-core-all only) |
77| Instructions | No | Included for `#file:` references, not auto-applied |
78
79Artifacts are symlinked from the plugin directory to the source repository,
80enabling zero-copy installation.
81
82## Limitations
83
84### Instructions are not auto-applied from plugins
85
86The Copilot CLI [plugin spec](https://docs.github.com/en/copilot/reference/copilot-cli-reference/cli-plugin-reference)
87recognizes `agents`, `skills`, `commands`, `hooks`, `mcpServers`, and
88`lspServers` as component types. There is no `instructions` component type.
89
90The CLI loads path-specific instructions exclusively from
91`.github/instructions/**/*.instructions.md` in the
92[project repo](https://docs.github.com/en/copilot/reference/custom-instructions-support#copilot-cli).
93Instruction files in plugin directories are **not** auto-applied via `applyTo`
94pattern matching.
95
96Instruction files are still included in plugin output because agents and
97prompts reference them via `#file:` directives. Those cross-file references
98resolve correctly within the plugin directory tree. The difference is between
99explicit inclusion (an agent pulls in instruction content at execution time)
100and automatic application (the CLI matches `applyTo` patterns against the
101files you are editing).
102
103For full path-specific instruction behavior, copy instruction files into your
104project's `.github/instructions/` directory.
105
106### Other limitations
107
108* Skills require skill-compatible agent environments
109
110---
111
112<!-- markdownlint-disable MD036 -->
113*🤖 Crafted with precision by ✨Copilot following brilliant human instruction,
114then carefully refined by our team of discerning human reviewers.*
115<!-- markdownlint-enable MD036 -->