oy-cli 0.14.0

Focused coding agent integrations with repeatable audits, reviews, and one-finding fixes
Documentation
1
2
3
4
5
6
7
8
9
//! Review constants used by launcher convenience wrappers.

use std::path::PathBuf;

pub const DEFAULT_MAX_REVIEW_CHUNKS: usize = 80;

pub fn default_output_path() -> PathBuf {
    PathBuf::from("REVIEW.md")
}