Skip to content
Merged
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
11 changes: 10 additions & 1 deletion src/analyzers/claude_code.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,13 @@ struct ClaudeCodeFileHistorySnapshotEntry {
fields: simd_json::OwnedValue,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct ClaudeCodeProgressEntry {
#[serde(flatten)]
fields: simd_json::OwnedValue,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct ClaudeCodeMessageEntry {
Expand Down Expand Up @@ -402,6 +409,8 @@ enum ClaudeCodeEntry {
Message(ClaudeCodeMessageEntry),
#[serde(rename = "queue-operation")]
QueueOperation(ClaudeCodeQueueOperationEntry),
#[serde(rename = "progress")]
Progress(ClaudeCodeProgressEntry),
}

pub mod tool_schema {
Expand Down Expand Up @@ -677,7 +686,7 @@ pub fn parse_jsonl_file<R: Read>(
));
continue;
}
_ => continue, // Skip other entry types like FileHistorySnapshot, QueueOperation
_ => continue, // Skip other entry types like FileHistorySnapshot, QueueOperation, Progress
};
}

Expand Down