Show file details for "read" and "modified" counts in session view #94
Labels
No labels
good first issue
has-pr
help wanted
idea
priority
critical
priority
high
priority
low
priority
medium
status
blocked
status
in-progress
status
needs-review
status
ready
type
bug
type
docs
type
enhancement
type
feature
type
refactor
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
customable/claude-mem#94
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The session view displays counts like "1 read" and "1 modified" but there's no way to see which files were actually read or modified.
Current Behavior
Desired Behavior
Implementation Options
Status Check:
The current Session view (
Sessions.tsx) does not display "read" and "modified" counts at all. It shows:observation_count- Number of observationsprompt_count- Number of promptsHowever, the Projects view (
Projects.tsx) already has this feature implemented:Options:
The Projects view implementation could be reused if we want to add this to Sessions. @jack - please clarify the intended scope.
Analysis:
The Session view currently shows
observation_countandprompt_count, but not file read/modified counts. Thefiles_readandfiles_modifieddata exists on individual Observations, not on Sessions.Current State:
Implementation Options:
files_read/files_modifiedacross all observations in a sessionNeeds decision on which approach to take. Option 3 is already working - users can click on observations to see file details.