prodigy 0.4.4

Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
//! Builder for creating immutable environment contexts
//!
//! Provides a fluent API for constructing `ImmutableEnvironmentContext` instances
//! with all necessary configuration.
//!
//! # Example
//!
//! ```
//! use std::path::PathBuf;
//! use std::collections::HashMap;
//! use prodigy::cook::environment::EnvironmentContextBuilder;
//!
//! let mut vars = HashMap::new();
//! vars.insert("KEY1".to_string(), "value1".to_string());
//! vars.insert("KEY2".to_string(), "value2".to_string());
//!
//! let context = EnvironmentContextBuilder::new(PathBuf::from("/worktree"))
//!     .with_env("CUSTOM".to_string(), "value".to_string())
//!     .with_env_vars(vars)
//!     .with_secret("API_KEY".to_string())
//!     .with_profile("production".to_string())
//!     .build();
//! ```

use super::config::{EnvValue, EnvironmentConfig};
use super::context::ImmutableEnvironmentContext;
use anyhow::Result;
use std::collections::HashMap;
use std::path::PathBuf;

/// Builder for creating immutable EnvironmentContext
///
/// This builder provides a fluent API for constructing environment contexts
/// with incremental configuration. All methods consume and return `self`,
/// allowing for method chaining.
///
/// # Example
///
/// ```
/// use std::path::PathBuf;
/// use prodigy::cook::environment::EnvironmentContextBuilder;
///
/// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
///     .with_env("VAR".to_string(), "value".to_string())
///     .with_secret("SECRET_KEY".to_string())
///     .build();
/// ```
pub struct EnvironmentContextBuilder {
    base_working_dir: PathBuf,
    env_vars: HashMap<String, String>,
    secret_keys: Vec<String>,
    profile: Option<String>,
}

impl EnvironmentContextBuilder {
    /// Create new builder with base working directory
    ///
    /// The builder starts with inherited environment variables from the current process.
    ///
    /// # Arguments
    ///
    /// * `base_working_dir` - The base working directory for command execution
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let builder = EnvironmentContextBuilder::new(PathBuf::from("/project"));
    /// ```
    pub fn new(base_working_dir: PathBuf) -> Self {
        Self {
            base_working_dir,
            env_vars: std::env::vars().collect(), // Inherit current env
            secret_keys: Vec::new(),
            profile: None,
        }
    }

    /// Add a single environment variable
    ///
    /// # Arguments
    ///
    /// * `key` - Variable name
    /// * `value` - Variable value
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_env("DATABASE_URL".to_string(), "postgres://localhost/db".to_string())
    ///     .build();
    /// ```
    pub fn with_env(mut self, key: String, value: String) -> Self {
        self.env_vars.insert(key, value);
        self
    }

    /// Add multiple environment variables
    ///
    /// # Arguments
    ///
    /// * `vars` - HashMap of variable names to values
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use std::collections::HashMap;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let mut vars = HashMap::new();
    /// vars.insert("A".to_string(), "1".to_string());
    /// vars.insert("B".to_string(), "2".to_string());
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_env_vars(vars)
    ///     .build();
    /// ```
    pub fn with_env_vars(mut self, vars: HashMap<String, String>) -> Self {
        self.env_vars.extend(vars);
        self
    }

    /// Mark a key as secret (for masking in logs)
    ///
    /// # Arguments
    ///
    /// * `key` - Environment variable key to mark as secret
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_env("API_KEY".to_string(), "secret123".to_string())
    ///     .with_secret("API_KEY".to_string())
    ///     .build();
    ///
    /// assert!(context.is_secret("API_KEY"));
    /// ```
    pub fn with_secret(mut self, key: String) -> Self {
        if !self.secret_keys.contains(&key) {
            self.secret_keys.push(key);
        }
        self
    }

    /// Add multiple secret keys
    ///
    /// # Arguments
    ///
    /// * `keys` - Vec of environment variable keys to mark as secrets
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_secrets(vec!["API_KEY".to_string(), "TOKEN".to_string()])
    ///     .build();
    /// ```
    pub fn with_secrets(mut self, keys: Vec<String>) -> Self {
        for key in keys {
            if !self.secret_keys.contains(&key) {
                self.secret_keys.push(key);
            }
        }
        self
    }

