opensymphony 1.7.2

A Rust implementation of the OpenAI Symphony orchestration design
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
use std::{collections::BTreeMap, fs, process::Stdio, sync::Arc, time::Duration};

use axum::{
    Router,
    extract::{Request, State},
    http::{StatusCode, Uri},
    response::{IntoResponse, Response},
    routing::get,
};
use tempfile::TempDir;
use tokio::{io::AsyncWriteExt, net::TcpListener, process::Command};

#[tokio::test]
async fn init_copies_template_files_and_customizes_workflow() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\ndemo-project\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );

    let workflow =
        fs::read_to_string(repo.path().join("WORKFLOW.md")).expect("workflow should exist");
    let config = fs::read_to_string(repo.path().join("config.yaml")).expect("config should exist");
    assert!(workflow.contains("project_slug: \"demo-project\""));
    assert!(workflow.contains("git clone --depth 1 'https://github.com/example/demo.git' ."));
    assert!(config.contains("tool_dir: ~/.opensymphony/openhands-server"));

    assert!(
        repo.path().join("AGENTS.md").is_file(),
        "AGENTS.md should be created"
    );
    assert!(
        repo.path().join(".agents/skills/pull/SKILL.md").is_file(),
        "skill file should be created"
    );
    assert!(
        !repo
            .path()
            .join(".agents/skills/opensymphony-memory/SKILL.md")
            .exists(),
        "memory skill should only be created when the template repo provides it"
    );
    assert!(
        repo.path()
            .join(".agents/skills/commit/scripts/helper.sh")
            .is_file(),
        "skill helper files should be copied recursively"
    );
    assert!(
        repo.path()
            .join(".agents/skills/linear/references/using-the-helper.md")
            .is_file(),
        "linear reference file should be created"
    );
    assert!(
        repo.path()
            .join(".agents/skills/linear/queries/issue_create.graphql")
            .is_file(),
        "linear issue creation query file should be created"
    );
    assert!(
        repo.path()
            .join(".agents/skills/linear/queries/issue_update.graphql")
            .is_file(),
        "linear issue update query file should be created"
    );
    assert!(
        repo.path().join("config.yaml").is_file(),
        "config.yaml should be created"
    );
    assert!(
        !repo.path().join("docs/tasks/README.md").exists(),
        "target repos should not receive docs/tasks bootstrap files"
    );
    let gitignore =
        fs::read_to_string(repo.path().join(".gitignore")).expect(".gitignore should exist");
    assert_eq!(gitignore, memory_gitignore_policy(""));
    let memory_config = fs::read_to_string(repo.path().join(".opensymphony/memory/memory.yaml"))
        .expect("memory config should be initialized");
    assert!(
        memory_config.contains("memory_root: .opensymphony/memory"),
        "memory config should contain the default memory root: {memory_config}",
    );
    assert!(
        !repo
            .path()
            .join(".github/workflows/ai-pr-review.yml")
            .exists(),
        "AI PR review workflow should not be added unless requested"
    );
    assert!(
        stdout.contains("Initialization summary"),
        "stdout should contain a summary: {stdout}",
    );
    assert!(
        stdout.contains("Created:")
            && stdout.contains("- .gitignore")
            && stdout.contains("- .opensymphony/memory/memory.yaml"),
        "stdout should report the generated memory files: {stdout}",
    );
}

#[tokio::test]
async fn init_uses_template_memory_skill_when_template_provides_it() {
    let server = TemplateServer::start_with_assets(template_assets_with_memory_skill()).await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\ndemo-project\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );
    assert!(
        !stdout.contains("CLI-bundled"),
        "stdout should not mention a CLI-bundled memory skill: {stdout}",
    );

    let memory_skill = fs::read_to_string(
        repo.path()
            .join(".agents/skills/opensymphony-memory/SKILL.md"),
    )
    .expect("memory skill should exist");
    assert!(
        memory_skill.contains("template memory skill"),
        "template-fetched memory skill should be written: {memory_skill}",
    );
}

