keplemon 3.0.2

Expanded functionality for the Standardized Astrodynamics Algorithms Library (SAAL)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# AI Contract (Keplemon)

You must follow `agents.yaml`.

Definition of done:

- Consider if Python bindings for Rust changes need to be exposed in bindings/ or bindings.rs
- Consider if Python bindings need to be updated in any of the python/keplemon/*.py files
- Consider if Python type hints need to be updated in any ofthe stubs/keplemon/*.pyi files
- Run `cargo make clean-all` to clear Python and Rust caches
- Run `cargo test` after changes to confirm the Rust library works
- Run `pip install .` to confirm the Python wheel still builds and installs
- Run `pytest .` to confirm Python tests pass

Formatting-only changes:

- Always run `cargo fmt` and then `cargo fmt -- --check`.