use crate::canonical::compute_id;
use crate::store::Store;
use crate::tick::{Check, Ground, Liveness, Tick};
use crate::verify::verify;
use std::path::Path;
use std::process::ExitCode;
fn triggered_since(
repo: &std::path::Path,
ground: &crate::tick::Ground,
receipts: &[crate::receipt::Receipt],
) -> bool {
use crate::tick::Check;
let triggered_by = match &ground.check {
Some(Check::Test { liveness, .. }) => &liveness.triggered_by,
_ => return false,
};
let latest = receipts.iter().max_by(|a, b| a.ran_at.cmp(&b.ran_at));
match latest {
Some(r) => crate::liveness::changed_since(repo, &r.commit, triggered_by).unwrap_or(false),
None => false,
}
}
pub fn init(repo: &Path) -> ExitCode {
let store = Store::at(repo);
match store.init() {
Ok(true) => {
println!("created .evolving/ (content-addressed chain + results cache)");
ExitCode::SUCCESS
}
Ok(false) => {
println!(".evolving/ already exists (no-op)");
ExitCode::SUCCESS
}
Err(e) => {
eprintln!("error: could not create .evolving/: {e}");
ExitCode::FAILURE
}
}
}
pub fn show(repo: &Path, id: &str) -> ExitCode {
let store = Store::at(repo);
let path = store.ticks_dir().join(id);
if !path.is_file() {
eprintln!("error: no tick with id {id}");
return ExitCode::FAILURE;
}
match std::fs::read_to_string(&path) {
Ok(text) => {
println!("{text}");
if let Ok(v) = serde_json::from_str::<serde_json::Value>(&text) {
if let Some(a) = v.get("authority").and_then(|x| x.as_str()) {
println!("authority: {a}");
}
}
ExitCode::SUCCESS
}
Err(e) => {
eprintln!("error: reading {id}: {e}");
ExitCode::FAILURE
}
}
}
pub fn decide(repo: &Path, decision: Option<&str>, args: &[String]) -> ExitCode {
let (decision, args): (Option<&str>, Vec<String>) = match decision {
Some(d) if d.starts_with('-') => {
let mut v = vec![d.to_string()];
v.extend_from_slice(args);
(None, v)
}
other => (other, args.to_vec()),
};
match crate::capture::run(repo, decision, &args) {
Ok(t) => {
crate::events::append(&Store::at(repo), "decide", Some(&t.id), None);
println!("recorded {} ({} ground(s))", t.id, t.grounds.len());
ExitCode::SUCCESS
}
Err(e) => {
eprintln!("error: {e}");
ExitCode::FAILURE
}
}
}
pub fn guard(repo: &Path, a: crate::guard::GuardArgs) -> ExitCode {
match crate::guard::run(repo, a) {
Ok(t) => {
crate::events::append(&Store::at(repo), "guard", Some(&t.id), None);
println!("bound; wrote child {}", t.id);
ExitCode::SUCCESS
}
Err(e) => {
eprintln!("error: {e}");
ExitCode::FAILURE
}
}
}
pub fn verify_cmd(repo: &Path, self_test: bool) -> ExitCode {
if self_test {
return self_test_golden();
}
let store = Store::at(repo);
match verify(&store) {
Ok(v) if v.is_empty() => {
println!("✓ chain intact: every id == hash(payload), lineage forward-only");
println!("✓ every tick validates against the closed schema (R1) and check shape (R2)");
ExitCode::SUCCESS
}
Ok(v) => {
for line in &v {
println!("✗ {line}");
}
eprintln!("{} violation(s)", v.len());
ExitCode::FAILURE
}
Err(e) => {
eprintln!("error: reading store: {e}");
ExitCode::FAILURE
}
}
}
fn latest_ran_at(receipts: &[crate::receipt::Receipt]) -> Option<String> {
receipts.iter().map(|r| r.ran_at.clone()).max()
}
fn live_ctx(
store: &Store,
staleness_days: u64,
live_origin_sha: Option<String>,
attest: Option<Vec<String>>,
) -> crate::verdict::Ctx {
crate::verdict::Ctx {
live_origin_sha,
selected: crate::selected::read(store).unwrap_or(None),
now_unix: time::OffsetDateTime::now_utc().unix_timestamp(),
staleness_secs: staleness_days as i64 * 86_400,
attest,
}
}
pub fn check(
repo: &Path,
exit_on_red: bool,
run: bool,
platform: &str,
offline: bool,
attest: Vec<String>,
) -> ExitCode {
use crate::verdict::{verdict_for, Verdict};
let store = Store::at(repo);
if !store.exists() {
eprintln!("error: no .evolving/ store here — run `ev init` first");
return ExitCode::FAILURE;
}
let files = match store.read_all() {
Ok(f) => f,
Err(e) => {
eprintln!("error: reading store: {e}");
return ExitCode::FAILURE;
}
};
let config = crate::config::read(&store);
if run {
for (_filename, raw) in &files {
let t = match crate::tick::from_value(raw) {
Ok(t) => t,
Err(_) => continue,
};
if t.status != "live" {
continue;
}
for g in &t.grounds {
if let Some(Check::Test {
reference,
counter_test,
liveness,
..
}) = &g.check
{
if liveness.platforms.iter().any(|p| p == platform) {
match crate::runner::run_check(
repo,
reference,
platform,
config.green_exit_code,
) {
Ok(mut rc) => {
if let Ok(ct) = crate::runner::run_check(
repo,
counter_test,
platform,
config.green_exit_code,
) {
rc.falsifiable = Some(rc.result != ct.result);
}
if let Err(e) = crate::receipt::append(&store, &rc) {
eprintln!(
"warning: could not write receipt for {reference:?}: {e}"
);
}
}
Err(e) => eprintln!("warning: run failed for {reference:?}: {e}"),
}
}
}
}
}
}
let live_origin = crate::staleness::resolve(repo, &store, &config.staleness_ref, offline);
let attest = if attest.is_empty() {
None
} else {
Some(attest)
};
let ctx = live_ctx(&store, config.staleness_days, live_origin, attest);
let mut rows: Vec<String> = Vec::new();
let mut any_not_green = false;
for (filename, raw) in &files {
let t = match crate::tick::from_value(raw) {
Ok(t) => t,
Err(_) => continue, };
if t.status != "live" {
continue;
}
let mut verdicts = Vec::with_capacity(t.grounds.len());
for g in &t.grounds {
let receipts = match &g.check {
Some(Check::Test { reference, .. }) => {
crate::receipt::read_for(&store, reference).unwrap_or_default()
}
_ => Vec::new(),
};
let ts = triggered_since(repo, g, &receipts);
let v = verdict_for(g, &receipts, &ctx, ts);
if !matches!(v, Verdict::Green | Verdict::NotApplicable | Verdict::Exempt) {
any_not_green = true;
}
if matches!(&g.check, Some(Check::Test { .. })) {
let detail = match &v {
Verdict::NotRun { missing_platforms } => {
format!("missing: {}", missing_platforms.join(", "))
}
Verdict::Stale { reason } => reason.clone(),
_ => latest_ran_at(&receipts)
.map(|ts| format!("ran {ts}"))
.unwrap_or_else(|| "no receipt".into()),
};
rows.push(format!(
"{}\t{filename}\t{:?}\t({detail})",
v.label(),
g.claim
));
crate::events::append(&store, "check", Some(&t.id), Some(v.label()));
}
verdicts.push((g, v));
}
let _ = crate::state::write_state(
&store,
&t.id,
&verdicts,
&config.staleness_ref,
ctx.live_origin_sha.as_deref(),
);
}
if rows.is_empty() {
println!("no test-bound grounds to check");
} else {
for r in &rows {
println!("{r}");
}
if !run {
println!("note: run `ev check --run` to execute each counter-test and prove its falsifiability");
}
}
if exit_on_red && any_not_green {
return ExitCode::FAILURE;
}
ExitCode::SUCCESS
}
pub fn why(repo: &Path, selector: &str) -> ExitCode {
let store = Store::at(repo);
if !store.exists() {
eprintln!("error: no .evolving/ store here — run `ev init` first");
return ExitCode::FAILURE;
}
let files = match store.read_all() {
Ok(f) => f,
Err(e) => {
eprintln!("error: reading store: {e}");
return ExitCode::FAILURE;
}
};
let mut found = false;
for (filename, raw) in &files {
let t = match crate::tick::from_value(raw) {
Ok(t) => t,
Err(_) => continue,
};
if t.status != "live" {
continue;
}
for g in &t.grounds {
if let Some(Check::Test { reference, .. }) = &g.check {
if reference.as_str() == selector {
found = true;
println!(
"{filename}\t{:?}\tguards: {:?} ({})",
t.decision, g.claim, g.supports
);
}
}
}
}
if !found {
eprintln!("{selector:?} guards nothing");
return ExitCode::FAILURE;
}
ExitCode::SUCCESS
}
pub fn list(repo: &Path) -> ExitCode {
let store = Store::at(repo);
if !store.exists() {
eprintln!("error: no .evolving/ store here — run `ev init` first");
return ExitCode::FAILURE;
}
let files = match store.read_all() {
Ok(f) => f,
Err(e) => {
eprintln!("error: reading store: {e}");
return ExitCode::FAILURE;
}
};
let mut rows: Vec<(String, String, String, Option<String>)> = files
.iter()
.map(|(name, raw)| match crate::tick::from_value(raw) {
Ok(t) => (name.clone(), t.status, t.decision, t.authority),
Err(_) => (name.clone(), "?".into(), "<unparseable>".into(), None),
})
.collect();
rows.sort();
if rows.is_empty() {
println!("no decisions yet");
return ExitCode::SUCCESS;
}
for (id, status, decision, authority) in &rows {
match authority {
Some(a) => println!("{id}\t{status}\t{decision:?}\tauthority={a}"),
None => println!("{id}\t{status}\t{decision:?}"),
}
}
ExitCode::SUCCESS
}
pub fn brief(repo: &Path, limit: Option<usize>) -> ExitCode {
let store = Store::at(repo);
if !store.exists() {
eprintln!("error: no .evolving/ store here — run `ev init` first");
return ExitCode::FAILURE;
}
let files = match store.read_all() {
Ok(f) => f,
Err(e) => {
eprintln!("error: reading store: {e}");
return ExitCode::FAILURE;
}
};
let limit = limit.unwrap_or(crate::config::read(&store).brief_limit);
let mut kept: Vec<(String, Tick)> = files
.iter()
.filter_map(|(name, raw)| crate::tick::from_value(raw).ok().map(|t| (name.clone(), t)))
.filter(|(_, t)| t.status == "live" && t.authority.as_deref() == Some("user-ruled"))
.collect();
kept.sort_by(|a, b| b.1.held_since.cmp(&a.1.held_since).then(b.0.cmp(&a.0)));
if kept.is_empty() {
println!("no user-ruled decisions");
return ExitCode::SUCCESS;
}
let total = kept.len();
if limit > 0 {
kept.truncate(limit);
}
for (_id, t) in &kept {
println!("{} [user-ruled]", t.decision);
for g in &t.grounds {
if let Some(option) = g.supports.strip_prefix("rejected:") {
println!(" rejected {option}: {}", g.claim);
}
}
}
if total > kept.len() {
println!(
"… {} more user-ruled decision(s) — `ev list` for all",
total - kept.len()
);
}
ExitCode::SUCCESS
}
pub fn log(repo: &Path) -> ExitCode {
let store = Store::at(repo);
if !store.exists() {
eprintln!("error: no .evolving/ store here — run `ev init` first");
return ExitCode::FAILURE;
}
let mut id = match store.read_head() {
Ok(h) => h,
Err(e) => {
eprintln!("error: reading HEAD: {e}");
return ExitCode::FAILURE;
}
};
if id.is_empty() {
println!("no decisions yet");
return ExitCode::SUCCESS;
}
let mut seen = std::collections::HashSet::new();
while !id.is_empty() {
if !seen.insert(id.clone()) {
break; }
match store.read_tick(&id) {
Ok(Some(t)) => {
println!("{}\t{}\t{:?}", t.id, t.status, t.decision);
id = t.parent_id;
}
Ok(None) => {
eprintln!("warning: {id} not found (broken lineage)");
break;
}
Err(e) => {
eprintln!("error: reading {id}: {e}");
return ExitCode::FAILURE;
}
}
}
ExitCode::SUCCESS
}
pub fn reopen(repo: &Path, id: &str) -> ExitCode {
let store = Store::at(repo);
let tick = match store.read_tick(id) {
Ok(Some(t)) => t,
Ok(None) => {
eprintln!("error: no tick with id {id}");
return ExitCode::FAILURE;
}
Err(e) => {
eprintln!("error: reading {id}: {e}");
return ExitCode::FAILURE;
}
};
let config = crate::config::read(&store);
let live_origin = crate::staleness::resolve(repo, &store, &config.staleness_ref, true);
let ctx = live_ctx(&store, config.staleness_days, live_origin, None);
crate::events::append(&store, "reopen", Some(id), None);
println!("decision {}: {:?}", tick.id, tick.decision);
if !tick.observe.is_empty() {
println!("observe: {:?}", tick.observe);
}
if let Some(a) = &tick.authority {
println!("authority: {a}");
}
for g in &tick.grounds {
match &g.check {
Some(Check::Test {
reference,
verified_at_sha,
..
}) => {
let receipts = crate::receipt::read_for(&store, reference).unwrap_or_default();
let ts = triggered_since(repo, g, &receipts);
let v = crate::verdict::verdict_for(g, &receipts, &ctx, ts);
let now = v.label();
let short = &verified_at_sha[..verified_at_sha.len().min(8)];
println!(
" [{}] {:?} — test {:?} frozen@{short} now: {now}",
g.supports, g.claim, reference
);
}
Some(Check::Person { reference }) => {
println!(" [{}] {:?} — person {:?}", g.supports, g.claim, reference);
}
None => {
println!(" [{}] {:?}", g.supports, g.claim);
}
}
}
ExitCode::SUCCESS
}
fn self_test_golden() -> ExitCode {
let genesis = Tick {
id: String::new(),
parent_id: "".into(),
observe: "evaluating retrieval backend".into(),
decision: "freeze the retrieval schema for v2".into(),
grounds: vec![
Ground {
claim: "team still wants a frozen schema".into(),
supports: "chosen".into(),
check: Some(Check::Person {
reference: "Q3 infra review".into(),
}),
},
Ground {
claim: "pgvector would lock our schema".into(),
supports: "rejected:pgvector".into(),
check: None,
},
],
status: "live".into(),
held_since: "".into(),
blame: "Wang Yu".into(),
authority: None,
};
let case1 = Tick {
id: String::new(),
parent_id: "7b21f0a4c8de".into(),
observe: "multi-pod restore-safety counter — chat-room R2289→R2290".into(),
decision: "restore-safety counter DB-backed; reject Redis".into(),
grounds: vec![
Ground {
claim: "Argus introduces no Redis; multi-pod coord via existing DB".into(),
supports: "chosen".into(),
check: Some(Check::Test {
reference: "pytest tests/test_redis_absent.py".into(),
verified_at_sha: "d308afac1b2c3d4e5f60718293a4b5c6d7e8f901".into(),
counter_test:
"pytest tests/test_redis_absent.py::test_redis_injection_flips_red".into(),
liveness: Liveness {
platforms: vec!["linux-ci".into()],
triggered_by: vec!["pyproject.toml".into()],
surfaces: vec!["pyproject-deps".into()],
},
}),
},
Ground {
claim: "team still wants 0-Redis posture".into(),
supports: "chosen".into(),
check: Some(Check::Person {
reference: "Q3 infra review".into(),
}),
},
Ground {
claim: "Redis would add a new infra dependency".into(),
supports: "rejected:Redis".into(),
check: None,
},
],
status: "live".into(),
held_since: "".into(),
blame: "Wang Yu".into(),
authority: None,
};
let mut ok = true;
for (name, t, want) in [
("genesis", &genesis, "e2b337f53a1f"),
("case1", &case1, "638c47b0c9dd"),
] {
let got = compute_id(t);
let pass = got == want;
ok &= pass;
println!(
"{} {name}: {got} (want {want})",
if pass { "✓" } else { "✗" }
);
}
if ok {
ExitCode::SUCCESS
} else {
ExitCode::FAILURE
}
}