Fission-AI/OpenSpec · error · StoreError
no_store_registry
no_store_registry
Error message
No store registry found
What it means
Error "No store registry found" thrown in Fission-AI/OpenSpec.
Source
Thrown at src/core/store/registry.ts:446
});
}
return {
...removed,
storeRoot: getStoreRootForBackend(removed.backend),
};
}
export async function resolveRegisteredStore(
input: ResolveRegisteredStoreInput
): Promise<ResolvedStore> {
const id = validateStoreId(input.id);
const registry = await readStoreRegistryState({
globalDataDir: input.globalDataDir,
});
if (!registry) {
throw new StoreError('No store registry found', 'no_store_registry', {
target: 'store.id',
fix: 'Register a store with openspec store register <path>, then select it with --store <id>.',
});
}
const entry = getRegisteredStoreOrThrow(registry, id);
const backend = entry.backend;
const storeRoot = getStoreRootForBackend(backend);
await ensureStoreMetadata(storeRoot, id, { writeIfMissing: false });
return {
id,
storeRoot,
backend,
};
}
View on GitHub (pinned to 6926ccb18a)
When it happens
Trigger: Thrown at src/core/store/registry.ts:446 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Fission-AI/OpenSpec@6926ccb18a (2026-08-25).
Data as JSON: /api/errors/636eac97ec82a75d.
Report an issue: GitHub.