#[tokio::test]
async fn init_can_scaffold_ai_pr_review_and_print_fallback_commands_when_gh_cannot_access_repo() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "yes\n\n\n\n\n\ndemo-project\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );
    assert!(
        repo.path()
            .join(".github/workflows/ai-pr-review.yml")
            .is_file(),
        "AI PR review workflow should be created"
    );
    assert!(
        repo.path()
            .join(".agents/skills/custom-codereview-guide.md")
            .is_file(),
        "starter review guide should be created"
    );
    assert!(
        !repo
            .path()
            .join("docs/ai-pr-review-human-setup.md")
            .exists(),
        "AI PR review should not create repo-local docs setup files"
    );
    assert!(
        stdout.contains(
            "For the managed local OpenHands server, run `opensymphony install openhands`"
        ),
        "stdout should present managed local OpenHands as the normal path: {stdout}",
    );
    assert!(
        stdout.contains("OpenHands PR review scaffolding was added."),
        "stdout should contain AI review guidance: {stdout}",
    );
    assert!(
        stdout.contains(
            "gh variable set AI_REVIEW_MODEL_ID -R example/demo --body 'accounts/fireworks/models/glm-5p1'"
        ),
        "stdout should contain GitHub variable commands: {stdout}",
    );
    assert!(
        stdout.contains(
            "Manual setup guide: https://github.com/kumanday/OpenSymphony/blob/main/docs/ai-pr-review-human-setup.md"
        ),
        "stdout should point to the upstream setup guide: {stdout}",
    );
    assert!(
        stdout.contains("`gh` could not access `example/demo`"),
        "stdout should explain why automation fell back to manual commands: {stdout}",
    );
}

#[tokio::test]
async fn init_can_scaffold_ai_pr_review_and_configure_github_with_gh() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    let gh_log = repo.path().join("gh.log");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    let mut child = spawn_init_child_with_env(
        repo.path(),
        server.base_url(),
        &[],
        &[
            ("OPENSYMPHONY_TEST_GH_MODE", "success"),
            (
                "OPENSYMPHONY_TEST_GH_LOG",
                gh_log.to_str().expect("gh log path should be valid"),
            ),
        ],
    );
    write_stdin(&mut child, "yes\n\n\n\n\n\ndemo-project\nyes\nyes\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );
    assert!(
        stdout.contains("GitHub Actions settings for `example/demo` were configured with `gh`."),
        "stdout should confirm GitHub automation: {stdout}",
    );
    assert!(
        !stdout.contains("gh variable set AI_REVIEW_MODEL_ID"),
        "successful automation should not dump fallback gh commands: {stdout}",
    );

    let gh_log = fs::read_to_string(&gh_log).expect("gh log should exist");
    assert!(
        gh_log.contains("gh --version"),
        "preflight should verify gh exists: {gh_log}",
    );
    assert!(
        gh_log.contains("gh repo view example/demo --json nameWithOwner"),
        "preflight should verify repo access: {gh_log}",
    );
    assert!(
        gh_log.contains(
            "gh variable set AI_REVIEW_PROVIDER_KIND -R example/demo --body openai-compatible"
        ),
        "provider variable should be configured: {gh_log}",
    );
    assert!(
        gh_log.contains("gh label create review-this -R example/demo --description Trigger AI PR review --color d73a4a --force"),
        "label should be ensured: {gh_log}",
    );
    assert!(
        gh_log.contains("gh secret set AI_REVIEW_API_KEY -R example/demo"),
        "secret should be configured when the user reuses LLM_API_KEY: {gh_log}",
    );
}

