diff --git a/src/agents/plugins/claude/claude.plugin.ts b/src/agents/plugins/claude/claude.plugin.ts index e519380e..69d80984 100644 --- a/src/agents/plugins/claude/claude.plugin.ts +++ b/src/agents/plugins/claude/claude.plugin.ts @@ -30,17 +30,17 @@ let statuslineManagedThisSession = false; * * **UPDATE THIS WHEN BUMPING CLAUDE VERSION** */ -const CLAUDE_SUPPORTED_VERSION = '2.1.178'; +const CLAUDE_SUPPORTED_VERSION = '2.1.199'; /** * Minimum supported Claude Code version * Versions below this are known to be incompatible and will be blocked from starting * Rule: always 10 patch versions below CLAUDE_SUPPORTED_VERSION - * e.g. supported = 2.1.178 → minimum = 2.1.168 + * e.g. supported = 2.1.199 → minimum = 2.1.189 * * **UPDATE THIS WHEN BUMPING CLAUDE VERSION** */ -const CLAUDE_MINIMUM_SUPPORTED_VERSION = '2.1.168'; +const CLAUDE_MINIMUM_SUPPORTED_VERSION = '2.1.189'; /** * Claude Code installer URLs diff --git a/src/cli/commands/analytics/aggregator.ts b/src/cli/commands/analytics/aggregator.ts index 14161618..f2d9ca69 100644 --- a/src/cli/commands/analytics/aggregator.ts +++ b/src/cli/commands/analytics/aggregator.ts @@ -789,7 +789,7 @@ export class AnalyticsAggregator { } for (const prompt of prompts) { const raw = prompt?.text; - if (!raw) { + if (typeof raw !== 'string' || !raw) { continue; } const cleaned = raw