decapod 0.53.0

Decapod is a Rust-built governance runtime for AI agents: repo-native state, enforced workflow, proof gates, safe coordination.
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
use std::fs;
use std::io::Write;
use std::process::{Command, Stdio};
use tempfile::TempDir;

fn setup_isolated_repo_with_worktree(base_dir: &std::path::Path) -> std::path::PathBuf {
    Command::new("git")
        .args(["init", "-q"])
        .current_dir(base_dir)
        .status()
        .expect("git init");
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(base_dir)
        .status()
        .expect("git config email");
    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(base_dir)
        .status()
        .expect("git config name");

    fs::write(base_dir.join("README.md"), "# test\n").expect("write readme");
    Command::new("git")
        .args(["add", "."])
        .current_dir(base_dir)
        .status()
        .expect("git add");
    Command::new("git")
        .args(["commit", "-m", "init"])
        .current_dir(base_dir)
        .status()
        .expect("git commit");

    let init_out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["init", "--force"])
        .current_dir(base_dir)
        .output()
        .expect("decapod init");
    assert!(
        init_out.status.success(),
        "init failed: {}",
        String::from_utf8_lossy(&init_out.stderr)
    );

    fs::write(base_dir.join("test.rs"), "fn main() {}\n").expect("write test file");
    Command::new("git")
        .args(["add", "-A"])
        .current_dir(base_dir)
        .status()
        .expect("git add all");
    Command::new("git")
        .args(["commit", "-m", "add test file"])
        .current_dir(base_dir)
        .status()
        .expect("git commit");

    let worktree_dir = base_dir.join(".decapod/workspaces/test-cw-worktree");
    Command::new("git")
        .args([
            "worktree",
            "add",
            "-b",
            "agent/test-cw",
            worktree_dir.to_str().unwrap(),
        ])
        .current_dir(base_dir)
        .status()
        .expect("git worktree add");

    worktree_dir
}

fn run_decapod_validate(
    dir: &std::path::Path,
    extra_envs: &[(&str, &str)],
) -> std::process::Output {
    let mut cmd = Command::new(env!("CARGO_BIN_EXE_decapod"));
    cmd.args(["validate", "-v"]).current_dir(dir);
    for (k, v) in extra_envs {
        cmd.env(k, v);
    }
    cmd.output().expect("decapod validate")
}

fn acquire_session(dir: &std::path::Path) -> String {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["session", "acquire"])
        .env("DECAPOD_AGENT_ID", "test-agent-cw")
        .current_dir(dir)
        .output()
        .expect("session acquire");
    assert!(
        out.status.success(),
        "session acquire failed: {}",
        String::from_utf8_lossy(&out.stderr)
    );

    let stdout = String::from_utf8_lossy(&out.stdout);
    stdout
        .lines()
        .find(|l| l.starts_with("Password: "))
        .expect("Password in output")
        .strip_prefix("Password: ")
        .unwrap()
        .trim()
        .to_string()
}

fn set_container_workspaces_in_config(worktree_dir: &std::path::Path, enabled: bool) {
    let config_path = worktree_dir.join(".decapod").join("config.toml");
    let content = fs::read_to_string(&config_path).expect("read config");

    let new_content = if content.contains("container_workspaces") {
        content
            .lines()
            .map(|line| {
                if line.trim().starts_with("container_workspaces") {
                    format!("container_workspaces = {}", enabled)
                } else {
                    line.to_string()
                }
            })
            .collect::<Vec<_>>()
            .join("\n")
    } else {
        format!("{}\ncontainer_workspaces = {}", content.trim(), enabled)
    };

    fs::write(&config_path, new_content).expect("write config");
}

#[test]
fn test_container_workspaces_false_skips_container_requirement() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, false);

    let out = run_decapod_validate(&worktree_dir, &[]);

    let stderr = String::from_utf8_lossy(&out.stderr);
    let stdout = String::from_utf8_lossy(&out.stdout);

    assert!(
        !stderr.contains("container_workspace_required"),
        "should NOT fail container_workspace_required when disabled. Stderr: {}",
        stderr
    );

    assert!(
        stdout.contains("skip") || stdout.contains("disabled") || out.status.success(),
        "should skip container check when container_workspaces disabled. stdout: {}",
        stdout
    );
}

#[test]
fn test_container_workspaces_true_requires_container() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, true);

    let out = run_decapod_validate(&worktree_dir, &[]);

    let stderr = String::from_utf8_lossy(&out.stderr);

    assert!(
        stderr.contains("container_workspace_required"),
        "should require container when container_workspaces = true. Stderr: {}",
        stderr
    );
}

#[test]
fn test_init_with_no_container_workspaces_flag() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();

    Command::new("git")
        .args(["init", "-q"])
        .current_dir(base_dir)
        .status()
        .expect("git init");
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(base_dir)
        .status()
        .expect("git config email");
    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(base_dir)
        .status()
        .expect("git config name");

    fs::write(base_dir.join("README.md"), "# test\n").expect("write readme");
    Command::new("git")
        .args(["add", "."])
        .current_dir(base_dir)
        .status()
        .expect("git add");
    Command::new("git")
        .args(["commit", "-m", "init"])
        .current_dir(base_dir)
        .status()
        .expect("git commit");

    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["init", "--force", "--no-container-workspaces"])
        .current_dir(base_dir)
        .output()
        .expect("decapod init --no-container-workspaces");

    assert!(
        out.status.success(),
        "init failed: {}",
        String::from_utf8_lossy(&out.stderr)
    );

    let config_path = base_dir.join(".decapod").join("config.toml");
    let config_content = fs::read_to_string(&config_path).expect("read config");
    assert!(
        config_content.contains("container_workspaces = false"),
        "config should have container_workspaces = false. Content: {}",
        config_content
    );
}