#[tokio::test]
async fn init_can_commit_and_push_bootstrap_changes_when_requested() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    let remote = TempDir::new().expect("temp remote should exist");
    run_git(remote.path(), &["init", "--bare", "-q", "."]);
    init_git_repo(
        repo.path(),
        remote.path().to_str().expect("remote path should be utf-8"),
    );
    run_git(repo.path(), &["config", "user.email", "test@example.com"]);
    run_git(repo.path(), &["config", "user.name", "OpenSymphony Test"]);
    fs::write(repo.path().join("scratch.txt"), "do not commit\n")
        .expect("scratch file should write");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\ndemo-project\nyes\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );
    assert!(
        stdout.contains("Committed and pushed OpenSymphony bootstrap changes"),
        "stdout should confirm the git publish step: {stdout}",
    );

    let subject = git_stdout(repo.path(), &["log", "-1", "--pretty=%s"]);
    assert_eq!(subject.trim(), "chore: bootstrap OpenSymphony");
    let committed_files = git_stdout(repo.path(), &["show", "--name-only", "--format=", "HEAD"]);
    assert!(
        committed_files.contains("WORKFLOW.md")
            && committed_files.contains(".agents/skills/pull/SKILL.md")
            && committed_files.contains(".opensymphony/memory/memory.yaml"),
        "generated bootstrap files should be committed: {committed_files}",
    );
    assert!(
        !committed_files.contains("scratch.txt"),
        "unrelated untracked files should not be committed: {committed_files}",
    );

    let local_head = git_stdout(repo.path(), &["rev-parse", "HEAD"]);
    let remote_commits = git_stdout(remote.path(), &["rev-list", "--all"]);
    assert!(
        remote_commits.contains(local_head.trim()),
        "pushed remote should contain local init commit: remote={remote_commits}, local={local_head}",
    );
    let status = git_stdout(repo.path(), &["status", "--short"]);
    assert!(
        status.contains("?? scratch.txt"),
        "unrelated untracked file should remain untracked: {status}",
    );
}

#[tokio::test]
async fn init_copies_agents_template_to_example_when_agents_already_exists() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    fs::write(
        repo.path().join("AGENTS.md"),
        "# Existing Agents\n\nKeep me.\n",
    )
    .expect("existing AGENTS should write");
    fs::create_dir_all(repo.path().join(".github")).expect(".github should exist");
    fs::write(
        repo.path().join(".github/pull_request_template.md"),
        "keep this template\n",
    )
    .expect("existing PR template should write");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\nskip\ndemo-project\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );

    let agents = fs::read_to_string(repo.path().join("AGENTS.md")).expect("AGENTS.md should exist");
    assert_eq!(
        agents, "# Existing Agents\n\nKeep me.\n",
        "existing AGENTS content should be left untouched",
    );
    let agents_example = fs::read_to_string(repo.path().join("AGENTS-example.md"))
        .expect("AGENTS-example.md should exist");
    assert!(
        agents_example.contains("Template agents."),
        "template guidance should be copied to AGENTS-example.md: {agents_example}",
    );
    assert!(
        stdout.contains("`AGENTS.md` already existed"),
        "init should tell the user to review AGENTS-example.md: {stdout}",
    );

    let pr_template = fs::read_to_string(repo.path().join(".github/pull_request_template.md"))
        .expect("PR template should exist");
    assert_eq!(pr_template, "keep this template\n");
    assert!(
        stdout.contains("- .github/pull_request_template.md"),
        "skipped file should appear in summary: {stdout}",
    );
}

#[tokio::test]
async fn init_repairs_gitignore_for_memory_policy() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");
    fs::write(repo.path().join(".gitignore"), "node_modules/\n").expect(".gitignore should write");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\ndemo-project\nno\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        output.status.success(),
        "init should succeed: stdout={stdout}, stderr={stderr}",
    );

    let gitignore =
        fs::read_to_string(repo.path().join(".gitignore")).expect(".gitignore should exist");
    assert_eq!(gitignore, memory_gitignore_policy("node_modules/\n"));
    assert!(
        stdout.contains("Updated:") && stdout.contains("- .gitignore"),
        "stdout should report the updated ignore entry: {stdout}",
    );
}

