{"record":{"id":"d6f09525e3355a84","repo":"Fission-AI/OpenSpec","slug":"store-backend-remote-must-not-be-empty-when-provid","errorCode":null,"errorMessage":"Store backend remote must not be empty when provided.","messagePattern":"Store backend remote must not be empty when provided\\.","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"src/core/store/foundation.ts","lineNumber":401,"sourceCode":"\nexport async function resolveGitStoreBackendConfig(\n  input: ResolveGitStoreBackendInput,\n  cwd = process.cwd()\n): Promise<StoreGitBackendConfig> {\n  if (input.localPath.length === 0) {\n    throw new Error('Store local path must not be empty.');\n  }\n\n  const resolvedPath = path.isAbsolute(input.localPath)\n    ? path.resolve(input.localPath)\n    : path.resolve(cwd, input.localPath);\n\n  if (!(await pathIsDirectory(resolvedPath))) {\n    throw new Error(`Store local path does not exist: ${input.localPath}`);\n  }\n\n  if (input.remote !== undefined && input.remote.length === 0) {\n    throw new Error('Store backend remote must not be empty when provided.');\n  }\n\n  if (input.branch !== undefined && input.branch.length === 0) {\n    throw new Error('Store branch must not be empty when provided.');\n  }\n\n  return {\n    type: 'git',\n    local_path: normalizeExistingPathForStorage(resolvedPath),\n    ...(input.remote ? { remote: input.remote } : {}),\n    ...(input.branch ? { branch: input.branch } : {}),\n  };\n}\n","sourceCodeStart":383,"sourceCodeEnd":415,"githubUrl":"https://github.com/Fission-AI/OpenSpec/blob/6926ccb18afa4ff621112813e9968334576ee11a/src/core/store/foundation.ts#L383-L415","documentation":"Error \"Store backend remote must not be empty when provided.\" thrown in Fission-AI/OpenSpec.","triggerScenarios":"Thrown at src/core/store/foundation.ts:401 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"6926ccb18afa4ff621112813e9968334576ee11a","analyzedAt":"2026-08-25T12:29:45.729Z","schemaVersion":2},"datasetVersion":"2026-08-25T16:17:27.014Z"}