Overview of HVE Core components and security posture
mainHVE Core is an enterprise prompt engineering framework for GitHub Copilot. It consists of several component categories, most of which are non-executable artifacts. The security posture is characterized by strong automated controls (100% automated) across supply chain, code quality, access control, and vulnerability management.
Primary Components
- Prompt Engineering Artifacts: Markdown files with YAML frontmatter (located in
.github/instructions/,.github/prompts/,.github/agents/, and.github/skills/) consumed by GitHub Copilot. These contain no executable code. - PowerShell Scripts: Located in
scripts/, these are used for linting, validation, and CI/CD automation. They do not make external network connections except for documented tool downloads. - GitHub Actions Workflows: Located in
.github/workflows/, these handle PR validation, security scanning (CodeQL, dependency review), and release automation. - VS Code Extension: Located in
extension/, containing packaging configuration and the extension manifest. It does not collect telemetry or data. - Mural Skill Runtime: Located in
.github/skills/experimental/mural/. This is a Python CLI and embedded stdio MCP server. Unlike other components, it executes locally, manages OAuth tokens via an OS keyring or an encrypted file fallback (mode0600), and performs outbound HTTPS requests to the Mural REST API.