1use std::collections::HashMap;
2use std::path::{Path, PathBuf};
3
4use serde::Serialize;
5use zag_agent::builder::AgentBuilder;
6
7use crate::create::{get_zag_help, get_zag_orch_reference};
8use crate::error::ZigError;
9use crate::pack;
10use crate::prompt;
11use crate::run;
12use crate::workflow::parser;
13
14#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
18pub enum WorkflowKind {
19 Plain,
20 Zipped,
21}
22
23impl WorkflowKind {
24 fn from_path(path: &Path) -> Self {
25 match path.extension().and_then(|s| s.to_str()) {
26 Some("zwfz") => WorkflowKind::Zipped,
27 _ => WorkflowKind::Plain,
28 }
29 }
30}
31
32#[derive(Debug, Serialize)]
35pub struct UpdateParams {
36 pub system_prompt: String,
37 pub initial_prompt: String,
38 pub original_path: PathBuf,
39 pub staging_path: PathBuf,
40 pub kind: WorkflowKind,
41 pub session_name: String,
42 pub session_tag: String,
43 #[serde(skip)]
47 pub _staging_dir: tempfile::TempDir,
48}
49
50fn build_system_prompt(zag_help: &str, zag_orch: &str, examples_reference: &str) -> String {
51 let vars = HashMap::from([
52 ("zwf_format_spec", prompt::templates::config_sidecar()),
53 ("zag_help", zag_help),
54 ("zag_orch", zag_orch),
55 ("examples_reference", examples_reference),
56 ]);
57 prompt::render(prompt::templates::update(), &vars)
58}
59
60pub fn prepare_update(workflow: &str) -> Result<UpdateParams, ZigError> {
64 if let Err(e) = prompt::write_examples_to_global_dir() {
66 eprintln!("Warning: could not write example files: {e}");
67 }
68
69 let original_path = run::resolve_workflow_path(workflow)?;
70 let kind = WorkflowKind::from_path(&original_path);
71
72 let staging_dir = tempfile::TempDir::new()
73 .map_err(|e| ZigError::Io(format!("failed to create staging directory: {e}")))?;
74
75 let staging_path = match kind {
76 WorkflowKind::Plain => {
77 let file_name = original_path
78 .file_name()
79 .ok_or_else(|| ZigError::Io("workflow path has no file name".into()))?;
80 let dest = staging_dir.path().join(file_name);
81 std::fs::copy(&original_path, &dest).map_err(|e| {
82 ZigError::Io(format!(
83 "failed to copy {} to staging: {e}",
84 original_path.display()
85 ))
86 })?;
87 dest
88 }
89 WorkflowKind::Zipped => {
90 parser::extract_zip(&original_path, staging_dir.path())?;
91 let toml_files = parser::find_workflow_files(staging_dir.path())?;
92 match toml_files.len() {
93 0 => {
94 return Err(ZigError::Parse(
95 "archive contains no .toml or .zwf workflow file".into(),
96 ));
97 }
98 1 => toml_files.into_iter().next().unwrap(),
99 n => {
100 return Err(ZigError::Parse(format!(
101 "archive contains {n} workflow files (expected exactly one)"
102 )));
103 }
104 }
105 }
106 };
107
108 parser::parse_file(&staging_path)?;
110
111 let zag_help = get_zag_help();
112 let zag_orch = get_zag_orch_reference();
113 let examples_reference = prompt::examples_reference_block();
114 let system_prompt = build_system_prompt(&zag_help, &zag_orch, &examples_reference);
115
116 let initial_prompt = format!(
117 "I want to update the workflow file at `{}`. Please read it first, \
118 then help me make the changes I describe. Edit the file in place at \
119 that exact path — do not rename, move, or copy it.",
120 staging_path.display()
121 );
122
123 Ok(UpdateParams {
124 system_prompt,
125 initial_prompt,
126 original_path,
127 staging_path,
128 kind,
129 session_name: "zig-update".to_string(),
130 session_tag: "zig-workflow-update".to_string(),
131 _staging_dir: staging_dir,
132 })
133}
134
135pub async fn run_update(workflow: &str) -> Result<(), ZigError> {
145 let params = prepare_update(workflow)?;
146
147 AgentBuilder::new()
148 .system_prompt(¶ms.system_prompt)
149 .name(¶ms.session_name)
150 .tag(¶ms.session_tag)
151 .run(Some(¶ms.initial_prompt))
152 .await
153 .map_err(|e| ZigError::Zag(format!("failed to run agent: {e}")))?;
154
155 if params.staging_path.exists() {
158 match parser::parse_file(¶ms.staging_path) {
159 Ok(workflow) => {
160 if let Err(errors) = crate::workflow::validate::validate(&workflow) {
161 eprintln!("Warning: updated workflow has validation issues:");
162 for e in &errors {
163 eprintln!(" - {e}");
164 }
165 }
166 }
167 Err(e) => {
168 eprintln!("Warning: could not parse updated file: {e}");
169 }
170 }
171 } else {
172 return Err(ZigError::Io(format!(
173 "expected updated workflow at {} but the file is missing — \
174 did the agent move or rename it?",
175 params.staging_path.display()
176 )));
177 }
178
179 commit_update(¶ms)?;
180
181 println!("updated {}", params.original_path.display());
182 Ok(())
183}
184
185fn commit_update(params: &UpdateParams) -> Result<(), ZigError> {
189 match params.kind {
190 WorkflowKind::Plain => {
191 let tmp = sibling_temp_path(¶ms.original_path)?;
192 std::fs::copy(¶ms.staging_path, &tmp).map_err(|e| {
193 ZigError::Io(format!(
194 "failed to write updated workflow to {}: {e}",
195 tmp.display()
196 ))
197 })?;
198 std::fs::rename(&tmp, ¶ms.original_path).map_err(|e| {
199 ZigError::Io(format!(
200 "failed to replace {}: {e}",
201 params.original_path.display()
202 ))
203 })?;
204 }
205 WorkflowKind::Zipped => {
206 let tmp = sibling_temp_path(¶ms.original_path)?;
207 pack::zip_directory(params._staging_dir.path(), &tmp)?;
208 std::fs::rename(&tmp, ¶ms.original_path).map_err(|e| {
209 ZigError::Io(format!(
210 "failed to replace {}: {e}",
211 params.original_path.display()
212 ))
213 })?;
214 }
215 }
216 Ok(())
217}
218
219fn sibling_temp_path(target: &Path) -> Result<PathBuf, ZigError> {
222 let parent = target
223 .parent()
224 .ok_or_else(|| ZigError::Io("workflow path has no parent directory".into()))?;
225 let file_name = target
226 .file_name()
227 .ok_or_else(|| ZigError::Io("workflow path has no file name".into()))?
228 .to_string_lossy();
229 let pid = std::process::id();
230 Ok(parent.join(format!(".{file_name}.update.{pid}.tmp")))
231}
232
233#[cfg(test)]
234#[path = "update_tests.rs"]
235mod tests;