bctx-weave 0.1.6

bctx-weave — FilterMesh lens pipeline, CLI interception, domain compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod compiler;
pub mod loader;
pub mod validator;

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Recipe {
    pub name: String,
    pub match_command: String,
    pub lens: Vec<String>,
    pub budget_tokens: Option<usize>,
    pub strip_lines: Option<Vec<String>>,
    pub on_empty: Option<String>,
}