#[test]
fn test_agent_rpc_with_container_workspaces_disabled() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, false);

    let password = acquire_session(&worktree_dir);

    let request = serde_json::json!({
        "jsonrpc": "2.0",
        "id": "test-1",
        "op": "agent.init",
        "params": {}
    });

    let mut child = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["rpc", "--stdin"])
        .current_dir(&worktree_dir)
        .env("DECAPOD_AGENT_ID", "test-agent-cw")
        .env("DECAPOD_SESSION_PASSWORD", &password)
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .spawn()
        .expect("spawn rpc");

    let mut stdin = child.stdin.take().expect("stdin");
    stdin
        .write_all(serde_json::to_string(&request).unwrap().as_bytes())
        .expect("write rpc request");
    drop(stdin);

    let output = child.wait_with_output().expect("wait for rpc");
    assert!(
        output.status.success(),
        "rpc should succeed with container_workspaces disabled. Stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_todo_operations_with_container_workspaces_disabled() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, false);

    let password = acquire_session(&worktree_dir);

    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["todo", "add", "test container_workspaces disabled todo"])
        .current_dir(&worktree_dir)
        .env("DECAPOD_AGENT_ID", "test-agent-cw")
        .env("DECAPOD_SESSION_PASSWORD", &password)
        .output()
        .expect("todo add");

    assert!(
        out.status.success(),
        "todo add should succeed with container_workspaces disabled. Stderr: {}",
        String::from_utf8_lossy(&out.stderr)
    );
}

#[test]
fn test_e2e_validate_passes_with_no_container_workspaces() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, false);

    let out = run_decapod_validate(&worktree_dir, &[]);

    let stdout = String::from_utf8_lossy(&out.stdout);

    assert!(
        out.status.success(),
        "validate should pass with container_workspaces disabled. stdout: {}",
        stdout
    );

    assert!(
        !stdout.contains("container_workspace_required"),
        "should not have container_workspace_required failure. stdout: {}",
        stdout
    );
}

#[test]
fn test_e2e_validate_container_sequences_never_fire_when_disabled() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();
    let worktree_dir = setup_isolated_repo_with_worktree(base_dir);

    set_container_workspaces_in_config(&worktree_dir, false);

    let out = run_decapod_validate(&worktree_dir, &[]);

    let stderr = String::from_utf8_lossy(&out.stderr);
    let stdout = String::from_utf8_lossy(&out.stdout);

    assert!(
        !stderr.contains("container") && !stdout.contains("container"),
        "container sequences should never fire when container_workspaces disabled. stderr: {}, stdout: {}",
        stderr,
        stdout
    );

    assert!(
        !stderr.contains("docker run") && !stdout.contains("docker run"),
        "docker run should never execute when container_workspaces disabled. stderr: {}, stdout: {}",
        stderr,
        stdout
    );

    assert!(
        !stderr.contains("podman run") && !stdout.contains("podman run"),
        "podman run should never execute when container_workspaces disabled. stderr: {}, stdout: {}",
        stderr,
        stdout
    );

    assert!(
        !stderr.contains("ensure --container") && !stdout.contains("ensure --container"),
        "workspace ensure --container should never be triggered when container_workspaces disabled. stderr: {}, stdout: {}",
        stderr,
        stdout
    );
}

#[test]
fn test_e2e_init_then_validate_flow_with_workspaces_disabled() {
    let tmp = TempDir::new().expect("tempdir");
    let base_dir = tmp.path();

    Command::new("git")
        .args(["init", "-q"])
        .current_dir(base_dir)
        .status()
        .expect("git init");
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(base_dir)
        .status()
        .expect("git config email");
    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(base_dir)
        .status()
        .expect("git config name");

    fs::write(base_dir.join("README.md"), "# test\n").expect("write readme");
    Command::new("git")
        .args(["add", "."])
        .current_dir(base_dir)
        .status()
        .expect("git add");
    Command::new("git")
        .args(["commit", "-m", "init"])
        .current_dir(base_dir)
        .status()
        .expect("git commit");

    let init_out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["init", "--force", "--no-container-workspaces"])
        .current_dir(base_dir)
        .output()
        .expect("decapod init --no-container-workspaces");
    assert!(init_out.status.success(), "init should succeed");

    let config_path = base_dir.join(".decapod").join("config.toml");
    let config_content = fs::read_to_string(&config_path).expect("read config");
    assert!(
        config_content.contains("container_workspaces = false"),
        "container_workspaces should be set to false in config after init --no-container-workspaces"
    );

    fs::write(base_dir.join("test.rs"), "fn main() {}\n").expect("write test file");
    Command::new("git")
        .args(["add", "-A"])
        .current_dir(base_dir)
        .status()
        .expect("git add all");
    Command::new("git")
        .args(["commit", "-m", "add test file"])
        .current_dir(base_dir)
        .status()
        .expect("git commit");

    let worktree_dir = base_dir.join(".decapod/workspaces/test-cw-init-flow");
    Command::new("git")
        .args([
            "worktree",
            "add",
            "-b",
            "agent/test-cw-init",
            worktree_dir.to_str().unwrap(),
        ])
        .current_dir(base_dir)
        .status()
        .expect("git worktree add");

    let validate_out = run_decapod_validate(&worktree_dir, &[]);
    let stdout = String::from_utf8_lossy(&validate_out.stdout);
    let stderr = String::from_utf8_lossy(&validate_out.stderr);

    assert!(
        validate_out.status.success(),
        "validate should pass after init --no-container-workspaces in worktree. stdout: {}, stderr: {}",
        stdout,
        stderr
    );

    assert!(
        !stderr.contains("container_workspace_required"),
        "container_workspace_required should never appear. stderr: {}",
        stderr
    );
}