oy-cli 0.11.7

OpenCode launcher and deterministic MCP helpers for repository audit and review workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::Serialize;
use serde_json::Value;

#[derive(Debug, Serialize)]
pub(super) struct OutlineOutput {
    pub path: String,
    pub format: &'static str,
    pub command: String,
    pub output: String,
}

#[derive(Debug, Serialize)]
pub(super) struct SlocOutput {
    pub path: String,
    pub format: &'static str,
    pub output: Value,
    pub exclude: Option<Vec<String>>,
}