@rallycry/conveyor-agent 11.0.11 → 11.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -709,6 +709,10 @@ function wireMountedUserHome(opts) {
|
|
|
709
709
|
seedClaudeJson(join3(home, ".claude.json"));
|
|
710
710
|
});
|
|
711
711
|
const pendingRepair = wireSharedMemory(root, userHomeMount, projectId, log);
|
|
712
|
+
safely(log, "wire Conveyor Codex home", () => {
|
|
713
|
+
mkdirSync(join3(root, ".conveyor-codex"), { recursive: true });
|
|
714
|
+
relink(join3(root, ".conveyor-codex"), join3(home, ".conveyor-codex"));
|
|
715
|
+
});
|
|
712
716
|
wireCredentials({ home, root, sharedDir, log });
|
|
713
717
|
safely(log, "mkdir opencode root", () => {
|
|
714
718
|
mkdirSync(join3(root, ".local", "share", "opencode"), { recursive: true });
|
|
@@ -734,6 +738,11 @@ function wireNoMountUserHome(opts) {
|
|
|
734
738
|
() => seedClaudeJson(join3(home, ".claude.json"))
|
|
735
739
|
);
|
|
736
740
|
if (sharedDir) {
|
|
741
|
+
safely(log, "wire Conveyor Codex home to shared emptyDir", () => {
|
|
742
|
+
const target = join3(sharedDir, "codex-home");
|
|
743
|
+
mkdirSync(target, { recursive: true });
|
|
744
|
+
relink(target, join3(home, ".conveyor-codex"));
|
|
745
|
+
});
|
|
737
746
|
safely(log, "wire ~/.claude to shared emptyDir", () => {
|
|
738
747
|
const target = join3(sharedDir, "claude-home", ".claude");
|
|
739
748
|
mkdirSync(target, { recursive: true });
|