1use std::path::{Path, PathBuf};
47use std::sync::{Arc, Mutex, MutexGuard, PoisonError};
48use std::time::Duration;
49
50use anyhow::{Context, Result, bail};
51use jiff::Timestamp;
52use serde::{Deserialize, Serialize};
53
54use crate::agent::{self, Invocation, SeatState};
55use crate::config::Config;
56use crate::queue::{Queue, Source, Task};
57
58pub const SCHEMA: u32 = 1;
60
61fn turn_timeout(cfg: &Config) -> Duration {
72 Duration::from_secs(cfg.graph.timeout_talk)
73}
74
75const SEAT: &str = "talk";
78
79const MAGI_NOTE: &str = "magi: ";
81
82#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
84#[serde(rename_all = "lowercase")]
85pub enum Who {
86 Operator,
88 Agent,
91}
92
93#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
101#[serde(deny_unknown_fields)]
102pub struct Attachment {
103 pub id: String,
105 pub name: String,
107 pub mime: String,
110 pub bytes: u64,
112}
113
114#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
116#[serde(deny_unknown_fields)]
117pub struct Turn {
118 pub who: Who,
120 pub body: String,
122 pub at: Timestamp,
124 #[serde(default)]
127 pub attachments: Vec<Attachment>,
128}
129
130#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
134#[serde(rename_all = "lowercase")]
135pub enum TalkStatus {
136 Open,
139 Closed,
141}
142
143impl TalkStatus {
144 pub fn open(self) -> bool {
146 matches!(self, Self::Open)
147 }
148
149 pub fn as_str(self) -> &'static str {
151 match self {
152 Self::Open => "open",
153 Self::Closed => "closed",
154 }
155 }
156}
157
158#[derive(Debug, Clone, Serialize, Deserialize)]
160#[serde(deny_unknown_fields)]
161pub struct Talk {
162 pub schema: u32,
164 pub id: String,
166 pub repo: PathBuf,
168 pub agent: String,
170 pub status: TalkStatus,
172 pub turns: Vec<Turn>,
174 #[serde(default)]
177 pub pending: String,
178 #[serde(default)]
180 pub pending_attachments: Vec<Attachment>,
181 pub created_at: Timestamp,
183 pub updated_at: Timestamp,
185 seat: SeatState,
190}
191
192impl Talk {
193 pub fn short(&self) -> &str {
195 short(&self.id)
196 }
197}
198
199#[derive(Debug, Clone)]
201pub struct Talks {
202 root: PathBuf,
203 lock: Arc<Mutex<()>>,
212}
213
214impl Talks {
215 pub fn open() -> Self {
217 Self::at(crate::run::home().join("talks"))
218 }
219
220 pub fn at(root: PathBuf) -> Self {
223 Self {
224 root,
225 lock: Arc::new(Mutex::new(())),
226 }
227 }
228
229 fn guard(&self) -> MutexGuard<'_, ()> {
238 self.lock.lock().unwrap_or_else(PoisonError::into_inner)
239 }
240
241 pub fn root(&self) -> &Path {
243 &self.root
244 }
245
246 pub fn path_of(&self, id: &str) -> PathBuf {
248 self.root.join(format!("{id}.json"))
249 }
250
251 pub fn artifacts_of(&self, id: &str) -> PathBuf {
254 self.root.join(format!("{id}.artifacts"))
255 }
256
257 pub fn attachments_dir(&self, id: &str) -> PathBuf {
261 self.artifacts_of(id).join("attachments")
262 }
263
264 pub fn put_attachment(
273 &self,
274 id: &str,
275 mime: &str,
276 name: &str,
277 data: &[u8],
278 ) -> Result<Attachment> {
279 let dir = self.attachments_dir(id);
280 std::fs::create_dir_all(&dir).with_context(|| format!("create {}", dir.display()))?;
281 let ext = attachment_ext(mime).with_context(|| format!("unsupported mime `{mime}`"))?;
282 let att = Attachment {
283 id: new_attachment_id(),
284 name: name.to_owned(),
285 mime: mime.to_owned(),
286 bytes: data.len() as u64,
287 };
288 std::fs::write(dir.join(format!("{}.{ext}", att.id)), data)
289 .with_context(|| format!("write attachment {}", att.id))?;
290 std::fs::write(
291 dir.join(format!("{}.json", att.id)),
292 serde_json::to_string(&att).context("serialize attachment")?,
293 )
294 .with_context(|| format!("write attachment metadata {}", att.id))?;
295 Ok(att)
296 }
297
298 pub fn attachment_meta(&self, id: &str, att_id: &str) -> Result<Option<Attachment>> {
307 if !valid_attachment_id(att_id) {
308 return Ok(None);
309 }
310 let meta_path = self.attachments_dir(id).join(format!("{att_id}.json"));
311 if !meta_path.is_file() {
312 return Ok(None);
313 }
314 let att = serde_json::from_str(
315 &std::fs::read_to_string(&meta_path)
316 .with_context(|| format!("read {}", meta_path.display()))?,
317 )
318 .with_context(|| format!("parse {}", meta_path.display()))?;
319 Ok(Some(att))
320 }
321
322 pub fn read_attachment(&self, id: &str, att_id: &str) -> Result<Option<(Attachment, Vec<u8>)>> {
326 let Some(att) = self.attachment_meta(id, att_id)? else {
327 return Ok(None);
328 };
329 let ext = attachment_ext(&att.mime).with_context(|| {
330 format!("attachment {att_id} has an unsupported mime `{}`", att.mime)
331 })?;
332 let data_path = self.attachments_dir(id).join(format!("{att_id}.{ext}"));
333 let data =
334 std::fs::read(&data_path).with_context(|| format!("read {}", data_path.display()))?;
335 Ok(Some((att, data)))
336 }
337
338 fn attachment_path(&self, id: &str, att: &Attachment) -> Option<PathBuf> {
355 let ext = attachment_ext(&att.mime)?;
356 let path = self.attachments_dir(id).join(format!("{}.{ext}", att.id));
357 std::path::absolute(&path).ok()
358 }
359
360 pub fn put(&self, t: &mut Talk) -> Result<()> {
369 std::fs::create_dir_all(&self.root)
370 .with_context(|| format!("create {}", self.root.display()))?;
371 t.updated_at = Timestamp::now();
372 let body = serde_json::to_string_pretty(t).context("serialize talk")?;
373 let path = self.path_of(&t.id);
374 let tmp = path.with_extension("json.tmp");
375 write_atomic(&tmp, &path, &body)
376 }
377
378 pub fn get(&self, id: &str) -> Result<Talk> {
380 let resolved = self.resolve_id(id)?;
381 read_path(&self.path_of(&resolved))
382 }
383
384 pub fn list(&self) -> Vec<Talk> {
387 let mut all: Vec<Talk> = std::fs::read_dir(&self.root)
388 .into_iter()
389 .flatten()
390 .flatten()
391 .map(|e| e.path())
392 .filter(|p| p.extension().is_some_and(|x| x == "json"))
393 .filter_map(|p| read_path(&p).ok())
394 .collect();
395 all.sort_unstable_by(|a, b| {
396 let rank = |t: &Talk| u8::from(!t.status.open());
397 rank(a).cmp(&rank(b)).then_with(|| b.id.cmp(&a.id))
398 });
399 all
400 }
401
402 pub fn resolve_id(&self, prefix: &str) -> Result<String> {
404 if self.path_of(prefix).is_file() {
405 return Ok(prefix.to_owned());
406 }
407 let hits: Vec<String> = self
408 .list()
409 .into_iter()
410 .map(|t| t.id)
411 .filter(|id| id.starts_with(prefix) || id.ends_with(prefix))
412 .collect();
413 match hits.len() {
414 1 => Ok(hits.into_iter().next().expect("exactly one hit")),
415 0 => bail!("no talk matches `{prefix}`"),
416 _ => bail!(
417 "`{prefix}` matches {} talks: {}",
418 hits.len(),
419 hits.join(", ")
420 ),
421 }
422 }
423
424 pub fn revision(&self) -> u64 {
427 std::fs::read_dir(&self.root)
428 .into_iter()
429 .flatten()
430 .flatten()
431 .filter_map(|e| e.metadata().ok())
432 .filter_map(|m| m.modified().ok())
433 .filter_map(|t| t.duration_since(std::time::UNIX_EPOCH).ok())
434 .map(|d| d.as_millis() as u64)
435 .max()
436 .unwrap_or(0)
437 }
438
439 pub fn count_open(&self) -> usize {
441 self.list().iter().filter(|t| t.status.open()).count()
442 }
443
444 pub fn remove(&self, id: &str) -> Result<()> {
457 let _guard = self.guard();
458 let resolved = self.resolve_id(id)?;
459 let path = self.path_of(&resolved);
460 std::fs::remove_file(&path).with_context(|| format!("remove {}", path.display()))?;
461 let artifacts = self.artifacts_of(&resolved);
462 if artifacts.is_dir() {
463 std::fs::remove_dir_all(&artifacts)
464 .with_context(|| format!("remove {}", artifacts.display()))?;
465 }
466 Ok(())
467 }
468}
469
470pub fn begin(store: &Talks, cfg: &Config, repo: PathBuf, agent: Option<&str>) -> Result<Talk> {
480 let repo = repo.canonicalize().unwrap_or(repo);
483 let want = agent.or(cfg.roles.chatter.as_deref());
484 let spec = agent::pick(&cfg.agents, want, &agent::installed)?;
485
486 let now = Timestamp::now();
487 let mut talk = Talk {
488 schema: SCHEMA,
489 id: new_id(),
490 repo,
491 agent: spec.id.clone(),
492 status: TalkStatus::Open,
493 turns: Vec::new(),
494 pending: String::new(),
495 pending_attachments: Vec::new(),
496 created_at: now,
497 updated_at: now,
498 seat: SeatState::new(SEAT, &spec.id, crate::rng::entropy()),
499 };
500 store.put(&mut talk)?;
501 Ok(talk)
502}
503
504pub fn record(
511 talk: &mut Talk,
512 store: &Talks,
513 text: &str,
514 attachments: Vec<Attachment>,
515) -> Result<String> {
516 let _guard = store.guard();
524 let Ok(fresh) = store.get(&talk.id) else {
529 bail!("talk {} was deleted", talk.short());
530 };
531 talk.status = fresh.status;
532 talk.pending = fresh.pending;
535 talk.pending_attachments = fresh.pending_attachments;
536 if !talk.status.open() {
537 bail!(
538 "talk {} is {} and takes no more turns",
539 talk.short(),
540 talk.status.as_str()
541 );
542 }
543 let text = text.trim();
544 if text.is_empty() && attachments.is_empty() {
545 bail!("nothing to say");
546 }
547 talk.turns.push(Turn {
548 who: Who::Operator,
549 body: text.to_owned(),
550 at: Timestamp::now(),
551 attachments,
552 });
553 store.put(talk)?;
554 Ok(text.to_owned())
555}
556
557pub fn queue(
559 talk: &mut Talk,
560 store: &Talks,
561 text: &str,
562 attachments: Vec<Attachment>,
563) -> Result<()> {
564 let text = text.trim();
565 if text.is_empty() && attachments.is_empty() {
566 bail!("nothing to say");
567 }
568 let _guard = store.guard();
569 let mut fresh = store
570 .get(&talk.id)
571 .with_context(|| format!("talk {} was deleted", talk.short()))?;
572 if !fresh.status.open() {
573 bail!(
574 "talk {} is {} and takes no more turns",
575 fresh.short(),
576 fresh.status.as_str()
577 );
578 }
579 if !text.is_empty() {
580 if fresh.pending.is_empty() {
581 fresh.pending = text.to_owned();
582 } else {
583 fresh.pending.push_str("\n\n");
584 fresh.pending.push_str(text);
585 }
586 }
587 fresh.pending_attachments.extend(attachments);
588 store.put(&mut fresh)?;
589 *talk = fresh;
590 Ok(())
591}
592
593pub fn drain(talk: &mut Talk, store: &Talks) -> Result<Option<String>> {
595 let _guard = store.guard();
596 let mut fresh = store
597 .get(&talk.id)
598 .with_context(|| format!("talk {} was deleted", talk.short()))?;
599 if !fresh.status.open() || (fresh.pending.is_empty() && fresh.pending_attachments.is_empty()) {
600 *talk = fresh;
601 return Ok(None);
602 }
603 let text = std::mem::take(&mut fresh.pending);
604 let attachments = std::mem::take(&mut fresh.pending_attachments);
605 fresh.turns.push(Turn {
606 who: Who::Operator,
607 body: text.clone(),
608 at: Timestamp::now(),
609 attachments,
610 });
611 store.put(&mut fresh)?;
612 *talk = fresh;
613 Ok(Some(text))
614}
615
616pub async fn say(
619 talk: &mut Talk,
620 store: &Talks,
621 cfg: &Config,
622 text: &str,
623 attachments: Vec<Attachment>,
624) -> Result<()> {
625 let text = record(talk, store, text, attachments)?;
626 turn(talk, store, cfg, &text).await
627}
628
629pub async fn respond(talk: &mut Talk, store: &Talks, cfg: &Config, text: &str) -> Result<()> {
631 turn(talk, store, cfg, text).await
632}
633
634pub fn close(talk: &mut Talk, store: &Talks) -> Result<()> {
652 let _guard = store.guard();
653 let mut fresh = store
654 .get(&talk.id)
655 .with_context(|| format!("talk {} was deleted", talk.short()))?;
656 fresh.status = TalkStatus::Closed;
657 fresh.pending.clear();
659 fresh.pending_attachments.clear();
660 store.put(&mut fresh)?;
661 *talk = fresh;
662 Ok(())
663}
664
665pub fn reopen(talk: &mut Talk, store: &Talks) -> Result<()> {
676 let _guard = store.guard();
677 let mut fresh = store
678 .get(&talk.id)
679 .with_context(|| format!("talk {} was deleted", talk.short()))?;
680 fresh.status = TalkStatus::Open;
681 store.put(&mut fresh)?;
682 *talk = fresh;
683 Ok(())
684}
685
686pub fn clear_pending(talk: &mut Talk, store: &Talks) -> Result<()> {
688 let _guard = store.guard();
689 let mut fresh = store
690 .get(&talk.id)
691 .with_context(|| format!("talk {} was deleted", talk.short()))?;
692 fresh.pending.clear();
693 fresh.pending_attachments.clear();
694 store.put(&mut fresh)?;
695 *talk = fresh;
696 Ok(())
697}
698
699pub fn clear_pending_if_matches(
701 talk: &mut Talk,
702 store: &Talks,
703 expected_text: &str,
704 expected_attachments: &[String],
705) -> Result<bool> {
706 let _guard = store.guard();
707 let mut fresh = store
708 .get(&talk.id)
709 .with_context(|| format!("talk {} was deleted", talk.short()))?;
710 if !pending_matches(&fresh, expected_text, expected_attachments) {
711 *talk = fresh;
712 return Ok(false);
713 }
714 fresh.pending.clear();
715 fresh.pending_attachments.clear();
716 store.put(&mut fresh)?;
717 *talk = fresh;
718 Ok(true)
719}
720
721pub fn edit_pending_text(
725 talk: &mut Talk,
726 store: &Talks,
727 text: &str,
728 expected_text: &str,
729 expected_attachments: &[String],
730) -> Result<bool> {
731 let _guard = store.guard();
732 let mut fresh = store
733 .get(&talk.id)
734 .with_context(|| format!("talk {} was deleted", talk.short()))?;
735 if !pending_matches(&fresh, expected_text, expected_attachments) {
736 *talk = fresh;
737 return Ok(false);
738 }
739 fresh.pending = text.trim().to_owned();
740 store.put(&mut fresh)?;
741 *talk = fresh;
742 Ok(true)
743}
744
745fn pending_matches(talk: &Talk, expected_text: &str, expected_attachments: &[String]) -> bool {
746 talk.pending == expected_text
747 && talk
748 .pending_attachments
749 .iter()
750 .map(|attachment| &attachment.id)
751 .eq(expected_attachments.iter())
752}
753
754async fn turn(talk: &mut Talk, store: &Talks, cfg: &Config, text: &str) -> Result<()> {
761 let spec = cfg
762 .agents
763 .iter()
764 .find(|a| a.id == talk.agent)
765 .with_context(|| {
766 format!(
767 "talk {} was opened with agent `{}`, which is no longer in \
768 the roster; restore it in magi.toml or start a new \
769 conversation",
770 talk.short(),
771 talk.agent
772 )
773 })?;
774
775 let resuming = agent::has_session(spec.kind, &talk.seat, cfg.graph.sessions);
776 let last_note = attachment_note(
780 store,
781 &talk.id,
782 talk.turns
783 .last()
784 .map_or(&[][..], |t| t.attachments.as_slice()),
785 );
786 let body = if talk.seat.turns == 0 {
787 format!(
788 "{}\n\n# Operator\n\n{text}{last_note}",
789 briefing(&talk.repo, &cfg.graph.language, cfg.talk.allow_write)
790 )
791 } else if resuming {
792 format!("{text}{last_note}")
793 } else {
794 format!("{}\n\n{text}{last_note}", transcript(talk, store))
795 };
796
797 let attachment_paths: Vec<PathBuf> = talk
803 .turns
804 .iter()
805 .flat_map(|t| t.attachments.iter())
806 .filter_map(|a| store.attachment_path(&talk.id, a))
807 .collect();
808
809 let artifacts = store.artifacts_of(&talk.id);
810 let stem = format!("turn-{}", talk.seat.turns + 1);
811 let cache_dir = cfg.cache_dir();
814 let inv = Invocation {
815 cwd: &talk.repo,
816 prompt: &body,
817 timeout: turn_timeout(cfg),
818 allow_write: cfg.talk.allow_write,
823 sessions: cfg.graph.sessions,
824 artifacts: &artifacts,
825 stem: &stem,
826 run: &talk.id,
829 node: "chat",
830 cache_dir: cache_dir.as_deref(),
831 attachments: &attachment_paths,
832 };
833
834 let outcome = agent::invoke(spec, &mut talk.seat, &inv).await;
835 let note = |why: String| Turn {
836 who: Who::Agent,
837 body: format!("{MAGI_NOTE}{why}"),
838 at: Timestamp::now(),
839 attachments: Vec::new(),
840 };
841 let (reply, failure) = match outcome {
842 Err(e) => (
843 note(format!("could not run agent `{}`: {e}", talk.agent)),
844 Some(format!("could not run agent `{}`: {e}", talk.agent)),
845 ),
846 Ok(out) if out.quota_exhausted() => {
847 let reset = out
848 .quota
849 .as_ref()
850 .and_then(|q| q.reset.clone())
851 .map_or_else(String::new, |r| format!(" (resets {r})"));
852 let why = format!(
853 "agent `{}` is out of quota{reset}; your message is saved, so \
854 say it again when the window reopens",
855 talk.agent
856 );
857 (note(why.clone()), Some(why))
858 }
859 Ok(out) if out.timed_out => {
860 let why = format!(
861 "agent `{}` did not answer within {}s; your message is saved",
862 talk.agent,
863 turn_timeout(cfg).as_secs()
864 );
865 (note(why.clone()), Some(why))
866 }
867 Ok(out) if !out.usable() => {
868 let why = format!(
869 "agent `{}` produced no answer (exit {}); your message is saved",
870 talk.agent,
871 out.exit_code
872 .map_or_else(|| "unknown".to_owned(), |c| c.to_string())
873 );
874 (note(why.clone()), Some(why))
875 }
876 Ok(out) => (
877 Turn {
878 who: Who::Agent,
879 body: out.text.trim().to_owned(),
880 at: Timestamp::now(),
881 attachments: Vec::new(),
882 },
883 None,
884 ),
885 };
886
887 let _guard = store.guard();
899 let Ok(fresh) = store.get(&talk.id) else {
905 return Ok(());
906 };
907 talk.status = fresh.status;
908 talk.pending = fresh.pending;
912 talk.pending_attachments = fresh.pending_attachments;
913 talk.turns.push(reply);
914 if let Err(put_err) = store.put(talk) {
915 let lost = talk.turns.pop().expect("just pushed above");
924 let stash = stash_lost_turn(store, &talk.id, &stem, &lost);
925 let why = match &stash {
926 Ok(path) => format!(
927 "agent `{}` answered, but the reply could not be saved to \
928 this conversation ({put_err:#}); the raw text was kept at \
929 {} - your message is saved, ask again",
930 talk.agent,
931 path.display()
932 ),
933 Err(stash_err) => format!(
934 "agent `{}` answered, but the reply could not be saved to \
935 this conversation ({put_err:#}), and it could not be kept \
936 anywhere else either ({stash_err:#}); your message is \
937 saved, ask again",
938 talk.agent
939 ),
940 };
941 talk.turns.push(note(why.clone()));
942 return match store.put(talk) {
949 Ok(()) => bail!("{why}"),
950 Err(note_err) => {
951 talk.turns.pop();
971 Err(note_err).context(why)
972 }
973 };
974 }
975
976 match failure {
977 Some(why) => bail!("{why}"),
978 None => Ok(()),
979 }
980}
981
982fn transcript(talk: &Talk, store: &Talks) -> String {
985 let mut out = String::from(
986 "This conversation cannot resume on the CLI's side, so here is \
987 everything said so far; answer only the last message.\n",
988 );
989 for t in &talk.turns {
990 let who = match t.who {
991 Who::Operator => "operator",
992 Who::Agent => "you",
993 };
994 out.push_str(&format!("\n## {who}\n\n{}\n", t.body.trim()));
995 out.push_str(&attachment_note(store, &talk.id, &t.attachments));
996 }
997 out
998}
999
1000fn attachment_note(store: &Talks, talk_id: &str, attachments: &[Attachment]) -> String {
1005 if attachments.is_empty() {
1006 return String::new();
1007 }
1008 let mut out = String::from(
1009 "\n\nThe operator attached the image(s) below to this message. Open \
1010 and look at each one before you answer.\n",
1011 );
1012 for att in attachments {
1013 if let Some(path) = store.attachment_path(talk_id, att) {
1014 out.push_str(&format!("\n- {} ({})", path.display(), att.mime));
1015 }
1016 }
1017 out.push('\n');
1018 out
1019}
1020
1021pub fn briefing(repo: &Path, language: &str, allow_write: bool) -> String {
1043 let write_policy = if allow_write {
1044 "Write access is enabled for this conversation (`allow_write = \
1045 true`), so you may write files - but only a small, \
1046 already-decided edit the operator names outright in this \
1047 conversation, not an implementation. This is a permission on the \
1048 conversation as a whole, not a property of whichever repository \
1049 it happened to start in: if the operator names a different \
1050 repository for that small edit, the policy allows it there too. \
1051 Your own tool may still confine writes to the repository this \
1052 conversation started in regardless - if a write elsewhere is \
1053 refused, say so plainly rather than working around it. Once you \
1054 have made an edit, say plainly what you edited. Anything bigger, \
1055 or anything still open-ended, still goes through the queue below \
1056 rather than being done here."
1057 } else {
1058 "Do not write files. Implementing a change is not this \
1059 conversation's job; a separate, blind competition of agents does \
1060 that, and a repository this conversation has already edited would \
1061 make their diffs unjudgeable."
1062 };
1063 let mut out = format!(
1064 "You are magi's standing conversation partner for its operator, who \
1065 usually has this open on a phone. Keep replies short: no preamble, \
1066 no restating what they just said.\n\n\
1067 # Repository\n\n{repo}\n\n\
1068 You may look around: read files, run shell commands, search history, \
1069 run tests - whatever answers the question. {write_policy}\n\n\
1070 A short, command-shaped message (\"list\", \"info <id>\", \"show \
1071 3cbf\") is almost always the operator asking you to look something \
1072 up, not an instruction to file - answer it yourself with `magi \
1073 list`, `magi show <id>`, `magi task list`, or the like, the same way \
1074 you would answer any other question in this conversation.\n\n\
1075 # When the operator wants something done\n\n\
1076 Run:\n\n\
1077 magi task add --solo --repo {repo} <instruction>\n\n\
1078 and tell the operator the task id it prints, so they can follow it \
1079 from the Queue. Write <instruction> so that an implementer who has \
1080 never seen this conversation can act on it alone - it is everything \
1081 they get. Use --solo: it runs the task through one implementer \
1082 straight into review instead of the usual multi-agent competition, \
1083 which is the right shape for a change this conversation has already \
1084 settled, rather than one still worth several independent takes.\n\n\
1085 If the operator asks for something in a different repository, \
1086 --repo does not have to be a full path: --repo owner/repo (or just \
1087 repo, when that is unambiguous) is resolved against local checkouts \
1088 the same way `magi repos` lists them. If the command fails because \
1089 nothing matches or more than one checkout shares that name, ask the \
1090 operator which repository they mean (or run `magi repos` yourself \
1091 to see the candidates) rather than guessing.\n",
1092 repo = repo.display(),
1093 );
1094 out.push_str(&language_note(language));
1095 out
1096}
1097
1098fn language_note(language: &str) -> String {
1101 if language.trim().is_empty() || language.eq_ignore_ascii_case("en") {
1102 String::new()
1103 } else {
1104 format!("\nHold this conversation in {language}.\n")
1105 }
1106}
1107
1108pub fn tasks_of(queue: &Queue, talk_id: &str) -> Vec<Task> {
1115 let mut tasks: Vec<Task> = queue
1116 .list()
1117 .into_iter()
1118 .filter(|t| matches!(&t.source, Source::Agent { run, .. } if run == talk_id))
1119 .collect();
1120 tasks.sort_unstable_by(|a, b| a.id.cmp(&b.id));
1121 tasks
1122}
1123
1124fn read_path(path: &Path) -> Result<Talk> {
1125 let body = std::fs::read_to_string(path).with_context(|| format!("read {}", path.display()))?;
1126 serde_json::from_str(&body).with_context(|| format!("parse {}", path.display()))
1127}
1128
1129const PUT_RETRIES: u32 = 5;
1132
1133fn write_atomic(tmp: &Path, path: &Path, body: &str) -> Result<()> {
1145 let mut last_err = None;
1146 for attempt in 0..PUT_RETRIES {
1147 if attempt > 0 {
1148 std::thread::sleep(Duration::from_millis(20 * u64::from(attempt)));
1149 }
1150 match try_write_atomic(tmp, path, body) {
1151 Ok(()) => return Ok(()),
1152 Err(e) => last_err = Some(e),
1153 }
1154 }
1155 Err(last_err.expect("the loop above always runs at least once"))
1156}
1157
1158fn try_write_atomic(tmp: &Path, path: &Path, body: &str) -> Result<()> {
1159 #[cfg(test)]
1160 if failpoint::take_forced_put_failure() {
1161 bail!("simulated write failure (test)");
1162 }
1163 std::fs::write(tmp, body).with_context(|| format!("write {}", tmp.display()))?;
1164 std::fs::rename(tmp, path).with_context(|| format!("replace {}", path.display()))?;
1165 Ok(())
1166}
1167
1168fn stash_lost_turn(store: &Talks, id: &str, stem: &str, reply: &Turn) -> Result<PathBuf> {
1173 let dir = store.artifacts_of(id);
1174 std::fs::create_dir_all(&dir).with_context(|| format!("create {}", dir.display()))?;
1175 let path = dir.join(format!("{stem}-lost.txt"));
1176 std::fs::write(&path, &reply.body).with_context(|| format!("write {}", path.display()))?;
1177 Ok(path)
1178}
1179
1180#[cfg(test)]
1187mod failpoint {
1188 use std::cell::Cell;
1189
1190 thread_local! {
1191 static FORCE_PUT_FAILURES: Cell<u32> = const { Cell::new(0) };
1192 }
1193
1194 pub(super) fn force_put_failures(count: u32) {
1197 FORCE_PUT_FAILURES.with(|c| c.set(count));
1198 }
1199
1200 pub(super) fn take_forced_put_failure() -> bool {
1203 FORCE_PUT_FAILURES.with(|c| {
1204 let n = c.get();
1205 if n == 0 {
1206 false
1207 } else {
1208 c.set(n - 1);
1209 true
1210 }
1211 })
1212 }
1213}
1214
1215fn short(id: &str) -> &str {
1216 id.split('-').next_back().unwrap_or(id)
1217}
1218
1219fn new_id() -> String {
1220 let stamp = jiff::Zoned::now().strftime("%Y%m%d-%H%M%S");
1221 let seed = crate::rng::entropy();
1222 format!("{stamp}-{:04x}", (seed ^ (seed >> 32)) & 0xffff)
1223}
1224
1225fn attachment_ext(mime: &str) -> Option<&'static str> {
1230 match mime {
1231 "image/png" => Some("png"),
1232 "image/jpeg" => Some("jpg"),
1233 "image/gif" => Some("gif"),
1234 "image/webp" => Some("webp"),
1235 _ => None,
1236 }
1237}
1238
1239pub fn valid_attachment_id(id: &str) -> bool {
1244 id.len() == 32
1245 && id
1246 .bytes()
1247 .all(|b| b.is_ascii_digit() || (b'a'..=b'f').contains(&b))
1248}
1249
1250fn new_attachment_id() -> String {
1254 let mut r = crate::rng::SplitMix64::new(crate::rng::entropy());
1255 format!("{:016x}{:016x}", r.next_u64(), r.next_u64())
1256}
1257
1258#[cfg(test)]
1259mod tests {
1260 use std::collections::BTreeMap;
1261
1262 use crate::config::{AgentKind, AgentSpec, Graph};
1263 use crate::queue::{Queue, Source, Task};
1264
1265 use super::*;
1266
1267 fn store() -> (tempfile::TempDir, Talks) {
1269 let tmp = tempfile::tempdir().expect("tempdir");
1270 let talks = Talks::at(tmp.path().join("talks"));
1271 (tmp, talks)
1272 }
1273
1274 fn mock_agent(dir: &Path, script: &str, env: BTreeMap<String, String>) -> AgentSpec {
1278 let path = dir.join("mock-talk-agent.sh");
1279 std::fs::write(&path, script).expect("write mock");
1280 AgentSpec {
1281 id: "mock".to_owned(),
1282 kind: AgentKind::Command,
1283 model: None,
1284 command: vec!["sh".to_owned(), path.to_string_lossy().into_owned()],
1285 extra_args: Vec::new(),
1286 env,
1287 prompt_delivery: None,
1288 }
1289 }
1290
1291 fn config(spec: AgentSpec) -> Config {
1292 Config {
1293 agents: vec![spec],
1294 graph: Graph {
1295 language: "en".to_owned(),
1296 ..Graph::default()
1297 },
1298 ..Config::default()
1299 }
1300 }
1301
1302 const REPLY: &str = "#!/bin/sh\ncat >/dev/null\nprintf '%s\\n' \"$MOCK_REPLY\"\n";
1304
1305 const BROKEN: &str = "#!/bin/sh\ncat >/dev/null\nexit 3\n";
1307
1308 const ECHO: &str = "#!/bin/sh\ncat\n";
1311
1312 fn env(reply: &str) -> BTreeMap<String, String> {
1313 BTreeMap::from([("MOCK_REPLY".to_owned(), reply.to_owned())])
1314 }
1315
1316 #[test]
1317 fn the_frozen_json_field_names_round_trip_through_disk() {
1318 let (tmp, talks) = store();
1319 let mut talk = Talk {
1320 schema: SCHEMA,
1321 id: "20260904-014455-ab12".to_owned(),
1322 repo: tmp.path().to_owned(),
1323 agent: "sonnet".to_owned(),
1324 status: TalkStatus::Open,
1325 turns: Vec::new(),
1326 pending: String::new(),
1327 pending_attachments: Vec::new(),
1328 created_at: Timestamp::now(),
1329 updated_at: Timestamp::now(),
1330 seat: SeatState::new(SEAT, "sonnet", 7),
1331 };
1332 talks.put(&mut talk).expect("put");
1333
1334 let raw = std::fs::read_to_string(talks.path_of(&talk.id)).expect("read back");
1335 let v: serde_json::Value = serde_json::from_str(&raw).expect("parse");
1336 for field in [
1337 "schema",
1338 "id",
1339 "repo",
1340 "agent",
1341 "status",
1342 "turns",
1343 "created_at",
1344 "updated_at",
1345 ] {
1346 assert!(v.get(field).is_some(), "missing field `{field}`");
1347 }
1348 assert_eq!(v["schema"], 1);
1349 assert_eq!(v["status"], "open");
1350
1351 let back = talks.get(&talk.id).expect("get");
1352 assert_eq!(back.id, talk.id);
1353 assert_eq!(back.status, TalkStatus::Open);
1354 }
1355
1356 #[test]
1357 fn opening_a_talk_takes_no_agent_turn() {
1358 let (tmp, talks) = store();
1359 let spec = mock_agent(tmp.path(), BROKEN, BTreeMap::new());
1363 let cfg = config(spec);
1364
1365 let talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1366 assert_eq!(talk.status, TalkStatus::Open);
1367 assert!(talk.turns.is_empty(), "nothing has been said yet");
1368
1369 let on_disk = talks.get(&talk.id).expect("get");
1370 assert_eq!(on_disk.turns.len(), 0);
1371 }
1372
1373 #[test]
1381 fn chatter_wins_when_set_and_falls_back_to_pick_s_default_order_otherwise() {
1382 let (tmp, talks) = store();
1383 let first_spec = mock_agent(tmp.path(), BROKEN, BTreeMap::new());
1384 let mut chatter_spec = mock_agent(tmp.path(), BROKEN, BTreeMap::new());
1385 chatter_spec.id = "chatter-mock".to_owned();
1386
1387 let mut cfg = Config {
1388 agents: vec![first_spec.clone(), chatter_spec.clone()],
1389 graph: Graph {
1390 language: "en".to_owned(),
1391 ..Graph::default()
1392 },
1393 ..Config::default()
1394 };
1395 cfg.roles.chatter = Some(chatter_spec.id.clone());
1396
1397 let talk =
1398 begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin with chatter set");
1399 assert_eq!(talk.agent, chatter_spec.id, "an explicit chatter must win");
1400
1401 cfg.roles.chatter = None;
1402 let fallback =
1403 begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin with chatter unset");
1404 assert_eq!(
1405 fallback.agent, first_spec.id,
1406 "unset chatter must fall back to agent::pick's own default order"
1407 );
1408 }
1409
1410 #[test]
1413 fn a_talk_recorded_without_attachments_still_reads() {
1414 let (tmp, talks) = store();
1415 let path = talks.path_of("20260904-014455-ab12");
1416 std::fs::create_dir_all(talks.root()).expect("talks dir");
1417 std::fs::write(
1418 &path,
1419 serde_json::json!({
1420 "schema": 1,
1421 "id": "20260904-014455-ab12",
1422 "repo": tmp.path(),
1423 "agent": "sonnet",
1424 "status": "open",
1425 "turns": [
1426 { "who": "operator", "body": "still there?",
1427 "at": Timestamp::now().to_string() },
1428 ],
1429 "created_at": Timestamp::now().to_string(),
1430 "updated_at": Timestamp::now().to_string(),
1431 "seat": SeatState::new(SEAT, "sonnet", 7),
1432 })
1433 .to_string(),
1434 )
1435 .expect("write pre-attachments talk");
1436
1437 let talk = talks.get("20260904-014455-ab12").expect("must still read");
1438 assert!(talk.turns[0].attachments.is_empty());
1439 }
1440
1441 #[test]
1442 fn queued_text_is_durable_combined_and_drained_as_one_operator_turn() {
1443 let (tmp, talks) = store();
1444 let cfg = config(mock_agent(tmp.path(), REPLY, env("reply")));
1445 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1446
1447 queue(&mut talk, &talks, "first", Vec::new()).expect("queue first");
1448 queue(&mut talk, &talks, "second", Vec::new()).expect("queue second");
1449 let saved = talks.get(&talk.id).expect("reload queued talk");
1450 assert_eq!(saved.pending, "first\n\nsecond");
1451 assert!(saved.turns.is_empty(), "a draft is not a transcript turn");
1452
1453 let drained = drain(&mut talk, &talks).expect("drain");
1454 assert_eq!(drained.as_deref(), Some("first\n\nsecond"));
1455 let saved = talks.get(&talk.id).expect("reload drained talk");
1456 assert!(saved.pending.is_empty());
1457 assert_eq!(saved.turns.len(), 1);
1458 assert_eq!(saved.turns[0].body, "first\n\nsecond");
1459 }
1460
1461 #[test]
1462 fn editing_a_queued_draft_preserves_its_attachments_and_rejects_a_stale_snapshot() {
1463 let (tmp, talks) = store();
1464 let cfg = config(mock_agent(tmp.path(), REPLY, env("reply")));
1465 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1466 let attachment = Attachment {
1467 id: "a".repeat(32),
1468 name: "shot.png".to_owned(),
1469 mime: "image/png".to_owned(),
1470 bytes: 3,
1471 };
1472
1473 queue(&mut talk, &talks, "first", vec![attachment.clone()]).expect("queue");
1474 assert!(
1475 edit_pending_text(
1476 &mut talk,
1477 &talks,
1478 "corrected",
1479 "first",
1480 std::slice::from_ref(&attachment.id),
1481 )
1482 .expect("edit")
1483 );
1484 let saved = talks.get(&talk.id).expect("reload edited draft");
1485 assert_eq!(saved.pending, "corrected");
1486 assert_eq!(saved.pending_attachments, vec![attachment]);
1487
1488 queue(&mut talk, &talks, "later", Vec::new()).expect("queue concurrent draft");
1489 assert!(
1490 !edit_pending_text(
1491 &mut talk,
1492 &talks,
1493 "stale edit",
1494 "corrected",
1495 &["a".repeat(32)],
1496 )
1497 .expect("stale edit is a conflict")
1498 );
1499 assert_eq!(
1500 talks.get(&talk.id).expect("reload after conflict").pending,
1501 "corrected\n\nlater"
1502 );
1503 assert!(
1504 !clear_pending_if_matches(&mut talk, &talks, "corrected", &["a".repeat(32)])
1505 .expect("stale clear is a conflict")
1506 );
1507 assert_eq!(
1508 talks
1509 .get(&talk.id)
1510 .expect("reload after stale clear")
1511 .pending,
1512 "corrected\n\nlater"
1513 );
1514 }
1515
1516 #[tokio::test]
1517 async fn a_reply_save_preserves_pending_accepted_while_the_cli_runs() {
1518 let (tmp, talks) = store();
1519 let slow = "#!/bin/sh\ncat >/dev/null\nsleep 0.1\nprintf reply\n";
1520 let cfg = config(mock_agent(tmp.path(), slow, BTreeMap::new()));
1521 let mut running = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1522 let id = running.id.clone();
1523 let first = record(&mut running, &talks, "first", Vec::new()).expect("record");
1524
1525 let response_talks = talks.clone();
1526 let response_cfg = cfg.clone();
1527 let reply = tokio::spawn(async move {
1528 respond(&mut running, &response_talks, &response_cfg, &first).await
1529 });
1530 tokio::time::sleep(std::time::Duration::from_millis(20)).await;
1531
1532 let mut queued = talks.get(&id).expect("queued handle");
1533 queue(&mut queued, &talks, "next", Vec::new()).expect("queue");
1534 reply.await.expect("join").expect("reply");
1535
1536 let saved = talks.get(&id).expect("reload");
1537 assert_eq!(saved.pending, "next");
1538 assert_eq!(saved.turns.len(), 2, "operator message and reply remain");
1539 }
1540
1541 #[tokio::test]
1542 async fn the_first_turn_carries_the_briefing_and_later_turns_do_not() {
1543 let (tmp, talks) = store();
1544 let spec = mock_agent(tmp.path(), ECHO, BTreeMap::new());
1545 let cfg = config(spec);
1546 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1547
1548 say(
1549 &mut talk,
1550 &talks,
1551 &cfg,
1552 "what does the queue module do?",
1553 Vec::new(),
1554 )
1555 .await
1556 .expect("first turn");
1557 let first_prompt = &talk.turns[1].body;
1558 assert!(first_prompt.contains("magi task add --solo"));
1559 assert!(first_prompt.contains("what does the queue module do?"));
1560
1561 say(&mut talk, &talks, &cfg, "and how is it locked?", Vec::new())
1562 .await
1563 .expect("second turn");
1564 let second_prompt = &talk.turns[3].body;
1565 assert!(
1566 !second_prompt.contains("magi task add --solo"),
1567 "the briefing is sent once, not on every turn: {second_prompt}"
1568 );
1569 assert!(second_prompt.contains("and how is it locked?"));
1570 }
1571
1572 #[tokio::test]
1573 async fn say_appends_the_operator_turn_then_the_agent_turn() {
1574 let (tmp, talks) = store();
1575 let spec = mock_agent(tmp.path(), REPLY, env("go ahead"));
1576 let cfg = config(spec);
1577 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1578
1579 say(
1580 &mut talk,
1581 &talks,
1582 &cfg,
1583 "can I rename this function?",
1584 Vec::new(),
1585 )
1586 .await
1587 .expect("say");
1588
1589 assert_eq!(talk.turns.len(), 2);
1590 assert_eq!(talk.turns[0].who, Who::Operator);
1591 assert_eq!(talk.turns[0].body, "can I rename this function?");
1592 assert_eq!(talk.turns[1].who, Who::Agent);
1593 assert_eq!(talk.turns[1].body, "go ahead");
1594 assert_eq!(talks.get(&talk.id).expect("get").turns, talk.turns);
1595 }
1596
1597 #[tokio::test]
1598 async fn a_failed_turn_keeps_the_operator_message_and_says_what_happened() {
1599 let (tmp, talks) = store();
1600 let spec = mock_agent(tmp.path(), BROKEN, BTreeMap::new());
1601 let cfg = config(spec);
1602 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1603
1604 let err = say(&mut talk, &talks, &cfg, "check the tests", Vec::new())
1605 .await
1606 .expect_err("a turn with no answer is an error");
1607 assert!(err.to_string().contains("no answer"), "{err}");
1608
1609 let on_disk = talks.get(&talk.id).expect("get");
1610 assert_eq!(on_disk.turns.len(), 2);
1611 assert_eq!(on_disk.turns[0].body, "check the tests");
1612 let note = &on_disk.turns[1];
1613 assert_eq!(note.who, Who::Agent);
1614 assert!(note.body.starts_with(MAGI_NOTE), "{}", note.body);
1615 assert!(note.body.contains("your message is saved"));
1616 }
1617
1618 #[tokio::test]
1624 async fn a_passing_write_failure_while_saving_the_reply_does_not_lose_it() {
1625 let (tmp, talks) = store();
1626 let spec = mock_agent(tmp.path(), REPLY, env("go ahead"));
1627 let cfg = config(spec);
1628 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1629
1630 let text =
1631 record(&mut talk, &talks, "can I rename this function?", Vec::new()).expect("record");
1632 failpoint::force_put_failures(PUT_RETRIES - 1);
1635 respond(&mut talk, &talks, &cfg, &text)
1636 .await
1637 .expect("respond must survive a write failure its own retries can outlast");
1638
1639 assert_eq!(talk.turns.len(), 2);
1640 assert_eq!(talk.turns[1].who, Who::Agent);
1641 assert_eq!(talk.turns[1].body, "go ahead");
1642 let on_disk = talks.get(&talk.id).expect("get");
1643 assert_eq!(
1644 on_disk.turns, talk.turns,
1645 "the reply must reach disk despite the early write failures"
1646 );
1647 }
1648
1649 #[tokio::test]
1655 async fn a_persistent_write_failure_while_saving_the_reply_is_never_silent() {
1656 let (tmp, talks) = store();
1657 let spec = mock_agent(tmp.path(), REPLY, env("go ahead"));
1658 let cfg = config(spec);
1659 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1660
1661 let text = record(&mut talk, &talks, "check the tests", Vec::new()).expect("record");
1662 failpoint::force_put_failures(PUT_RETRIES);
1667 let err = respond(&mut talk, &talks, &cfg, &text)
1668 .await
1669 .expect_err("a reply that cannot be saved must be reported, not swallowed");
1670 assert!(err.to_string().contains("could not be saved"), "{err}");
1671
1672 let on_disk = talks.get(&talk.id).expect("get");
1673 assert_eq!(
1674 on_disk.turns.len(),
1675 2,
1676 "the operator turn plus a visible note"
1677 );
1678 assert_eq!(on_disk.turns[0].body, "check the tests");
1679 let note = &on_disk.turns[1];
1680 assert_eq!(note.who, Who::Agent);
1681 assert!(note.body.starts_with(MAGI_NOTE), "{}", note.body);
1682 assert!(
1683 note.body.contains("could not be saved"),
1684 "the operator must be told the reply is missing, not left staring \
1685 at a gap with no explanation: {}",
1686 note.body
1687 );
1688 assert_eq!(
1689 talk.turns, on_disk.turns,
1690 "the in-memory talk must match what actually landed on disk"
1691 );
1692
1693 let artifacts = talks.artifacts_of(&talk.id);
1696 let stash = std::fs::read_dir(&artifacts)
1697 .expect("artifacts dir")
1698 .filter_map(|e| e.ok())
1699 .find(|e| e.file_name().to_string_lossy().ends_with("-lost.txt"))
1700 .expect("a stash file for the lost reply");
1701 let stashed = std::fs::read_to_string(stash.path()).expect("read stash");
1702 assert_eq!(stashed, "go ahead");
1703
1704 assert_eq!(
1712 on_disk.seat.turns, 1,
1713 "the note's write must carry the turn the CLI actually took"
1714 );
1715 assert_eq!(
1716 on_disk.seat.claude_session, talk.seat.claude_session,
1717 "the session id handed to the CLI must survive the failed reply"
1718 );
1719 assert_eq!(on_disk.seat.captured_session, talk.seat.captured_session);
1720 assert!(
1721 agent::has_session(AgentKind::Command, &on_disk.seat, cfg.graph.sessions),
1722 "the next turn must resume, not open the same session id twice"
1723 );
1724 }
1725
1726 #[tokio::test]
1731 async fn a_write_failure_that_also_loses_the_note_still_reports_it() {
1732 let (tmp, talks) = store();
1733 let spec = mock_agent(tmp.path(), REPLY, env("go ahead"));
1734 let cfg = config(spec);
1735 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1736
1737 let text = record(&mut talk, &talks, "check the tests", Vec::new()).expect("record");
1738 failpoint::force_put_failures(PUT_RETRIES * 2);
1741 let err = respond(&mut talk, &talks, &cfg, &text)
1742 .await
1743 .expect_err("neither the reply nor the note could be saved");
1744 assert!(err.to_string().contains("could not be saved"), "{err}");
1745
1746 assert_eq!(talk.turns.len(), 1, "only the operator's own turn");
1747 let on_disk = talks.get(&talk.id).expect("get");
1748 assert_eq!(on_disk.turns.len(), 1);
1749
1750 assert_eq!(
1760 on_disk.seat.turns, 0,
1761 "an unwritable file cannot record the turn the CLI took"
1762 );
1763 assert_eq!(
1764 talk.seat.turns, 1,
1765 "the in-memory seat still reports the turn the CLI actually took"
1766 );
1767 assert_eq!(
1768 on_disk.seat.claude_session, talk.seat.claude_session,
1769 "the session id was minted at `begin` and never changes here"
1770 );
1771 }
1772
1773 #[tokio::test]
1777 async fn attachments_reach_the_prompt_and_an_empty_body_is_still_a_turn() {
1778 let (tmp, talks) = store();
1779 let spec = mock_agent(tmp.path(), ECHO, BTreeMap::new());
1780 let cfg = config(spec);
1781 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1782
1783 let att = talks
1784 .put_attachment(
1785 &talk.id,
1786 "image/png",
1787 "screenshot.png",
1788 b"pretend-png-bytes",
1789 )
1790 .expect("put attachment");
1791
1792 say(&mut talk, &talks, &cfg, "", vec![att.clone()])
1793 .await
1794 .expect("an empty body with an attachment is still a turn");
1795
1796 let operator_turn = &talk.turns[0];
1797 assert_eq!(operator_turn.who, Who::Operator);
1798 assert_eq!(operator_turn.body, "");
1799 assert_eq!(operator_turn.attachments, vec![att.clone()]);
1800
1801 let prompt = &talk.turns[1].body;
1802 let expected_path = talks
1803 .attachments_dir(&talk.id)
1804 .join(format!("{}.png", att.id));
1805 assert!(
1806 prompt.contains(&expected_path.display().to_string()),
1807 "the agent must be told the attachment's absolute path: {prompt}"
1808 );
1809 assert!(prompt.contains("image/png"), "and its mime: {prompt}");
1810 }
1811
1812 #[test]
1821 fn attachment_path_is_absolute_even_when_the_store_root_is_relative() {
1822 let talks = Talks::at(PathBuf::from("relative-talks-root-for-this-test"));
1823 let att = Attachment {
1824 id: "0".repeat(32),
1825 name: "shot.png".to_owned(),
1826 mime: "image/png".to_owned(),
1827 bytes: 3,
1828 };
1829 let path = talks
1830 .attachment_path("some-talk-id", &att)
1831 .expect("a supported mime always yields a path");
1832 assert!(
1833 path.is_absolute(),
1834 "must be absolute even off a relative store root: {}",
1835 path.display()
1836 );
1837 }
1838
1839 #[tokio::test]
1840 async fn a_turn_past_the_configured_talk_timeout_is_reported_with_that_timeout() {
1841 let (tmp, talks) = store();
1846 let slow = mock_agent(
1847 tmp.path(),
1848 "#!/bin/sh\ncat >/dev/null\nsleep 2\n",
1849 BTreeMap::new(),
1850 );
1851 let mut cfg = config(slow);
1852 cfg.graph.timeout_talk = 1;
1853 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1854
1855 let err = say(&mut talk, &talks, &cfg, "check the tests", Vec::new())
1856 .await
1857 .expect_err("a turn that never answers is an error");
1858 assert!(
1859 err.to_string().contains("did not answer within 1s"),
1860 "{err}"
1861 );
1862
1863 let on_disk = talks.get(&talk.id).expect("get");
1864 let note = on_disk.turns.last().expect("a note turn was recorded");
1865 assert!(
1866 note.body.contains("did not answer within 1s"),
1867 "the transcript must show the configured timeout: {}",
1868 note.body
1869 );
1870 }
1871
1872 #[test]
1873 fn closing_is_idempotent_and_a_closed_talk_takes_no_more_turns() {
1874 let (tmp, talks) = store();
1875 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
1876 let cfg = config(spec);
1877 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1878
1879 close(&mut talk, &talks).expect("close");
1880 assert_eq!(talk.status, TalkStatus::Closed);
1881 close(&mut talk, &talks).expect("closing twice is not an error");
1882
1883 let err =
1884 record(&mut talk, &talks, "still there?", Vec::new()).expect_err("closed talks refuse");
1885 assert!(err.to_string().contains("closed"));
1886 let _ = &cfg; }
1888
1889 #[tokio::test]
1890 async fn a_close_that_lands_while_a_turn_is_in_flight_is_not_undone_by_the_reply() {
1891 let (tmp, talks) = store();
1892 let spec = mock_agent(tmp.path(), REPLY, env("here you go"));
1893 let cfg = config(spec);
1894 let mut in_flight = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1897
1898 let mut closed_elsewhere = talks.get(&in_flight.id).expect("reread");
1902 close(&mut closed_elsewhere, &talks).expect("close");
1903 assert_eq!(
1904 talks.get(&in_flight.id).expect("reread").status,
1905 TalkStatus::Closed,
1906 "the close landed on disk before the turn finished"
1907 );
1908
1909 assert_eq!(in_flight.status, TalkStatus::Open);
1913 respond(&mut in_flight, &talks, &cfg, "one more question")
1914 .await
1915 .expect("the turn itself still completes");
1916
1917 let on_disk = talks.get(&in_flight.id).expect("reread");
1918 assert_eq!(
1919 on_disk.status,
1920 TalkStatus::Closed,
1921 "a close must stick even when a turn that started before it finishes after it"
1922 );
1923 assert!(
1926 on_disk.turns.iter().any(|t| t.body == "here you go"),
1927 "the in-flight turn's own reply is still recorded: {:?}",
1928 on_disk.turns
1929 );
1930 }
1931
1932 #[test]
1933 fn a_close_that_lands_before_record_is_called_is_not_undone_by_it() {
1934 let (tmp, talks) = store();
1935 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
1936 let cfg = config(spec);
1937 let mut stale = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1940
1941 let mut closed_elsewhere = talks.get(&stale.id).expect("reread");
1944 close(&mut closed_elsewhere, &talks).expect("close");
1945 assert_eq!(
1946 talks.get(&stale.id).expect("reread").status,
1947 TalkStatus::Closed,
1948 "the close landed on disk before record was called"
1949 );
1950
1951 assert_eq!(stale.status, TalkStatus::Open);
1955 let err = record(&mut stale, &talks, "still there?", Vec::new())
1956 .expect_err("a close that landed first must be honored, not overwritten");
1957 assert!(err.to_string().contains("closed"));
1958
1959 let on_disk = talks.get(&stale.id).expect("reread");
1960 assert_eq!(
1961 on_disk.status,
1962 TalkStatus::Closed,
1963 "record must not resurrect a conversation closed while its snapshot was stale"
1964 );
1965 assert!(
1966 on_disk.turns.is_empty(),
1967 "the rejected turn must not have been appended: {:?}",
1968 on_disk.turns
1969 );
1970 let _ = &cfg; }
1972
1973 #[test]
1974 fn close_blocks_on_records_guard_rather_than_interleaving_with_it() {
1975 let (tmp, talks) = store();
1976 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
1977 let cfg = config(spec);
1978 let talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
1979
1980 let held = talks.guard();
1984
1985 let talks2 = talks.clone();
1986 let id = talk.id.clone();
1987 let closing = std::thread::spawn(move || {
1988 let mut talk = talks2.get(&id).expect("get");
1989 close(&mut talk, &talks2).expect("close");
1990 });
1991
1992 std::thread::sleep(Duration::from_millis(50));
1993 assert!(
1994 !closing.is_finished(),
1995 "close must wait for the guard, not read and write while it is held - \
1996 a re-read alone narrows this window without closing it"
1997 );
1998
1999 drop(held);
2000 closing.join().expect("close thread panicked");
2001
2002 assert_eq!(
2003 talks.get(&talk.id).expect("reread").status,
2004 TalkStatus::Closed,
2005 "once the guard is free, close still lands"
2006 );
2007 let _ = &cfg; }
2009
2010 #[test]
2011 fn reopening_a_closed_talk_lets_it_take_turns_again_and_reopening_twice_is_not_an_error() {
2012 let (tmp, talks) = store();
2013 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
2014 let cfg = config(spec);
2015 let mut talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2016
2017 close(&mut talk, &talks).expect("close");
2018 assert_eq!(talk.status, TalkStatus::Closed);
2019
2020 reopen(&mut talk, &talks).expect("reopen");
2021 assert_eq!(talk.status, TalkStatus::Open);
2022 assert_eq!(
2023 talks.get(&talk.id).expect("reread").status,
2024 TalkStatus::Open
2025 );
2026
2027 reopen(&mut talk, &talks).expect("reopening an open talk is not an error");
2029 assert_eq!(talk.status, TalkStatus::Open);
2030
2031 record(&mut talk, &talks, "one more thing", Vec::new())
2032 .expect("a reopened talk takes turns again");
2033 let _ = &cfg; }
2035
2036 #[test]
2037 fn removing_a_talk_deletes_its_record_and_artifacts_and_refuses_an_unknown_id() {
2038 let (tmp, talks) = store();
2039 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
2040 let cfg = config(spec);
2041 let talk = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2042
2043 let artifacts = talks.artifacts_of(&talk.id);
2044 std::fs::create_dir_all(&artifacts).expect("create artifacts dir");
2045 std::fs::write(artifacts.join("turn-1.txt"), "hello").expect("write artifact");
2046
2047 talks.remove(&talk.id).expect("remove");
2048 assert!(!talks.path_of(&talk.id).is_file(), "the record is gone");
2049 assert!(!artifacts.is_dir(), "the artifacts directory is gone");
2050 assert!(
2051 talks.get(&talk.id).is_err(),
2052 "a removed talk cannot be read back"
2053 );
2054
2055 let err = talks
2056 .remove("nonexistent-id")
2057 .expect_err("unknown id refused");
2058 assert!(err.to_string().contains("no talk matches"), "{err}");
2059 let _ = &cfg; }
2061
2062 #[tokio::test]
2063 async fn a_delete_that_lands_while_a_turn_is_in_flight_is_not_undone_by_the_reply() {
2064 let (tmp, talks) = store();
2065 let spec = mock_agent(tmp.path(), REPLY, env("here you go"));
2066 let cfg = config(spec);
2067 let mut in_flight = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2070
2071 talks.remove(&in_flight.id).expect("remove");
2072 assert!(
2073 talks.get(&in_flight.id).is_err(),
2074 "the delete landed on disk before the turn finished"
2075 );
2076
2077 respond(&mut in_flight, &talks, &cfg, "one more question")
2080 .await
2081 .expect("the turn itself still completes rather than erroring");
2082
2083 assert!(
2084 talks.get(&in_flight.id).is_err(),
2085 "a delete must stick even when a turn that started before it finishes after it"
2086 );
2087 }
2088
2089 #[test]
2090 fn a_delete_that_lands_before_record_is_called_is_not_undone_by_it() {
2091 let (tmp, talks) = store();
2092 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
2093 let cfg = config(spec);
2094 let mut stale = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2097
2098 talks.remove(&stale.id).expect("remove");
2099
2100 let err = record(&mut stale, &talks, "still there?", Vec::new())
2104 .expect_err("a delete that landed first must be honored, not overwritten");
2105 assert!(err.to_string().contains("deleted"), "{err}");
2106
2107 assert!(
2108 talks.get(&stale.id).is_err(),
2109 "record must not resurrect a conversation deleted while its snapshot was stale"
2110 );
2111 let _ = &cfg; }
2113
2114 #[test]
2115 fn a_delete_that_lands_before_close_is_called_is_not_undone_by_it() {
2116 let (tmp, talks) = store();
2117 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
2118 let cfg = config(spec);
2119 let mut stale = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2122
2123 talks.remove(&stale.id).expect("remove");
2124
2125 let err = close(&mut stale, &talks)
2129 .expect_err("a delete that landed first must be honored, not overwritten");
2130 assert!(err.to_string().contains("deleted"), "{err}");
2131
2132 assert!(
2133 talks.get(&stale.id).is_err(),
2134 "close must not resurrect a conversation deleted while its snapshot was stale"
2135 );
2136 let _ = &cfg; }
2138
2139 #[test]
2140 fn a_delete_that_lands_before_reopen_is_called_is_not_undone_by_it() {
2141 let (tmp, talks) = store();
2142 let spec = mock_agent(tmp.path(), REPLY, env("hi"));
2143 let cfg = config(spec);
2144 let mut stale = begin(&talks, &cfg, tmp.path().to_owned(), None).expect("begin");
2147 close(&mut stale, &talks).expect("close");
2148
2149 talks.remove(&stale.id).expect("remove");
2150
2151 let err = reopen(&mut stale, &talks)
2155 .expect_err("a delete that landed first must be honored, not overwritten");
2156 assert!(err.to_string().contains("deleted"), "{err}");
2157
2158 assert!(
2159 talks.get(&stale.id).is_err(),
2160 "reopen must not resurrect a conversation deleted while its snapshot was stale"
2161 );
2162 let _ = &cfg; }
2164
2165 #[test]
2166 fn list_puts_open_talks_before_closed_ones() {
2167 let (tmp, talks) = store();
2168 let make = |id: &str, status: TalkStatus| {
2169 let mut t = Talk {
2170 schema: SCHEMA,
2171 id: id.to_owned(),
2172 repo: tmp.path().to_owned(),
2173 agent: "mock".to_owned(),
2174 status,
2175 turns: Vec::new(),
2176 pending: String::new(),
2177 pending_attachments: Vec::new(),
2178 created_at: Timestamp::now(),
2179 updated_at: Timestamp::now(),
2180 seat: SeatState::new(SEAT, "mock", 7),
2181 };
2182 talks.put(&mut t).expect("put");
2183 };
2184 make("20260901-000000-0001", TalkStatus::Open);
2185 make("20260902-000000-0002", TalkStatus::Open);
2186 make("20260903-000000-0003", TalkStatus::Closed);
2187
2188 let ids: Vec<String> = talks.list().into_iter().map(|t| t.id).collect();
2189 assert_eq!(
2190 ids,
2191 [
2192 "20260902-000000-0002",
2193 "20260901-000000-0001",
2194 "20260903-000000-0003"
2195 ]
2196 );
2197 assert_eq!(talks.count_open(), 2);
2198 }
2199
2200 #[test]
2201 fn tasks_of_finds_only_this_talks_own_tasks() {
2202 let dir = tempfile::tempdir().expect("tempdir");
2203 let queue = Queue::at(dir.path().join("queue"));
2204
2205 let mut mine = Task::new(
2206 "rework the loader".to_owned(),
2207 "rework the loader".to_owned(),
2208 PathBuf::from("/repo"),
2209 Source::Agent {
2210 run: "20260904-014455-ab12".to_owned(),
2211 node: "chat".to_owned(),
2212 },
2213 );
2214 queue.put(&mut mine).expect("put mine");
2215
2216 let mut theirs = Task::new(
2217 "unrelated".to_owned(),
2218 "unrelated".to_owned(),
2219 PathBuf::from("/repo"),
2220 Source::Agent {
2221 run: "20260904-090000-zz99".to_owned(),
2222 node: "implement".to_owned(),
2223 },
2224 );
2225 queue.put(&mut theirs).expect("put theirs");
2226
2227 let mut human = Task::new(
2228 "typed by hand".to_owned(),
2229 "typed by hand".to_owned(),
2230 PathBuf::from("/repo"),
2231 Source::Human,
2232 );
2233 queue.put(&mut human).expect("put human");
2234
2235 let found = tasks_of(&queue, "20260904-014455-ab12");
2236 assert_eq!(found.len(), 1);
2237 assert_eq!(found[0].id, mine.id);
2238 }
2239
2240 #[test]
2241 fn the_briefing_names_solo_task_add() {
2242 let brief = briefing(Path::new("/repo"), "en", false);
2243 assert!(brief.contains("magi task add --solo"));
2244 assert!(brief.contains("/repo"));
2245 assert!(!brief.contains("Hold this conversation in"));
2246 }
2247
2248 #[test]
2254 fn the_briefing_explains_targeting_a_different_repository_by_name() {
2255 let brief = briefing(Path::new("/repo"), "en", false);
2256 assert!(brief.contains("--repo does not have to be a full path"));
2257 assert!(brief.contains("owner/repo"));
2258 assert!(brief.contains("magi repos"));
2259 assert!(brief.contains("ask the operator"));
2260 }
2261
2262 #[test]
2263 fn the_briefing_names_the_language_when_it_is_not_english() {
2264 let brief = briefing(Path::new("/repo"), "Japanese", false);
2265 assert!(brief.contains("Hold this conversation in Japanese"));
2266 }
2267
2268 #[test]
2269 fn the_briefing_forbids_writes_unless_the_repository_opted_in() {
2270 let read_only = briefing(Path::new("/repo"), "en", false);
2271 assert!(read_only.contains("Do not write files"));
2272 assert!(!read_only.contains("allow_write"));
2273
2274 let writable = briefing(Path::new("/repo"), "en", true);
2275 assert!(!writable.contains("Do not write files"));
2276 assert!(writable.contains("allow_write = true"));
2277 assert!(writable.contains("magi task add --solo"));
2280 assert!(writable.contains("say plainly what you"));
2281 }
2282}