Skip to main content

klasp_agents_aider/
lib.rs

1//! `klasp-agents-aider` — AiderSurface for klasp.
2//!
3//! Edits `.aider.conf.yml` to insert `commit-cmd-pre: klasp gate --agent aider`
4//! so the klasp gate runs before every aider commit. Existing `commit-cmd-pre`
5//! values are chained (klasp first, user value second) rather than overwritten.
6
7pub mod aider_conf;
8pub mod surface;
9
10pub use surface::AiderSurface;