cursor
cursor copied to clipboard
bug feature-request conversation-tracking
title: [Bug] Conversation Tracking Feature Not Working
Cursor Bug Report: Conversation Tracking Not Working
Environment
- OS: Windows 10.0.22631
- Workspace Path: D:/av
- Shell: C:\Program Files\PowerShell\7\pwsh.exe
Issue Description
The conversation tracking feature is not working despite proper configuration in .cursor/settings.json. No conversation logs are being generated.
Configuration
{
"conversation_tracking": {
"enabled": true,
"output_dir": "D:/av/cursor_talks",
"log_level": "debug",
"rules": {
"file_specific_logs": {
"enabled": true,
"format": {
"timestamp": true,
"timestamp_format": "%Y-%m-%d %H:%M:%S",
"speaker_prefix": true
}
}
},
"triggers": {
"on_file_focus": true,
"on_file_mention": true
}
}
}
Expected Behavior
- Create output directory if it doesn't exist
- Generate conversation logs when:
- File is focused
- File is mentioned in conversation
- Save logs according to configured format
Actual Behavior
- Output directory is not created
- No conversation logs are generated
- No error messages or warnings are shown
- Feature appears completely non-functional
Steps to Reproduce
- Create
.cursor/settings.jsonwith conversation tracking enabled - Set valid output directory and configuration
- Focus on different files or mention files in conversation
- Check output directory for logs
Additional Notes
- Configuration file is valid JSON
- All required settings are present
- No error messages in console
- Feature appears to be completely inactive rather than partially working
Impact
Unable to track and document conversations about code, which impacts:
- Code review documentation
- Development history tracking
- Team collaboration
- Project documentation
Suggested Investigation Areas
- Configuration file loading logic
- Event handling implementation
- File system permissions
- Logging implementation
Workarounds Attempted
- Using relative path for output_dir
- Different directory names
- Different permission levels
- Different file patterns