agpm-cli 0.4.14

AGent Package Manager - A Git-based package manager for coding 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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
//! Integration tests for tool enable/disable functionality
//!
//! These tests verify that dependencies are properly included or excluded
//! when tools are enabled or disabled in the manifest.

use crate::common::TestProject;
use agpm_cli::utils::platform::normalize_path_for_storage;
use anyhow::Result;
use tokio::fs;

/// Test that disabled tools are excluded during installation
#[tokio::test]
async fn test_install_disabled_tools_excluded() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository with both claude-code and opencode agents
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure
    fs::create_dir_all(source_repo.path.join("agents")).await?;
    fs::create_dir_all(source_repo.path.join("agent")).await?;

    // Create claude-code agent
    fs::write(
        source_repo.path.join("agents/claude-agent.md"),
        "# Claude Code Agent\nThis is a claude-code agent.",
    )
    .await?;

    // Create opencode agent
    fs::write(
        source_repo.path.join("agent/opencode-agent.md"),
        "# OpenCode Agent\nThis is an opencode agent.",
    )
    .await?;

    // Commit the files
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with opencode disabled
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.claude-code]
path = ".claude"
resources = {{ agents = {{ path = "agents/agpm", flatten = true }} }}

[tools.opencode]
enabled = false
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
claude-agent = {{ source = "test", path = "agents/claude-agent.md", version = "v1.0.0" }}
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Check that only claude-code agent was installed
    let claude_agent_path =
        project.project_path().join(".claude").join("agents").join("agpm").join("claude-agent.md");
    assert!(claude_agent_path.exists(), "Claude-code agent should be installed");

    let opencode_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("opencode-agent.md");
    assert!(!opencode_agent_path.exists(), "OpenCode agent should NOT be installed");

    // Check lockfile contains only enabled dependencies
    let lockfile_content = fs::read_to_string(project.project_path().join("agpm.lock")).await?;
    assert!(lockfile_content.contains("claude-agent"));
    assert!(!lockfile_content.contains("opencode-agent"));

    Ok(())
}

/// Test that enabling a tool includes its dependencies during installation
#[tokio::test]
async fn test_install_enabled_tools_included() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository with both claude-code and opencode agents
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure
    fs::create_dir_all(source_repo.path.join("agents")).await?;
    fs::create_dir_all(source_repo.path.join("agent")).await?;

    // Create claude-code agent
    fs::write(
        source_repo.path.join("agents/claude-agent.md"),
        "# Claude Code Agent\nThis is a claude-code agent.",
    )
    .await?;

    // Create opencode agent
    fs::write(
        source_repo.path.join("agent/opencode-agent.md"),
        "# OpenCode Agent\nThis is an opencode agent.",
    )
    .await?;

    // Commit the files
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with both tools enabled (opencode explicitly enabled)
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.claude-code]
path = ".claude"
resources = {{ agents = {{ path = "agents/agpm", flatten = true }} }}

[tools.opencode]
enabled = true
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
claude-agent = {{ source = "test", path = "agents/claude-agent.md", version = "v1.0.0" }}
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Check that both agents were installed
    let claude_agent_path =
        project.project_path().join(".claude").join("agents").join("agpm").join("claude-agent.md");
    assert!(claude_agent_path.exists(), "Claude-code agent should be installed");

    let opencode_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("opencode-agent.md");
    assert!(opencode_agent_path.exists(), "OpenCode agent should be installed");

    // Check lockfile contains both dependencies
    let lockfile_content = fs::read_to_string(project.project_path().join("agpm.lock")).await?;
    assert!(lockfile_content.contains("claude-agent"));
    assert!(lockfile_content.contains("opencode-agent"));

    Ok(())
}

