lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit d432698502ccba62d9c4a8236f84c33f823bf27e
parent 47fce218ed79eb823075be74e2abddd112c3f0f8
Author: triesap <tyson@radroots.org>
Date:   Sun, 21 Dec 2025 23:58:30 +0000

docs: add git commit directives


- document commit summary and bullet list format
- align repository commits with existing style
- tests not run (not requested)

Diffstat:
MAGENTS.md | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/AGENTS.md b/AGENTS.md @@ -38,3 +38,10 @@ - Parity: maintain feature parity across native/wasm layers when adding SQL or Tangle APIs. - Module layout: keep lib.rs as a module manifest and re-export surface; avoid heavy logic in lib.rs. - Testing: add or update unit tests for new behavior and edge cases, especially around parsing, invariants, conversions, and rounding. + +## Git Commit Directives +- Format commits like the latest reference: `<scope>: <imperative summary>` (scope = crate or subsystem, lowercase). +- Leave a blank line after the summary. +- Add a bullet list of key changes, each prefixed with `- `, matching the structure of the last commit. +- Keep the summary concise; use bullets for notable changes, tests run, and compatibility notes. +- Split unrelated changes into separate commits.