different-ai/openwork · error
OpenWork must be activated from your Den portal before this
Error message
OpenWork must be activated from your Den portal before this command is available.
What it means
Error "OpenWork must be activated from your Den portal before this command is available." thrown in different-ai/openwork.
Source
Thrown at apps/desktop/electron/main.mjs:2437
if (message && !seenMessages.has(message)) {
seenMessages.add(message);
messages.push(message);
}
current = desktopErrorCause(current);
}
const combined = messages.join(": ") || "Unknown desktop command error";
return combined.length > 2000 ? `${combined.slice(0, 1997)}...` : combined;
} catch {
return "Unknown desktop command error";
}
}
function assertDesktopActivation() {
if (desktopActivationRequired(
DESKTOP_DISTRIBUTION,
workspaceStore.readDesktopBootstrapConfigSync(),
)) {
throw new Error("OpenWork must be activated from your Den portal before this command is available.");
}
}
async function handleDesktopInvoke(event, command, ...args) {
if (!enterprisePreactivationCommandAllowed(command)) {
assertDesktopActivation();
}
const handler = desktopCommandHandlers[command];
if (!handler) {
throw new Error(`Electron desktop bridge method is not implemented yet: ${command}`);
}
try {
return await handler(event, ...args);
} catch (error) {
throw new Error(desktopErrorMessageWithCauses(error), { cause: error });
}
}
View on GitHub (pinned to 2b7df46e8a)
When it happens
Trigger: Thrown at apps/desktop/electron/main.mjs:2437 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of different-ai/openwork@2b7df46e8a (2026-09-01).
Data as JSON: /api/errors/614d1f3ed8c47304.
Report an issue: GitHub.