Skip to main content

Customizing HVE Core

Customization Spectrum

HVE Core supports a range of customization depths. Start with the lightest option that meets your needs, then move deeper when the situation demands it.

ApproachDescription
VS Code SettingsIndividual preferences like font size, theme, and editor behavior. No files to create or share.
InstructionsConfigure Copilot behavior through .github/copilot-instructions.md and .instructions.md files. Lowest effort with highest return for shaping AI output.
Agents and PromptsSpecialized workflows: agents for multi-turn interactions, prompts for single-shot tasks. Both accept tool restrictions and delegation rules.
SkillsDomain knowledge in self-contained bundles with optional scripts. Use when instruction files alone cannot capture the depth of a domain.
CollectionsBundle agents, prompts, instructions, and skills into distributable packages for team or organization adoption.
Build SystemValidation scripts, schema checks, and plugin generation pipelines.
Fork and ExtendFull control over every artifact. Fork the repository when your changes diverge significantly from upstream.

Choose Your Approach

GoalApproachFiles InvolvedDifficulty
Set coding standards for CopilotInstructions.github/copilot-instructions.md, .instructions.mdLow
Create a reusable workflowPrompt.github/prompts/{collection}/name.prompt.mdLow
Build a specialized Copilot assistantAgent.github/agents/{collection}/name.agent.mdMedium
Package domain expertiseSkill.github/skills/{collection}/{skill}/SKILL.mdMedium
Share curated bundles across teamsCollectioncollections/*.collection.ymlMedium
Add custom validation or plugin generationBuild Systemscripts/, package.jsonHigh
Diverge from upstream entirelyFork and ExtendFull repositoryHigh

Authoring with Prompt Builder

The Prompt Builder agent streamlines creation, evaluation, and refinement of all artifact types. Three commands cover the full authoring workflow:

CommandPurpose
/prompt-buildCreate new artifacts or improve existing ones
/prompt-analyzeEvaluate quality and produce a structured assessment report
/prompt-refactorConsolidate, deduplicate, or restructure related artifact files

Each artifact guide below includes an "Accelerating with Prompt Builder" section with type-specific examples and sample invocations.

Role-Based Entry Points

Each HVE role benefits from different customization techniques. The table below maps the nine roles to the guides most relevant to their workflow.

RoleRecommended GuidesRationale
EngineerInstructions, AgentsCoding standards and specialized review agents accelerate daily development
TPMPrompts, CollectionsReusable planning prompts and curated bundles standardize project workflows
Tech Lead / ArchitectInstructions, Agents, SkillsStandards enforcement, architecture review agents, and deep domain knowledge
Security ArchitectSkills, InstructionsCompliance knowledge packages and security-focused coding conventions
Data ScientistSkills, PromptsAnalytical domain bundles and repeatable notebook workflows
SRE / OperationsInstructions, EnvironmentInfrastructure conventions and DevContainer tuning
Business Program ManagerPrompts, Team AdoptionSprint-planning prompts and governance patterns for stakeholder alignment
New ContributorInstructions, EnvironmentQuick onboarding through conventions and a ready-to-use development environment
UtilityCollections, Build SystemCross-cutting tooling assembly and validation pipeline customization

File Index

  1. Customizing with Instructions: Configure Copilot with copilot-instructions.md and instruction files
  2. Creating Custom Agents: Build specialized agents with tool restrictions and subagent delegation
  3. Creating Custom Prompts: Author reusable prompt templates with variables
  4. Authoring Custom Skills: Create domain knowledge packages
  5. Managing Collections: Bundle artifacts into distributable packages
  6. Build System and Validation: Plugin generation, schema validation, npm scripts
  7. Forking and Extending: Full fork-and-extend customization
  8. Environment Customization: DevContainers, VS Code settings, MCP servers
  9. Team Adoption and Governance: Governance, naming, onboarding, change management

🤖 Crafted with precision by ✨Copilot following brilliant human instruction, then carefully refined by our team of discerning human reviewers.