fix: agent CAS path mismatch (~/.uwf/cas → ~/.ocas) #20

Merged
xiaomo merged 1 commits from fix/agent-cas-path into main 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> { export async function createAgentStore(storageRoot: string): Promise<AgentStore> {
const store = createFsStore(getCasDir(storageRoot)); const store = createFsStore(getGlobalCasDir());
const schemas = await registerAgentSchemas(store); const schemas = await registerAgentSchemas(store);
return { storageRoot, store, schemas }; return { storageRoot, store, schemas };
} }