9ac6d96dee
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
504 B
JavaScript
9 lines
504 B
JavaScript
#!/usr/bin/env node
|
|
/** controller-negotiation — доводы контроллера из «Переговоров» плана для журнала наставника (Фикс 2b). */
|
|
import { parseNegotiationSection } from './negotiation-section.mjs';
|
|
|
|
export function controllerNegotiationEntries(planContent) {
|
|
const rounds = parseNegotiationSection(String(planContent ?? ''));
|
|
return rounds.map((r) => ({ round: r.round, side: 'controller', utterance: r.position, justification: '' }));
|
|
}
|