/// Test that default tool behavior (enabled=true) works correctly
#[tokio::test]
async fn test_install_default_tool_enabled() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository with opencode agent
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure
    fs::create_dir_all(source_repo.path.join("agent")).await?;

    // Create opencode agent
    fs::write(
        source_repo.path.join("agent/opencode-agent.md"),
        "# OpenCode Agent\nThis is an opencode agent.",
    )
    .await?;

    // Commit the files
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with opencode tool defined but no explicit enabled field (should default to true)
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.opencode]
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Check that opencode agent was installed (should be enabled by default)
    let opencode_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("opencode-agent.md");
    assert!(opencode_agent_path.exists(), "OpenCode agent should be installed by default");

    // Check lockfile contains the dependency
    let lockfile_content = fs::read_to_string(project.project_path().join("agpm.lock")).await?;
    assert!(lockfile_content.contains("opencode-agent"));

    Ok(())
}

/// Test that update command respects tool enable/disable and install handles newly enabled tools
#[tokio::test]
async fn test_update_and_install_respect_tool_enable_disable() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure
    fs::create_dir_all(source_repo.path.join("agents")).await?;
    fs::create_dir_all(source_repo.path.join("agent")).await?;

    // Create initial versions
    fs::write(
        source_repo.path.join("agents/claude-agent.md"),
        "# Claude Code Agent v1\nThis is version 1.",
    )
    .await?;

    fs::write(
        source_repo.path.join("agent/opencode-agent.md"),
        "# OpenCode Agent v1\nThis is version 1.",
    )
    .await?;

    // Commit initial versions
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with opencode disabled
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.claude-code]
path = ".claude"
resources = {{ agents = {{ path = "agents/agpm", flatten = true }} }}

[tools.opencode]
enabled = false
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
claude-agent = {{ source = "test", path = "agents/claude-agent.md", version = "v1.0.0" }}
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Debug: Check the manifest that was parsed
    let manifest_content_debug =
        fs::read_to_string(project.project_path().join("agpm.toml")).await?;
    println!("Manifest content:\n{}", manifest_content_debug);

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Verify only claude-agent was installed
    assert!(project.project_path().join(".claude/agents/agpm/claude-agent.md").exists());
    assert!(!project.project_path().join(".opencode/agent/agpm/opencode-agent.md").exists());

    // Create new versions
    fs::write(
        source_repo.path.join("agents/claude-agent.md"),
        "# Claude Code Agent v2\nThis is version 2.",
    )
    .await?;

    fs::write(
        source_repo.path.join("agent/opencode-agent.md"),
        "# OpenCode Agent v2\nThis is version 2.",
    )
    .await?;

    // Commit new versions
    source_repo.git.add_all()?;
    source_repo.git.commit("Update to v2")?;
    source_repo.git.tag("v2.0.0")?;

    // Update manifest to use v2.0.0
    let updated_manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.claude-code]
path = ".claude"
resources = {{ agents = {{ path = "agents/agpm", flatten = true }} }}

[tools.opencode]
enabled = false
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
claude-agent = {{ source = "test", path = "agents/claude-agent.md", version = "v2.0.0" }}
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v2.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), updated_manifest_content).await?;

    // Run update
    let output = project.run_agpm(&["update"])?;
    assert!(output.success);

    // Verify opencode agent is still not installed (should remain ignored)
    assert!(
        !project.project_path().join(".opencode/agent/agpm/opencode-agent.md").exists(),
        "OpenCode agent should still not be installed when tool is disabled"
    );

    // Now enable opencode and update again
    let enabled_manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.claude-code]
path = ".claude"
resources = {{ agents = {{ path = "agents/agpm", flatten = true }} }}

[tools.opencode]
enabled = true
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }} }}

