(commit: StreamCommit)
| 79 | } |
| 80 | |
| 81 | export function entryFlags(commit: StreamCommit): EntryFlags { |
| 82 | if (commit.summary) { |
| 83 | return { |
| 84 | startOnNewLine: true, |
| 85 | trailingNewline: false, |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | if (commit.kind === "user") { |
| 90 | return { |
| 91 | startOnNewLine: true, |
| 92 | trailingNewline: false, |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | if (commit.kind === "tool") { |
| 97 | if (commit.phase === "progress") { |
| 98 | return { |
| 99 | startOnNewLine: false, |
| 100 | trailingNewline: false, |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | return { |
| 105 | startOnNewLine: true, |
| 106 | trailingNewline: true, |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | if (commit.kind === "assistant" || commit.kind === "reasoning") { |
| 111 | if (commit.phase === "progress") { |
| 112 | return { |
| 113 | startOnNewLine: false, |
| 114 | trailingNewline: false, |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | return { |
| 119 | startOnNewLine: true, |
| 120 | trailingNewline: true, |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | if (commit.kind === "error") { |
| 125 | return { |
| 126 | startOnNewLine: true, |
| 127 | trailingNewline: false, |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | return { |
| 132 | startOnNewLine: true, |
| 133 | trailingNewline: true, |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | export function entryDone(commit: StreamCommit): boolean { |
| 138 | if (commit.kind === "assistant" || commit.kind === "reasoning") { |
no outgoing calls
no test coverage detected