Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 863 Bytes

File metadata and controls

28 lines (19 loc) · 863 Bytes

AGENTS.md

Build commands

  • zig build to build bun, bunx, and bunv
  • Build and run individual binaries with no arguments:
    • zig build bun
    • zig build bunx
    • zig build bunv
  • To pass arguments to the binary, build and run it:
    zig build
    ./zig-out/bin/bun --version

Code style

  • Zig standard formatting

Feature Work

When starting a feature, first create a plan at plans/<feature-name>.md. Iterate through the plan with the human and get explicit approval before starting work.

Creating PRs

This project squashes and merges PRs, the title being the only text in the commit. Since the project uses conventional commits, the title MUST be in the format <type>(<scope>): <subject>. Scope is optional.

Otherwise you can use any format for commits, it's just the PR title that should be conventional.