Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.1 KB

File metadata and controls

38 lines (29 loc) · 1.1 KB

Agents Guide

Commit Convention

This project uses Conventional Commits.

Format: <type>: <description>

Common types:

  • feat – new feature
  • fix – bug fix
  • chore – maintenance, dependency updates, tooling
  • docs – documentation only
  • refactor – code restructuring without behavior change
  • ci – CI/CD pipeline changes
  • test – adding or updating tests
  • style – formatting, whitespace

Examples from this repo:

feat: add support for all major Nix platforms
fix: correct override params for multi-platform
chore: update Aspire CLI versions
docs: add nix run from GitHub instructions to README
ci: add auto-updating workflow

Keep the description lowercase and concise. No period at the end.

When the change is non-trivial, add a body to summarize what changed and why. Separate it from the subject with a blank line:

feat: add support for all major Nix platforms

Added platform-specific packages for x86_64-linux, aarch64-linux,
x86_64-darwin, and aarch64-darwin. Each platform pulls the correct
Aspire CLI binary from upstream.