Merge pull request 'fix: agent CAS path mismatch (~/.uwf/cas → ~/.ocas)' (#20) from fix/agent-cas-path into main
CI / check (push) Failing after 9m48s

This commit was merged in pull request #20.
This commit is contained in:
2026-06-02 15:20:35 +00:00
+1 -1
View File
@@ -108,7 +108,7 @@ export type AgentStore = {
};
export async function createAgentStore(storageRoot: string): Promise<AgentStore> {
const store = createFsStore(getCasDir(storageRoot));
const store = createFsStore(getGlobalCasDir());
const schemas = await registerAgentSchemas(store);
return { storageRoot, store, schemas };
}