#[tokio::test]
async fn init_aborts_before_writing_when_user_requests_abort() {
    let server = TemplateServer::start().await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    fs::write(repo.path().join("WORKFLOW.md"), "user workflow\n")
        .expect("existing workflow should write");

    let mut child = spawn_init_child(repo.path(), server.base_url(), &[]);
    write_stdin(&mut child, "\nabort\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        !output.status.success(),
        "init should fail when aborted: stdout={stdout}, stderr={stderr}",
    );
    assert_eq!(
        fs::read_to_string(repo.path().join("WORKFLOW.md")).expect("workflow should still exist"),
        "user workflow\n"
    );
    assert!(
        !repo.path().join("AGENTS.md").exists(),
        "no additional files should be written after abort",
    );
}

#[tokio::test]
async fn init_fails_when_template_fetch_times_out() {
    let server = TemplateServer::start_with_delay(Duration::from_millis(250)).await;
    let repo = TempDir::new().expect("temp repo should exist");
    init_git_repo(repo.path(), "https://github.com/example/demo.git");

    let mut child = spawn_init_child_with_env(
        repo.path(),
        server.base_url(),
        &[],
        &[("OPENSYMPHONY_TEMPLATE_FETCH_TIMEOUT_MS", "50")],
    );
    write_stdin(&mut child, "\n").await;

    let output = child
        .wait_with_output()
        .await
        .expect("init command should finish");
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    assert!(
        !output.status.success(),
        "init should fail on template fetch timeout: stdout={stdout}, stderr={stderr}",
    );
    assert!(
        stdout.contains("opensymphony init failed: failed to fetch template tree"),
        "stdout should report the fetch failure: {stdout}",
    );
    assert!(
        !repo.path().join("WORKFLOW.md").exists(),
        "no files should be written when the template fetch times out",
    );
}

fn spawn_init_child(
    repo_root: &std::path::Path,
    template_base_url: &str,
    extra_args: &[&str],
) -> tokio::process::Child {
    spawn_init_child_with_env(repo_root, template_base_url, extra_args, &[])
}

fn spawn_init_child_with_env(
    repo_root: &std::path::Path,
    template_base_url: &str,
    extra_args: &[&str],
    extra_env: &[(&str, &str)],
) -> tokio::process::Child {
    let gh_bin_dir = repo_root.join(".test-bin");
    fs::create_dir_all(&gh_bin_dir).expect("fake gh bin dir should exist");
    let gh_bin = gh_bin_dir.join("gh");
    fs::write(&gh_bin, fake_gh_script()).expect("fake gh should be written");
    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;

        let mut permissions = fs::metadata(&gh_bin)
            .expect("fake gh metadata should exist")
            .permissions();
        permissions.set_mode(0o755);
        fs::set_permissions(&gh_bin, permissions).expect("fake gh should be executable");
    }
    let path = format!(
        "{}:{}",
        gh_bin_dir.display(),
        std::env::var("PATH").unwrap_or_default()
    );

    let mut command = Command::new(env!("CARGO_BIN_EXE_opensymphony"));
    command
        .arg("init")
        .args(extra_args)
        .current_dir(repo_root)
        .env("PATH", path)
        .env("OPENSYMPHONY_TEMPLATE_BASE_URL", template_base_url)
        .env("OPENSYMPHONY_TEST_GH_MODE", "deny-repo")
        .env("LLM_MODEL", "already-set-model")
        .env("LLM_API_KEY", "already-set-key")
        .env("LLM_BASE_URL", "https://example.com/llm")
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .kill_on_drop(true);
    for (name, value) in extra_env {
        command.env(name, value);
    }
    command.spawn().expect("init command should spawn")
}

async fn write_stdin(child: &mut tokio::process::Child, input: &str) {
    let mut stdin = child.stdin.take().expect("stdin should exist");
    stdin
        .write_all(input.as_bytes())
        .await
        .expect("stdin should accept scripted input");
    drop(stdin);
}

fn init_git_repo(repo_root: &std::path::Path, remote_url: &str) {
    run_git(repo_root, &["init", "-q"]);
    run_git(repo_root, &["remote", "add", "origin", remote_url]);
}

fn run_git(repo_root: &std::path::Path, args: &[&str]) {
    let status = std::process::Command::new("git")
        .args(args)
        .current_dir(repo_root)
        .status()
        .expect("git should run");
    assert!(status.success(), "git {:?} should succeed", args);
}

