microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
abfd03ef8b9f81e150e6d564a43b755cc910c8e6

Branches

Tags

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

Clone

HTTPS

Download ZIP

docs/getting-started/README.md

95lines · modecode

1---
2title: Getting Started with HVE Core
3description: Quick setup guide for using HVE Core Copilot customizations in your projects
4author: Microsoft
5ms.date: 2026-02-18
6ms.topic: tutorial
7keywords:
8 - github copilot
9 - multi-root workspace
10 - setup
11 - getting started
12estimated_reading_time: 5
13---
14
15You've installed HVE Core. What now?
16
17The honest answer: you can start using agents immediately, and some of them
18will produce good results right away. But the real power of HVE Core is a
19methodology called RPI (Research, Plan, Implement) that changes how you
20collaborate with AI. Instead of asking AI to "write the code," you ask it to
21research first, plan second, and implement third. The constraint changes
22everything.
23
24This guide walks you through four steps, each building on the last:
25
26| Step | What You Do | Time |
27|-----------------------------------------------------------|---------------------------------------------------------|---------|
28| [First Interaction](first-interaction.md) | Talk to an agent, see it respond | 1 min |
29| [First Research](first-research.md) | Use task-researcher on your own codebase | 5 min |
30| [First Full Workflow](first-workflow.md) | Run a complete Research, Plan, Implement cycle | 15 min |
31| [Growing with HVE](../hve-guide/roles/new-contributor.md) | Progress through four milestones toward independent use | Ongoing |
32
33> [!TIP]
34> Already comfortable with AI-assisted development? Skip to
35> [First Full Workflow](first-workflow.md) or try the
36> [rpi-agent](../../.github/CUSTOM-AGENTS.md#rpi-agent) for autonomous
37> single-session workflows.
38
39Need installation help? See the [Installation Guide](install.md) for all
40methods, or install the
41[VS Code extension](https://marketplace.visualstudio.com/items?itemName=ise-hve-essentials.hve-core)
42for the quickest path.
43
44## Troubleshooting
45
46### Installation Issues
47
48#### Agent not available
49
50* Ensure GitHub Copilot extension is installed and active
51* Reload VS Code window: `Ctrl+Shift+P` → "Developer: Reload Window"
52* Check that hve-core is accessible (cloned or configured correctly)
53
54#### Copilot not discovering customizations
55
56* For Multi-Root: Ensure you opened the `.code-workspace` file, not just the folder
57* Verify `chat.agentFilesLocations` points to the correct path
58* Check the window title shows the workspace name
59
60#### Git or clone errors
61
62* Verify Git is installed: run `git --version` in terminal
63* Check network connectivity to github.com
64* See the [installation guide](install.md) for method-specific troubleshooting
65
66## Optional Scripts
67
68HVE Core includes utility scripts you may want to copy into your project:
69
70| Script | Purpose |
71|----------------------------------------------------|----------------------------------------------------|
72| `scripts/linting/Validate-MarkdownFrontmatter.ps1` | Validate markdown frontmatter against JSON schemas |
73| `scripts/linting/Invoke-PSScriptAnalyzer.ps1` | Run PSScriptAnalyzer with project settings |
74| `scripts/security/Test-DependencyPinning.ps1` | Check GitHub Actions for pinned dependencies |
75
76Copy the scripts you need to your project's `scripts/` directory and adjust paths as needed.
77
78## Next Steps
79
80* Start the journey: [Your First Interaction](first-interaction.md)
81* Learn the [RPI Workflow](../rpi/README.md) for complex tasks
82* Browse [available agents](../../.github/CUSTOM-AGENTS.md) for the full catalog
83
84## See Also
85
86* [Installation Guide](install.md) - Full decision matrix for all installation methods
87* [MCP Configuration](mcp-configuration.md) - Configure Model Context Protocol servers
88* [Role Guides](../hve-guide/roles/README.md) - Find your role-specific guide
89
90---
91
92<!-- markdownlint-disable MD036 -->
93*🤖 Crafted with precision by ✨Copilot following brilliant human instruction,
94then carefully refined by our team of discerning human reviewers.*
95<!-- markdownlint-enable MD036 -->
96