#!/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: '' })); }