    /// Set active profile
    ///
    /// # Arguments
    ///
    /// * `profile` - Profile name (e.g., "production", "staging", "development")
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_profile("production".to_string())
    ///     .build();
    ///
    /// assert_eq!(context.profile(), Some("production"));
    /// ```
    pub fn with_profile(mut self, profile: String) -> Self {
        self.profile = Some(profile);
        self
    }

    /// Apply global environment configuration
    ///
    /// Loads environment variables, profiles, and secrets from the global config.
    ///
    /// # Arguments
    ///
    /// * `config` - Global environment configuration
    ///
    /// # Returns
    ///
    /// Result containing the updated builder or an error
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::{EnvironmentConfig, EnvironmentContextBuilder};
    ///
    /// let config = EnvironmentConfig::default();
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_config(&config)
    ///     .unwrap()
    ///     .build();
    /// ```
    pub fn with_config(mut self, config: &EnvironmentConfig) -> Result<Self> {
        // Apply profile if specified
        if let Some(profile_name) = &config.active_profile {
            self = self.with_profile(profile_name.clone());

            if let Some(profile) = config.profiles.get(profile_name) {
                self = self.apply_profile_vars(&profile.env)?;
            }
        }

        // Apply global env vars from config
        for (key, value) in &config.global_env {
            // Resolve EnvValue to String (static values only for now)
            // Dynamic and conditional values would require async/context
            if let EnvValue::Static(s) = value {
                self = self.with_env(key.clone(), s.clone());
            }
            // Note: Dynamic and Conditional env values are not yet supported here
            // This would require passing workflow context and making this async
        }

        // Mark secrets
        for key in config.secrets.keys() {
            self = self.with_secret(key.clone());
        }

        Ok(self)
    }

    /// Apply environment profile variables
    ///
    /// Internal helper to apply variables from a profile.
    fn apply_profile_vars(mut self, vars: &HashMap<String, String>) -> Result<Self> {
        for (key, value) in vars {
            self = self.with_env(key.clone(), value.clone());
        }
        Ok(self)
    }

    /// Inject positional arguments as ARG_N environment variables
    ///
    /// Converts positional arguments passed via `--args` into environment variables
    /// named `ARG_1`, `ARG_2`, etc. This makes positional arguments available
    /// consistently across all workflow phases (setup, map, reduce).
    ///
    /// # Arguments
    ///
    /// * `args` - Slice of positional argument strings
    ///
    /// # Returns
    ///
    /// Builder with ARG_N variables injected
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let args = vec!["file.txt".to_string(), "output.json".to_string()];
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_positional_args(&args)
    ///     .build();
    ///
    /// assert_eq!(context.env_vars().get("ARG_1"), Some(&"file.txt".to_string()));
    /// assert_eq!(context.env_vars().get("ARG_2"), Some(&"output.json".to_string()));
    /// ```
    ///
    /// # Spec 163
    ///
    /// This method implements automatic positional argument propagation as described
    /// in Specification 163. It ensures that positional arguments are available
    /// across all workflow phases, particularly for MapReduce agents.
    pub fn with_positional_args(mut self, args: &[String]) -> Self {
        use super::pure::inject_positional_args;
        inject_positional_args(&mut self.env_vars, args);
        self
    }

    /// Build immutable EnvironmentContext
    ///
    /// Consumes the builder and produces an immutable context.
    ///
    /// # Returns
    ///
    /// Immutable environment context ready for use
    ///
    /// # Example
    ///
    /// ```
    /// use std::path::PathBuf;
    /// use prodigy::cook::environment::EnvironmentContextBuilder;
    ///
    /// let context = EnvironmentContextBuilder::new(PathBuf::from("/project"))
    ///     .with_env("VAR".to_string(), "value".to_string())
    ///     .build();
    ///
    /// assert_eq!(context.working_dir(), PathBuf::from("/project").as_path());
    /// ```
    pub fn build(self) -> ImmutableEnvironmentContext {
        use std::sync::Arc;

        ImmutableEnvironmentContext {
            base_working_dir: Arc::new(self.base_working_dir),
            env_vars: Arc::new(self.env_vars),
            secret_keys: Arc::new(self.secret_keys),
            profile: self.profile.map(Arc::from),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_builder_basic() {
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_env("KEY".to_string(), "value".to_string())
            .with_secret("SECRET".to_string())
            .build();

        assert_eq!(context.working_dir(), PathBuf::from("/test").as_path());
        assert_eq!(context.env_vars().get("KEY"), Some(&"value".to_string()));
        assert!(context.is_secret("SECRET"));
    }

    #[test]
    fn test_builder_multiple_env_vars() {
        let mut vars = HashMap::new();
        vars.insert("A".to_string(), "1".to_string());
        vars.insert("B".to_string(), "2".to_string());

        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_env_vars(vars)
            .build();

        assert_eq!(context.env_vars().get("A"), Some(&"1".to_string()));
        assert_eq!(context.env_vars().get("B"), Some(&"2".to_string()));
    }

    #[test]
    fn test_builder_with_profile() {
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_profile("production".to_string())
            .build();

        assert_eq!(context.profile(), Some("production"));
    }

    #[test]
    fn test_builder_with_secrets() {
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_secrets(vec!["SECRET1".to_string(), "SECRET2".to_string()])
            .build();

        assert!(context.is_secret("SECRET1"));
        assert!(context.is_secret("SECRET2"));
        assert!(!context.is_secret("NOT_SECRET"));
    }

    #[test]
    fn test_builder_with_config_empty() {
        let config = EnvironmentConfig::default();
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_config(&config)
            .unwrap()
            .build();

        assert_eq!(context.working_dir(), PathBuf::from("/test").as_path());
    }

    #[test]
    fn test_builder_with_config_global_env() {
        let mut config = EnvironmentConfig::default();
        config.global_env.insert(
            "GLOBAL_VAR".to_string(),
            EnvValue::Static("value".to_string()),
        );

        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_config(&config)
            .unwrap()
            .build();

        assert_eq!(
            context.env_vars().get("GLOBAL_VAR"),
            Some(&"value".to_string())
        );
    }

    #[test]
    fn test_builder_inherits_system_env() {
        // Builder should inherit current process env by default
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test")).build();

        // System environment should be present (PATH is almost always set)
        // We can't test for specific vars, but we can check it's not empty
        assert!(!context.env_vars().is_empty());
    }

    #[test]
    fn test_builder_chain() {
        // Test fluent API chaining
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_env("VAR1".to_string(), "value1".to_string())
            .with_env("VAR2".to_string(), "value2".to_string())
            .with_secret("VAR1".to_string())
            .with_profile("prod".to_string())
            .build();

        assert_eq!(context.env_vars().get("VAR1"), Some(&"value1".to_string()));
        assert_eq!(context.env_vars().get("VAR2"), Some(&"value2".to_string()));
        assert!(context.is_secret("VAR1"));
        assert!(!context.is_secret("VAR2"));
        assert_eq!(context.profile(), Some("prod"));
    }

    #[test]
    fn test_builder_duplicate_secrets() {
        // Adding the same secret multiple times should work
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_secret("SECRET".to_string())
            .with_secret("SECRET".to_string()) // Duplicate
            .build();

        assert!(context.is_secret("SECRET"));
        // Should only appear once in the list
        assert_eq!(
            context
                .secret_keys()
                .iter()
                .filter(|k| *k == "SECRET")
                .count(),
            1
        );
    }

    #[test]
    fn test_with_positional_args() {
        let args = vec!["file.txt".to_string(), "output.json".to_string()];
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_positional_args(&args)
            .build();

        assert_eq!(
            context.env_vars().get("ARG_1"),
            Some(&"file.txt".to_string())
        );
        assert_eq!(
            context.env_vars().get("ARG_2"),
            Some(&"output.json".to_string())
        );
    }

    #[test]
    fn test_with_positional_args_empty() {
        let args: Vec<String> = vec![];
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_positional_args(&args)
            .build();

        assert!(context.env_vars().get("ARG_1").is_none());
    }

    #[test]
    fn test_with_positional_args_chaining() {
        let args = vec!["test.txt".to_string()];
        let context = EnvironmentContextBuilder::new(PathBuf::from("/test"))
            .with_env("CUSTOM".to_string(), "value".to_string())
            .with_positional_args(&args)
            .build();

        assert_eq!(context.env_vars().get("CUSTOM"), Some(&"value".to_string()));
        assert_eq!(
            context.env_vars().get("ARG_1"),
            Some(&"test.txt".to_string())
        );
    }
}