MCPcopy Create free account
hub / github.com/buct2012dbl/Dorchestrator / buildTaskTranscriptIntro

Function buildTaskTranscriptIntro

src/main/index.js:1873–1887  ·  view source on GitHub ↗
(task, replyMessage)

Source from the content-addressed store, hash-verified

1871}
1872
1873function buildTaskTranscriptIntro(task, replyMessage) {
1874 const parts = [
1875 '> Task prompt',
1876 replyMessage || task.prompt,
1877 ];
1878
1879 if (replyMessage) {
1880 parts.push('');
1881 parts.push('> Reviewer feedback');
1882 parts.push(replyMessage);
1883 }
1884
1885 parts.push('');
1886 return `${parts.join('\n')}\n`;
1887}
1888
1889function registerRuntimeTaskGraph(taskId, runtimeGraph) {
1890 runtimeTaskGraphs.set(taskId, runtimeGraph);

Callers 1

runKanbanTaskFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected