@cleocode/cleo 2026.4.36 → 2026.4.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +3 -1
- package/dist/cli/index.js.map +2 -2
- package/package.json +8 -8
package/dist/cli/index.js
CHANGED
|
@@ -45205,7 +45205,9 @@ async function extractFromTranscript(options) {
|
|
|
45205
45205
|
const maxTranscriptChars = llmCfg?.maxTranscriptChars ?? 6e4;
|
|
45206
45206
|
const client = options.client ?? await buildAnthropicClient();
|
|
45207
45207
|
if (!client) {
|
|
45208
|
-
report.warnings.push(
|
|
45208
|
+
report.warnings.push(
|
|
45209
|
+
"No Anthropic API key found (checked ANTHROPIC_API_KEY env and ~/.claude/.credentials.json) \u2014 extraction skipped"
|
|
45210
|
+
);
|
|
45209
45211
|
return report;
|
|
45210
45212
|
}
|
|
45211
45213
|
const clipped = clipTranscript(transcript, maxTranscriptChars);
|