drep-ai 2.9.0

A local commit gate: runs the linters your repo configures, and sends changed code to an LLM for review
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Acceptance tests for `drep init` (Part B).
//!
//! The tests run real git where the contract is about hooks, so a fixture
//! helper that initialises a real repository lives next to them; tests that
//! exercise `render` or `write` run against a plain `TempDir`.

mod b_codex;
mod b_config_file;
mod b_gitignore;
mod b_hook_exec;
mod b_hook_install_safety;
mod b_hooks;
mod b_plan;
mod b_presets;
mod b_reinit;
mod b_run;
mod support;