From 6dfbfdaa385d167dac2486a01347bc8314d26372 Mon Sep 17 00:00:00 2001 From: Anton_Yeromin Date: Fri, 3 Jul 2026 13:01:06 +0200 Subject: [PATCH 1/2] chore(agents): bump Claude Code supported version to 2.1.199 --- src/agents/plugins/claude/claude.plugin.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From c2c938db2160eba5e48ca7bad80ccbadd67a1d80 Mon Sep 17 00:00:00 2001 From: Anton_Yeromin Date: Fri, 3 Jul 2026 13:01:17 +0200 Subject: [PATCH 2/2] fix(analytics): guard against non-string prompt text in report generation --- src/cli/commands/analytics/aggregator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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