microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
docs/getting-started/README.md
95lines · modecode
| 1 | --- |
| 2 | title: Getting Started with HVE Core |
| 3 | description: Quick setup guide for using HVE Core Copilot customizations in your projects |
| 4 | author: Microsoft |
| 5 | ms.date: 2026-02-18 |
| 6 | ms.topic: tutorial |
| 7 | keywords: |
| 8 | - github copilot |
| 9 | - multi-root workspace |
| 10 | - setup |
| 11 | - getting started |
| 12 | estimated_reading_time: 5 |
| 13 | --- |
| 14 | |
| 15 | You've installed HVE Core. What now? |
| 16 | |
| 17 | The honest answer: you can start using agents immediately, and some of them |
| 18 | will produce good results right away. But the real power of HVE Core is a |
| 19 | methodology called RPI (Research, Plan, Implement) that changes how you |
| 20 | collaborate with AI. Instead of asking AI to "write the code," you ask it to |
| 21 | research first, plan second, and implement third. The constraint changes |
| 22 | everything. |
| 23 | |
| 24 | This 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 | |
| 39 | Need installation help? See the [Installation Guide](install.md) for all |
| 40 | methods, or install the |
| 41 | [VS Code extension](https://marketplace.visualstudio.com/items?itemName=ise-hve-essentials.hve-core) |
| 42 | for 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 | |
| 68 | HVE 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 | |
| 76 | Copy 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, |
| 94 | then carefully refined by our team of discerning human reviewers.* |
| 95 | <!-- markdownlint-enable MD036 --> |
| 96 | |