remove --debug flag from agent run

The log file has everything now; --debug was redundant.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kent Overstreet 2026-03-22 02:04:51 -04:00
parent 543e1bdc8a
commit e3f7d6bd3c
4 changed files with 13 additions and 20 deletions

View file

@ -132,7 +132,7 @@ fn job_targeted_agent(
log_event(&job_name, "progress", msg);
};
super::knowledge::run_one_agent_with_keys(
&mut store, &agent, std::slice::from_ref(&key), 5, "daemon", &log, false,
&mut store, &agent, std::slice::from_ref(&key), 5, "daemon", &log,
)?;
ctx.log_line("done");
Ok(())
@ -217,7 +217,7 @@ fn job_consolidation_agent(
// Use run_one_agent_with_keys — we already selected seeds above,
// no need to re-run the query.
let result = super::knowledge::run_one_agent_with_keys(
&mut store, &agent, &claimed_keys, batch, "consolidate", &log, false,
&mut store, &agent, &claimed_keys, batch, "consolidate", &log,
).map(|_| ());
// Release all claimed keys (seeds + neighbors)
@ -247,7 +247,7 @@ fn job_rename_agent(
ctx.log_line(format!("running rename agent (batch={})", batch));
let log = |msg: &str| ctx.log_line(msg);
let result = super::knowledge::run_one_agent(&mut store, "rename", batch, "consolidate", &log, false)?;
let result = super::knowledge::run_one_agent(&mut store, "rename", batch, "consolidate", &log)?;
// Parse RENAME actions from response (rename uses its own format, not WRITE_NODE/LINK/REFINE)
let mut applied = 0;