fn git_stdout(repo_root: &std::path::Path, args: &[&str]) -> String {
    let output = std::process::Command::new("git")
        .args(args)
        .current_dir(repo_root)
        .output()
        .expect("git should run");
    assert!(
        output.status.success(),
        "git {:?} should succeed: stdout={}, stderr={}",
        args,
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );
    String::from_utf8_lossy(&output.stdout).to_string()
}

fn memory_gitignore_policy(prefix: &str) -> String {
    format!(
        "{prefix}.opensymphony*\n!.opensymphony/\n.opensymphony/*\n!.opensymphony/memory/\n.opensymphony/memory/*\n!.opensymphony/memory/memory.yaml\n"
    )
}

struct TemplateServer {
    base_url: String,
    task: tokio::task::JoinHandle<()>,
}

impl TemplateServer {
    async fn start() -> Self {
        Self::start_with_delay(Duration::ZERO).await
    }

    async fn start_with_assets(assets: BTreeMap<String, String>) -> Self {
        Self::start_with_assets_and_delay(assets, Duration::ZERO).await
    }

    async fn start_with_delay(delay: Duration) -> Self {
        Self::start_with_assets_and_delay(template_assets(), delay).await
    }

    async fn start_with_assets_and_delay(
        assets: BTreeMap<String, String>,
        delay: Duration,
    ) -> Self {
        let assets = Arc::new(assets);
        let app = Router::new()
            .fallback(get(template_handler))
            .with_state((assets, delay));
        let listener = TcpListener::bind("127.0.0.1:0")
            .await
            .expect("template server should bind");
        let address = listener
            .local_addr()
            .expect("template server should have an address");
        let task = tokio::spawn(async move {
            axum::serve(listener, app)
                .await
                .expect("template server should run");
        });

        Self {
            base_url: format!("http://{address}/"),
            task,
        }
    }

    fn base_url(&self) -> &str {
        &self.base_url
    }
}

impl Drop for TemplateServer {
    fn drop(&mut self) {
        self.task.abort();
    }
}

async fn template_handler(
    State((assets, delay)): State<(Arc<BTreeMap<String, String>>, Duration)>,
    uri: Uri,
    _request: Request,
) -> Response {
    if !delay.is_zero() {
        tokio::time::sleep(delay).await;
    }
    let path = uri.path().trim_start_matches('/');
    if path == "__tree.json" {
        let tree = assets
            .keys()
            .map(|path| serde_json::json!({ "path": path, "type": "blob" }))
            .collect::<Vec<_>>();
        return (
            StatusCode::OK,
            serde_json::json!({ "tree": tree }).to_string(),
        )
            .into_response();
    }
    match assets.get(path) {
        Some(content) => (StatusCode::OK, content.clone()).into_response(),
        None => (StatusCode::NOT_FOUND, format!("missing asset {path}")).into_response(),
    }
}

