MCPcopy
hub / github.com/opactorai/Claudable / publishStatus

Function publishStatus

lib/services/cli/codex.ts:80–89  ·  view source on GitHub ↗
(projectId: string, status: string, requestId?: string, message?: string)

Source from the content-addressed store, hash-verified

78const CODEX_EXECUTABLE = process.platform === 'win32' ? 'codex.cmd' : 'codex';
79
80function publishStatus(projectId: string, status: string, requestId?: string, message?: string) {
81 streamManager.publish(projectId, {
82 type: 'status',
83 data: {
84 status,
85 message: message ?? STATUS_LABELS[status] ?? '',
86 ...(requestId ? { requestId } : {}),
87 },
88 });
89}
90
91async function ensureProjectPath(projectId: string, projectPath: string): Promise<string> {
92 const project = await getProjectById(projectId);

Callers 1

executeCodexFunction · 0.70

Calls 1

publishMethod · 0.80

Tested by

no test coverage detected