microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c5fcf0b3766ea51ef3e9e9317f1d596622255f70

Branches

Tags

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

Clone

HTTPS

Download ZIP

docs/getting-started/README.md

107lines · modecode

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