@cleocode/core 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/index.js CHANGED
@@ -41744,7 +41744,9 @@ async function extractFromTranscript(options) {
41744
41744
  const maxTranscriptChars = llmCfg?.maxTranscriptChars ?? 6e4;
41745
41745
  const client = options.client ?? await buildAnthropicClient();
41746
41746
  if (!client) {
41747
- report.warnings.push("No Anthropic API key found (checked ANTHROPIC_API_KEY env and ~/.claude/.credentials.json) \u2014 extraction skipped");
41747
+ report.warnings.push(
41748
+ "No Anthropic API key found (checked ANTHROPIC_API_KEY env and ~/.claude/.credentials.json) \u2014 extraction skipped"
41749
+ );
41748
41750
  return report;
41749
41751
  }
41750
41752
  const clipped = clipTranscript(transcript, maxTranscriptChars);