fn template_assets() -> BTreeMap<String, String> {
    BTreeMap::from([
        (
            "WORKFLOW.md".to_string(),
            r#"---
tracker:
  kind: linear
  project_slug: "YOUR-PROJECT-SLUG"
hooks:
  after_create: |
    git clone --depth 1 https://github.com/YOUR-ORG/YOUR-REPO.git .
openhands:
  conversation:
    agent:
      llm:
        model: ${LLM_MODEL}
---
"#
            .to_string(),
        ),
        (
            "AGENTS.md".to_string(),
            "# AGENTS.md\n\nTemplate agents.\n".to_string(),
        ),
        (
            "config.yaml".to_string(),
            "control_plane:\n  bind: 127.0.0.1:2468\n\nopenhands:\n  tool_dir: ~/.opensymphony/openhands-server\n".to_string(),
        ),
        (
            ".agents/skills/commit/SKILL.md".to_string(),
            "# commit\n".to_string(),
        ),
        (
            ".agents/skills/commit/scripts/helper.sh".to_string(),
            "#!/usr/bin/env bash\necho helper\n".to_string(),
        ),
        (
            ".agents/skills/convert-tasks-to-linear/SKILL.md".to_string(),
            "# convert\n".to_string(),
        ),
        (
            ".agents/skills/create-implementation-plan/SKILL.md".to_string(),
            "# plan\n".to_string(),
        ),
        (
            ".agents/skills/land/SKILL.md".to_string(),
            "# land\n".to_string(),
        ),
        (
            ".agents/skills/linear/SKILL.md".to_string(),
            "# linear\n".to_string(),
        ),
        (
            ".agents/skills/linear/scripts/linear_graphql.py".to_string(),
            "#!/usr/bin/env python3\n".to_string(),
        ),
        (
            ".agents/skills/linear/references/using-the-helper.md".to_string(),
            "# helper\n".to_string(),
        ),
        (
            ".agents/skills/linear/references/issue-and-comment-operations.md".to_string(),
            "# issue ops\n".to_string(),
        ),
        (
            ".agents/skills/linear/references/project-and-advanced-operations.md".to_string(),
            "# project ops\n".to_string(),
        ),
        (
            ".agents/skills/linear/queries/viewer.graphql".to_string(),
            "query Viewer { viewer { id } }\n".to_string(),
        ),
        (
            ".agents/skills/linear/queries/issue_create.graphql".to_string(),
            "mutation IssueCreate($input: IssueCreateInput!) { issueCreate(input: $input) { success } }\n".to_string(),
        ),
        (
            ".agents/skills/linear/queries/issue_update.graphql".to_string(),
            "mutation IssueUpdate($id: String!, $input: IssueUpdateInput!) { issueUpdate(id: $id, input: $input) { success } }\n".to_string(),
        ),
        (
            ".agents/skills/pull/SKILL.md".to_string(),
            "# pull\n".to_string(),
        ),
        (
            ".agents/skills/push/SKILL.md".to_string(),
            "# push\n".to_string(),
        ),
        (".github/CODEOWNERS".to_string(), "* @example\n".to_string()),
        (
            ".github/pull_request_template.md".to_string(),
            "template body\n".to_string(),
        ),
        (
            ".github/workflows/ai-pr-review.yml".to_string(),
            "name: ai-pr-review\n".to_string(),
        ),
    ])
}

fn template_assets_with_memory_skill() -> BTreeMap<String, String> {
    let mut assets = template_assets();
    assets.insert(
        ".agents/skills/opensymphony-memory/SKILL.md".to_string(),
        "# template memory skill\n".to_string(),
    );
    assets
}

fn fake_gh_script() -> &'static str {
    r#"#!/bin/sh
set -eu

mode="${OPENSYMPHONY_TEST_GH_MODE:-deny-repo}"
log_path="${OPENSYMPHONY_TEST_GH_LOG:-}"

log_command() {
  if [ -n "$log_path" ]; then
    printf 'gh %s\n' "$*" >> "$log_path"
  fi
}

case "${1-}" in
  --version)
    log_command "$*"
    printf 'gh version test\n'
    exit 0
    ;;
  repo)
    log_command "$*"
    if [ "$mode" = "success" ]; then
      printf '{"nameWithOwner":"example/demo"}\n'
      exit 0
    fi
    printf 'authentication required or repository access denied\n' >&2
    exit 1
    ;;
  variable)
    log_command "$*"
    if [ "$mode" = "success" ]; then
      exit 0
    fi
    printf 'repository settings access denied\n' >&2
    exit 1
    ;;
  label)
    log_command "$*"
    if [ "$mode" = "success" ]; then
      exit 0
    fi
    printf 'label write access denied\n' >&2
    exit 1
    ;;
  secret)
    log_command "$*"
    cat >/dev/null
    if [ "$mode" = "success" ]; then
      exit 0
    fi
    printf 'secret write access denied\n' >&2
    exit 1
    ;;
  *)
    log_command "$*"
    printf 'unexpected gh invocation: %s\n' "$*" >&2
    exit 1
    ;;
esac
"#
}