Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/agents/plugins/claude/claude.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/analytics/aggregator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading