mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-24 16:25:20 +00:00
635 B
635 B
Agent Development Guide
A file for guiding coding agents.
- All commands must have a
--dry-runoption that is default on. - Commands that do not modify external state don't need a
--dry-runoption. - The order of definitions in Nu files should be:
(1) General CLI commands (exported, sorted alphabetically)
(2) Platform-specific CLI commands like GitHub (exported,
gh-) (3) Helper commands (exported) (4) Helper commands (non exported) - Verify help output using
use <module> *; help <def>. Everything must have human-friendly help output. - See
VOUCHED.examplefor an example vouch file.