Skip to content
Closed
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
8 changes: 4 additions & 4 deletions internal/parser/cursor.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import (
// under 500 KB; 10 MB provides generous headroom.
const maxCursorTranscriptSize = 10 << 20

// ParseCursorSession parses a Cursor agent transcript file.
// Transcripts are plain text with "user:" and "assistant:" role
// markers, tool calls, and thinking blocks.
func ParseCursorSession(
// parseSession parses a Cursor agent transcript file. Transcripts are plain
// text with "user:" and "assistant:" role markers, tool calls, and thinking
// blocks.
func (p *cursorProvider) parseSession(
path, project, machine string,
) (*ParsedSession, []ParsedMessage, error) {
// Open with O_NOFOLLOW (Unix) to reject symlinks at the
Expand Down
Loading