JuliusBrussee/caveman · error · Error
${name} must not contain a query or fragment
Error message
${name} must not contain a query or fragment What it means
Error "${name} must not contain a query or fragment" thrown in JuliusBrussee/caveman.
Source
Thrown at packages/sdk/typescript/src/index.ts:346
kind: number;
startTimeNs: number;
endTimeNs: number;
statusCode: number; // 0=unset, 1=ok, 2=error
attributes: Record<string, string | number | boolean>;
};
function normalizedServiceURL(value: string, name: "baseURL" | "controlURL"): string {
if (value.trim() !== value) throw new Error(`${name} must not contain surrounding whitespace`);
let parsed: URL;
try {
parsed = new URL(value);
} catch {
throw new Error(`${name} must be an absolute http(s) URL`);
}
if ((parsed.protocol !== "http:" && parsed.protocol !== "https:") || !parsed.hostname || parsed.username || parsed.password) {
throw new Error(`${name} must be an absolute http(s) URL without credentials`);
}
if (parsed.search || parsed.hash) throw new Error(`${name} must not contain a query or fragment`);
return value.replace(/\/+$/, "");
}
export class Cave {
readonly options: CaveOptions;
constructor(options: CaveOptions) {
if (!options.apiKey || !options.baseURL || !options.agent) throw new Error("apiKey, baseURL, and agent are required");
if (options.timeoutMs !== undefined && (!Number.isSafeInteger(options.timeoutMs) || options.timeoutMs <= 0)) {
throw new Error("timeoutMs must be a positive integer");
}
// CAVE_WORKFLOW lets a wrapper (`cave wrap --workflow x`) label every request
// from an SDK app without a code change. An explicit option always wins.
// globalThis lookup keeps the SDK browser-neutral (no node type dependency).
// The env value is normalized to the gateway's label rule (lowercase
// [a-z0-9_-], max 96) — an invalid ambient value is ignored rather than
// 400-ing every request. Mirrors caveman_cloud (Python).
const envRaw = (globalThis as { process?: { env?: Record<string, string | undefined> } }).process?.env?.["CAVE_WORKFLOW"]?.toLowerCase();View on GitHub (pinned to 27d5a3981a)
Solutions
- Remove the query string and fragment from the URL.
When it happens
Trigger: Thrown at packages/sdk/typescript/src/index.ts:346 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of JuliusBrussee/caveman@27d5a3981a (2026-08-15).
Data as JSON: /api/errors/4688bf82fc48396f.
Report an issue: GitHub.