[agents]
claude-agent = {{ source = "test", path = "agents/claude-agent.md", version = "v2.0.0" }}
opencode-agent = {{ source = "test", path = "agent/opencode-agent.md", version = "v2.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), enabled_manifest_content).await?;

    // Run install again (not update) to install newly enabled dependencies
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Now opencode agent should be installed
    assert!(
        project.project_path().join(".opencode/agent/agpm/opencode-agent.md").exists(),
        "OpenCode agent should be installed when tool is enabled"
    );

    let opencode_agent_content =
        fs::read_to_string(project.project_path().join(".opencode/agent/agpm/opencode-agent.md"))
            .await?;
    assert!(opencode_agent_content.contains("version 2"));

    Ok(())
}

/// Test that opencode tool has correct defaults (enabled=true, agents/commands flattened)
#[tokio::test]
async fn test_opencode_defaults() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository with opencode resources in subdirectories
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure with subdirectories to test flattening
    fs::create_dir_all(source_repo.path.join("agent/subdir")).await?;
    fs::create_dir_all(source_repo.path.join("command/commands")).await?;

    // Create opencode agent in subdirectory
    fs::write(
        source_repo.path.join("agent/subdir/my-agent.md"),
        "# My OpenCode Agent\nThis is in a subdirectory.",
    )
    .await?;

    // Create opencode command in subdirectory
    fs::write(
        source_repo.path.join("command/commands/my-command.md"),
        "# My OpenCode Command\nThis is in a subdirectory.",
    )
    .await?;

    // Commit the files
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with NO tool configuration at all
    // This should use the complete defaults: enabled=true, agents/commands flattened
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[agents]
my-agent = {{ source = "test", path = "agent/subdir/my-agent.md", version = "v1.0.0", tool = "opencode" }}

[commands]
my-command = {{ source = "test", path = "command/commands/my-command.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Debug: print the output to see what happened
    println!("Install stdout: {}", output.stdout);
    println!("Install stderr: {}", output.stderr);

    // Check what files were actually created
    let opencode_dir = project.project_path().join(".opencode");
    if opencode_dir.exists() {
        println!("OpenCode directory exists");
        let mut entries = fs::read_dir(&opencode_dir).await?;
        while let Some(entry) = entries.next_entry().await? {
            println!("Found: {}", entry.path().display());
            if entry.path().is_dir() {
                let mut sub_entries = fs::read_dir(&entry.path()).await?;
                while let Some(sub_entry) = sub_entries.next_entry().await? {
                    println!("  Sub-entry: {}", sub_entry.path().display());
                }
            }
        }
    } else {
        println!("OpenCode directory does not exist");
    }

    // Check if the files are in the nested directories (flattening not working)
    let nested_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("subdir")
        .join("my-agent.md");
    let nested_command_path = project
        .project_path()
        .join(".opencode")
        .join("command")
        .join("commands")
        .join("my-command.md");

    if nested_agent_path.exists() {
        println!("Agent found in nested directory - flattening is not working");
        let content = fs::read_to_string(&nested_agent_path).await?;
        println!("Agent content: {}", content);
    }

    if nested_command_path.exists() {
        println!("Command found in nested directory - flattening is not working");
        let content = fs::read_to_string(&nested_command_path).await?;
        println!("Command content: {}", content);
    }

    // Check that opencode agent was installed (should be enabled by default)
    let opencode_agent_path =
        project.project_path().join(".opencode").join("agent").join("agpm").join("my-agent.md");
    assert!(opencode_agent_path.exists(), "OpenCode agent should be installed by default");

    // Check that opencode command was installed (should be enabled by default)
    let opencode_command_path =
        project.project_path().join(".opencode").join("command").join("agpm").join("my-command.md");
    assert!(opencode_command_path.exists(), "OpenCode command should be installed by default");

    // Verify flattening: files should be directly in agent/ and command/ directories
    // NOT in agent/subdir/ or command/commands/ subdirectories
    let nested_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("subdir")
        .join("my-agent.md");
    let nested_command_path = project
        .project_path()
        .join(".opencode")
        .join("command")
        .join("commands")
        .join("my-command.md");

    assert!(
        !nested_agent_path.exists(),
        "Agent should be flattened, not preserve subdirectory structure"
    );
    assert!(
        !nested_command_path.exists(),
        "Command should be flattened, not preserve subdirectory structure"
    );

    // Verify the content is correct
    let agent_content = fs::read_to_string(&opencode_agent_path).await?;
    assert!(agent_content.contains("My OpenCode Agent"));

    let command_content = fs::read_to_string(&opencode_command_path).await?;
    assert!(command_content.contains("My OpenCode Command"));

    // Check lockfile contains both dependencies
    let lockfile_content = fs::read_to_string(project.project_path().join("agpm.lock")).await?;
    assert!(lockfile_content.contains("my-agent"));
    assert!(lockfile_content.contains("my-command"));

    Ok(())
}

/// Test that explicit opencode configuration requires explicit flatten settings
#[tokio::test]
async fn test_opencode_explicit_config_requires_explicit_flatten() -> Result<()> {
    let project = TestProject::new().await?;

    // Create a source repository with opencode resources in subdirectories
    let source_repo = project.create_source_repo("test").await?;

    // Create directory structure with subdirectories to test flattening
    fs::create_dir_all(source_repo.path.join("agent/subdir")).await?;
    fs::create_dir_all(source_repo.path.join("command/commands")).await?;

    // Create opencode agent in subdirectory
    fs::write(
        source_repo.path.join("agent/subdir/my-agent.md"),
        "# My OpenCode Agent\nThis is in a subdirectory.",
    )
    .await?;

    // Create opencode command in subdirectory
    fs::write(
        source_repo.path.join("command/commands/my-command.md"),
        "# My OpenCode Command\nThis is in a subdirectory.",
    )
    .await?;

    // Commit the files
    source_repo.git.add_all()?;
    source_repo.git.commit("Initial commit")?;
    source_repo.git.tag("v1.0.0")?;

    // Create manifest with EXPLICIT opencode tool configuration
    // When explicitly configured, we must specify flatten=true to get flattening
    let manifest_content = format!(
        r#"
[sources]
test = "{}"

[tools.opencode]
path = ".opencode"
resources = {{ agents = {{ path = "agent/agpm", flatten = true }}, commands = {{ path = "command/agpm", flatten = true }}, mcp-servers = {{ merge-target = ".opencode/opencode.json" }} }}

[agents]
my-agent = {{ source = "test", path = "agent/subdir/my-agent.md", version = "v1.0.0", tool = "opencode" }}

[commands]
my-command = {{ source = "test", path = "command/commands/my-command.md", version = "v1.0.0", tool = "opencode" }}
"#,
        normalize_path_for_storage(&source_repo.path)
    );

    fs::write(project.project_path().join("agpm.toml"), manifest_content).await?;

    // Run install
    let output = project.run_agpm(&["install"])?;
    assert!(output.success);

    // Check that opencode agent was installed and flattened
    let opencode_agent_path =
        project.project_path().join(".opencode").join("agent").join("agpm").join("my-agent.md");
    assert!(opencode_agent_path.exists(), "OpenCode agent should be installed and flattened");

    // Check that opencode command was installed and flattened
    let opencode_command_path =
        project.project_path().join(".opencode").join("command").join("agpm").join("my-command.md");
    assert!(opencode_command_path.exists(), "OpenCode command should be installed and flattened");

    // Verify flattening: files should be directly in agent/ and command/ directories
    let nested_agent_path = project
        .project_path()
        .join(".opencode")
        .join("agent")
        .join("agpm")
        .join("subdir")
        .join("my-agent.md");
    let nested_command_path = project
        .project_path()
        .join(".opencode")
        .join("command")
        .join("commands")
        .join("my-command.md");

    assert!(!nested_agent_path.exists(), "Agent should be flattened when explicitly configured");
    assert!(
        !nested_command_path.exists(),
        "Command should be flattened when explicitly configured"
    );

    // Verify the content is correct
    let agent_content = fs::read_to_string(&opencode_agent_path).await?;
    assert!(agent_content.contains("My OpenCode Agent"));

    let command_content = fs::read_to_string(&opencode_command_path).await?;
    assert!(command_content.contains("My OpenCode Command"));

    Ok(())
}