- new investigations run asynchronously
- the shell stays free for more questions and follow-ups
- completed RCAs are tracked in-session
- email notifications can be sent on completion via the
smtpintegration
This first version is session-local only. If the REPL process exits,
in-flight background jobs stop with it.
Commands
What they do
/background on— enable async investigation launches/background off— return to normal foreground execution/background list— show tracked jobs/background show <task_id>— show the RCA summary for one job/background use <task_id>— promote a completed job into the active follow-up context/background notify set email— keep email as the completion channel in v1
Typical flow
- Start the interactive shell.
- Enable background mode:
- Start an investigation:
- Keep using the shell while the RCA runs.
- When it completes:
- inspect it with
/background show <task_id> - adopt it into active follow-up context with
/background use <task_id>
- inspect it with
RCA summary contents
Completed background jobs store:- root cause
- top analysis items
- recommended next steps
- internal stats:
- tool call count
- investigation loop count
- validity score
Email notifications
Email delivery is handled through thesmtp integration.
The notification email focuses on:
- Root cause
- Top analysis
- What to do next
Current v1 limits
- notification preferences are email-only in the current shipped path
- jobs are not persisted across REPL restarts
- completion does not automatically replace your active follow-up context
- you must run
/background use <task_id>to promote a finished RCA
Tracer