diff --git a/src/utils/contents.js b/src/utils/contents.js index ccf2828e..f1d5ddef 100644 --- a/src/utils/contents.js +++ b/src/utils/contents.js @@ -84,6 +84,11 @@ const PROMPT_DEFINITIONS = { title: 'Claude Code Compact System Prompt', text: 'You are a helpful AI assistant tasked with summarizing conversations.' }, + exploreAgentSystemPrompt: { + category: 'system', + title: 'Claude Code Explore Agent System Prompt', + text: "You are a file search specialist for Claude Code, Anthropic's official CLI for Claude." + }, outputStyleInsightsPrompt: { category: 'output_style', title: 'Output Style Insights Addendum', diff --git a/src/validators/clients/claudeCodeValidator.js b/src/validators/clients/claudeCodeValidator.js index 3b538794..af155f1f 100644 --- a/src/validators/clients/claudeCodeValidator.js +++ b/src/validators/clients/claudeCodeValidator.js @@ -64,9 +64,8 @@ class ClaudeCodeValidator { const rawText = typeof entry?.text === 'string' ? entry.text : '' const { bestScore } = bestSimilarityByTemplates(rawText) if (bestScore < threshold) { - logger.error( - `Claude system prompt similarity below threshold: score=${bestScore.toFixed(4)}, threshold=${threshold}, prompt=${rawText}` - ) + logger.error(`Claude system prompt similarity below threshold: score=${bestScore.toFixed(4)}, threshold=${threshold}`) + logger.warn(`Claude system prompt detail: ${rawText}`) return false } }