microsoft/hve-core

Public

mirrored from https://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b3fcbb5d710029cb4fe91fca91c5ebf46bfb362e

Branches

Tags

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

Clone

HTTPS

Download ZIP

docs/getting-started/methods/extension.md

285lines · modecode

1---
2title: VS Code Extension Installation
3description: Install HVE-Core as a VS Code extension from the marketplace
4author: Microsoft
5ms.date: 2026-01-07
6ms.topic: how-to
7keywords:
8 - extension
9 - installation
10 - marketplace
11 - github copilot
12estimated_reading_time: 4
13---
14
15VS Code Extension installation provides HVE-Core directly through the VS Code Marketplace. This is the simplest zero-configuration method that works across all environments.
16
17## When to Use This Method
18
19✅ **Use this when:**
20
21* You want the simplest possible setup
22* You don't need to customize HVE-Core components
23* You work across different machines and environments
24* You want automatic updates through VS Code
25* You prefer marketplace-managed extensions
26* You want a clean, zero-configuration setup
27
28❌ **Consider alternatives when:**
29
30* You need to customize custom agents, prompts, or instructions → [Peer Clone](peer-clone.md) or [Git-Ignored](git-ignored.md)
31* Your team needs to version control HVE-Core → [Submodule](submodule.md)
32* You're contributing to HVE-Core development → [Peer Clone](peer-clone.md)
33* You need to test pre-release versions → [Multi-Root Workspace](multi-root.md)
34
35## How It Works
36
37The extension packages all HVE-Core components (chat agents, prompts, instructions) as a standard VS Code extension. Once installed, all components are immediately available without any additional configuration.
38
39```text
40VS Code Extension System
41├── Extension installed via marketplace
42│ ├── .github/agents/ # All chat agents
43│ ├── .github/prompts/ # All prompt templates
44│ ├── .github/instructions/ # All coding guidelines
45│ └── .github/skills/ # All skill packages
46└── Only optional workspace configuration needed!
47```
48
49## Quick Start
50
51### Option 1: Install from Marketplace (Recommended)
52
531. Open VS Code
542. Go to Extensions view (`Ctrl+Shift+X`)
553. Search for "HVE Core"
564. Click **Install**
57
58**Or click here:** [Install HVE Core Extension](https://marketplace.visualstudio.com/items?itemName=ise-hve-essentials.hve-core)
59
60### Option 2: Install from Command Line
61
62```bash
63code --install-extension ise-hve-essentials.hve-core
64```
65
66### Option 3: Install Using VS Code Insiders
67
68```bash
69code-insiders --install-extension ise-hve-essentials.hve-core
70```
71
72## Verification
73
74After installation, verify everything works:
75
761. Open GitHub Copilot Chat (`Ctrl+Alt+I`)
772. Click the agent picker dropdown
783. Verify HVE-Core agents appear:
79 * task-planner
80 * task-researcher
81 * task-implementor
82 * pr-review
83 * adr-creation
84
85## Post-Installation (Optional)
86
87These optional configurations enhance your HVE-Core experience but are not required for basic functionality.
88
89### Update Your .gitignore
90
91HVE-Core agents create ephemeral workflow artifacts in a `.copilot-tracking/` folder within your project. Add this line to your project's `.gitignore`:
92
93```text
94.copilot-tracking/
95```
96
97This applies even when using the extension. The folder is created in your project directory when you use agents like `task-researcher` or `pr-review`. See the [installation guide](../install.md#post-installation-update-your-gitignore) for details on what gets stored there.
98
99## What's Included
100
101The extension provides all HVE-Core components:
102
103| Component | Examples |
104|--------------|-----------------------------------------|
105| Chat Agents | task-planner, pr-review, adr-creation |
106| Prompts | git-commit, pull-request, ado-create-pr |
107| Instructions | markdown, python-script, commit-message |
108| Skills | pr-reference, video-to-gif |
109
110## Updating
111
112The extension updates automatically through VS Code's extension system:
113
114* **Auto-updates (default):** Extensions update automatically when new versions are released
115* **Manual updates:** Extensions view → Find "HVE Core" → Click **Update**
116* **Pre-release versions:** Right-click extension → "Switch to Pre-Release Version"
117
118## Comparison with Other Methods
119
120### Pros ✅
121
122| Advantage | Detail |
123|-------------------------|---------------------------------------------------|
124| Zero configuration | No workspace settings or file cloning required |
125| Works everywhere | Local, devcontainers, Codespaces, any environment |
126| Automatic updates | VS Code manages updates automatically |
127| No repository pollution | Nothing added to your project |
128| Instant availability | Works immediately after installation |
129| No manual setup | No scripts to run or paths to configure |
130| Marketplace managed | Centralized distribution and versioning |
131
132### Cons ❌
133
134| Limitation | Detail |
135|------------------------|------------------------------------------------------|
136| No customization | Can't modify custom agents, prompts, or instructions |
137| Extension updates only | Testing development versions requires extra setup |
138| No version pinning | Uses latest version (or opt into pre-release) |
139| No team control | Can't enforce specific versions across team |
140| Limited flexibility | Can't combine with custom local modifications |
141
142## Common Scenarios
143
144### Scenario 1: Quick Personal Use
145
146**Goal:** Start using HVE-Core immediately without setup
147
148**Solution:** Install the extension from marketplace
149
150**Steps:**
151
1521. Install extension from marketplace
1532. Start using `task-planner` and other agents
1543. That's it!
155
156### Scenario 2: Multi-Machine Developer
157
158**Goal:** Use HVE-Core consistently across laptop, desktop, and Codespaces
159
160**Solution:** Install extension on all machines via Settings Sync
161
162**Steps:**
163
1641. Enable Settings Sync in VS Code
1652. Install extension on one machine
1663. Extensions automatically sync to other devices
167
168### Scenario 3: Team Adoption
169
170**Goal:** Get entire team using HVE-Core quickly
171
172**Solution:** Share extension link and install instructions
173
174**Steps:**
175
1761. Share marketplace link with team
1772. Team members install extension
1783. Everyone has consistent experience immediately
179
180### Scenario 4: Want to Customize Later
181
182**Goal:** Start with extension, later switch to customization
183
184**Solution:** Use extension initially, migrate to Peer Clone when needed
185
186**Steps:**
187
1881. Start with extension for quick setup
1892. When customization needed, uninstall extension
1903. Follow [Peer Clone](peer-clone.md) method for local modifications
191
192## Troubleshooting
193
194### Extension Not Appearing
195
196**Check extension is installed:**
197
1981. Open Extensions view (`Ctrl+Shift+X`)
1992. Search "HVE Core"
2003. Verify "Installed" badge appears
201
202**Reload VS Code:**
203
2041. Command Palette (`Ctrl+Shift+P`)
2052. "Developer: Reload Window"
206
207### Agents Not Showing in Copilot Chat
208
209**Verify GitHub Copilot is active:**
210
2111. Check Copilot icon in status bar
2122. Sign in if needed
213
214**Check extension status:**
215
2161. Extensions view → "HVE Core"
2172. Verify no errors shown
2183. Click "Show Extension Output" if issues
219
220### Conflicting Installation Methods
221
222If you have both extension and manual installation (like Peer Clone):
223
224**Problem:** Duplicate agents appearing
225
226**Solution:** Choose one method:
227
228* Keep extension: Remove manual installation (delete cloned folder, remove workspace settings)
229* Keep manual: Uninstall extension
230
231### Update Not Appearing
232
233**Force check for updates:**
234
2351. Extensions view → ⋯ (More Actions)
2362. "Check for Extension Updates"
237
238**Manually update:**
239
2401. Extensions view → Find "HVE Core"
2412. Click "Update" button
242
243## Migration Guide
244
245### From Manual Installation to Extension
246
247If you're currently using manual methods like Peer Clone:
248
2491. Delete HVE-Core paths from `.vscode/settings.json`
2502. Optionally remove the hve-core clone if no longer needed
2513. Install the extension following the Quick Start above
2524. Verify agents appear in Copilot Chat
253
254### From Extension to Manual Installation
255
256If you need customization:
257
2581. Uninstall the extension from Extensions view
2592. Follow a manual method such as [Peer Clone](peer-clone.md) for local customization
2603. Customize agents, prompts, or instructions as needed
261
262## Limitations
263
264| Aspect | Status |
265|------------------|--------------------------------------------------|
266| Customization | ❌ Cannot modify components |
267| Version control | ⚠️ Extension updates only, no git control |
268| Team enforcement | ⚠️ Each member installs independently |
269| Dev/testing | ⚠️ Pre-release channel only, not custom branches |
270| Portable paths | ✅ Works everywhere |
271| Setup complexity | ✅ Simplest possible |
272| Disk usage | ✅ Single installation across all projects |
273
274## Next Steps
275
276* [Your First Workflow](../first-workflow.md) - Try HVE-Core with a real task
277* [Multi-Root Workspace](multi-root.md) - Combine extension with custom components
278* [Peer Clone](peer-clone.md) - Switch to customizable installation
279
280---
281
282<!-- markdownlint-disable MD036 -->
283*🤖 Crafted with precision by ✨Copilot following brilliant human instruction,
284then carefully refined by our team of discerning human reviewers.*
285<!-- markdownlint-enable MD036 -->
286