MCPcopy Index your code
hub / github.com/openai/codex-plugin-cc / appendReasoningSection

Function appendReasoningSection

plugins/codex/scripts/lib/render.mjs:166–175  ·  view source on GitHub ↗
(lines, reasoningSummary)

Source from the content-addressed store, hash-verified

164}
165
166function appendReasoningSection(lines, reasoningSummary) {
167 if (!Array.isArray(reasoningSummary) || reasoningSummary.length === 0) {
168 return;
169 }
170
171 lines.push("", "Reasoning:");
172 for (const section of reasoningSummary) {
173 lines.push(`- ${section}`);
174 }
175}
176
177export function renderSetupReport(report) {
178 const lines = [

Callers 2

renderReviewResultFunction · 0.85
renderNativeReviewResultFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected