Skip to main content

Utility Reference

Use these cross-cutting utilities when your workflow spans multiple roles or lifecycle stages. HVE Core provides 13 addressable assets for cross-cutting utility workflows. These tools handle memory persistence, documentation maintenance, media processing, Git workflows, and installation management. Use them alongside your role-specific agents and prompts.

Utility Categories

CategoryAssetsPurpose
Memory1Session context and preference persistence
Documentation2Documentation operations and session context persistence
Media1Video-to-GIF conversion with FFmpeg optimization
Git3Commit messages, merge workflows, PR creation
Installation1Collection installation and environment setup
Diagnostics1Build information retrieval and CI/CD status checks

Usage Patterns

Memory Persistence

The memory agent stores preferences, context, and notes that persist across sessions. Use it to save coding preferences, project-specific conventions, or working state that should carry forward.

Select memory agent:

Save my preference for commit messages: always use conventional commits
format with scope (e.g., feat(api): add pagination endpoint). Enforce
lowercase type and scope. Include the work item ID in the footer.
What do you know about our authentication middleware? Summarize which
files implement auth logic, what token formats are supported, how
role-based access control is enforced, and any known limitations
documented in code comments.

Documentation Operations

The doc-ops agent handles documentation updates, link validation, and content maintenance. The /checkpoint prompt saves and restores conversation context across sessions using memory files.

Select doc-ops agent:

Update documentation for the notification service. The v2.3 release added
WebSocket support for real-time notifications. Update the API reference in
docs/api/notifications.md and add a WebSocket connection example to the
getting started guide.
/doc-ops-update Sync docs with recent changes
/checkpoint Save my current session working on the authentication
refactor. I've identified the token validation files and mapped the
middleware chain but haven't started implementation yet.
/checkpoint continue authentication refactor

Media Processing

The video-to-gif skill converts video files to optimized GIF format using FFmpeg two-pass encoding. This skill activates through the memory agent or general chat context.

Refer to the video-to-gif skill for detailed usage, parameters, and optimization options.

Git Workflows

Git utilities manage commit messages, merge operations, and pull request creation across all roles.

PromptPurposeInvoke
git-commitConventional commit message generation/git-commit
git-commit-messageCommit message from staged changes/git-commit-message
git-mergeMerge, rebase, and conflict resolution/git-merge
pull-requestPull request creation with templates/pull-request
git-setupGit configuration and environment setup/git-setup

Asset Resolution

When you reference a prompt, instruction, agent, or skill that does not exist in the current project directory, Copilot falls back to the hve-core repository location. This resolution follows the hve-core-location.instructions.md pattern, walking up the directory tree until the asset is found.

This fallback activates automatically. No manual configuration is needed.

Full Asset Reference

Agents

AgentCategoryDescription
memoryMemorySession context and preference persistence
doc-opsDocumentationDocumentation operations and maintenance
hve-core-installerInstallationCollection installation and setup management

Prompts

PromptCategoryInvokeDescription
git-commitGit/git-commitConventional commit message generation
git-commit-messageGit/git-commit-messageCommit message from staged changes
git-mergeGit/git-mergeMerge, rebase, and conflict resolution workflows
pull-requestGit/pull-requestPull request creation with template support
git-setupGit/git-setupGit configuration and environment setup
checkpointDocumentation/checkpointSave and restore conversation context across sessions
doc-ops-updateDocumentation/doc-ops-updateDocumentation sync and update operations
ado-get-build-infoDiagnostics/ado-get-build-infoAzure DevOps build status and log retrieval

Skills

SkillCategoryDescription
video-to-gifMediaFFmpeg two-pass video-to-GIF conversion

Tips

DoDon't
Use the memory agent to save preferences early in a sessionRepeat the same context setup in every conversation
Use /checkpoint during long, multi-step workflowsLose progress context in extended sessions
Use /git-commit for all commits to maintain conventionsWrite ad-hoc commit messages that skip conventional format
Install only the collections your role needsInstall hve-core-all when you only need one collection
Refer to the skill docs for media processing parametersGuess at FFmpeg options without consulting the skill file

Next Steps

TIP

Find your role-specific guide: Role Guides Overview Explore collection options: Role Overview Get started with installation: Install Guide


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