comparison AGENTS.md @ 282:6bd4a3990696 default tip

Add cross-platform canvas orchestration and typed composer Enable native ARM dependencies, macOS Copilot orchestration, portable service supervision, CPU dictation, and a shared N-key speak-or-type composer. Co-authored-by: Copilot <[email protected]> Copilot-Session: f68442b1-fa8f-46a0-9689-81710613bbd4
author MrJuneJune <me@mrjunejune.com>
date Thu, 20 Aug 2026 20:45:25 -0700
parents b3b547563ec7
children
comparison
equal deleted inserted replaced
281:c57149ad216e 282:6bd4a3990696
18 9. Use `Dowa_Arena` for first-party allocation. Do not add raw 18 9. Use `Dowa_Arena` for first-party allocation. Do not add raw
19 `malloc/calloc/realloc/free`; arena-owned pointers are released only by 19 `malloc/calloc/realloc/free`; arena-owned pointers are released only by
20 `Dowa_Arena_Free`. 20 `Dowa_Arena_Free`.
21 10. Update the relevant canonical wiki when behavior, configuration, routes, 21 10. Update the relevant canonical wiki when behavior, configuration, routes,
22 architecture, or agent workflows change. 22 architecture, or agent workflows change.
23 11. Every normal developer workflow must have one Bazel target that owns its
24 runfiles, process startup, supervision, shutdown, and exit status. Do not
25 ask users to manually assemble multiple commands or invoke built artifacts.
26
27 For example, the complete hg-web development stack runs with:
28
29 ```sh
30 bazel run //hg-web:dev
31 ```
23 32
24 For a single-package task, the expected documentation set is: 33 For a single-package task, the expected documentation set is:
25 34
26 ```text 35 ```text
27 AGENTS.md -> wiki/README.md -> one package wiki/README 36 AGENTS.md -> wiki/README.md -> one package wiki/README