oy-cli 0.13.6

Focused OpenCode agent with repeatable audits, code 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")
}