Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions packages/local/src/host-mounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,22 @@ export const HOST_MOUNT_CATALOG: HostMountCatalogEntry[] = [
},
},
},
{
// Vault content for the AGE knowledge base. Bind-mounted at /vault by
// the mcp-fs service in agent-ix/ix-age-vault. The host directory is
// typically a clone of github.com/kreneskyp/age-vault — agent edits
// land in the host repo so they can be `git add`-ed normally.
name: "ageVault",
containerPath: "/vault",
localEnvOverride: "IX_AGE_VAULT_DATA_DIR",
sources: {
local: {
type: "hostPath",
path: () => path.join(os.homedir(), ".ix", "age-vault", "data"),
hostPathType: "DirectoryOrCreate",
},
},
},
];

/** Read the active profile from env. Defaults to `local`. */
Expand Down