39 lines
1.2 KiB
Markdown
39 lines
1.2 KiB
Markdown
# Quick Log Entry
|
|
|
|
Ultra-efficient logging for ongoing work. Designed for rapid capture with zero conversation overhead.
|
|
|
|
## Usage
|
|
|
|
`/quick-log [entry_type] [brief_description]`
|
|
|
|
Examples:
|
|
- `/quick-log bug "Fixed compounding error in transitions"`
|
|
- `/quick-log feature "Added stop-loss protection"`
|
|
- `/quick-log data "Need to download real QQQ prices"`
|
|
- `/quick-log idea "Consider dynamic F&G thresholds"`
|
|
|
|
## Automatic Actions
|
|
|
|
1. **Timestamp**: Auto-add current datetime
|
|
2. **Categorize**: Sort by entry_type (bug/feature/data/idea/note)
|
|
3. **Append**: Add to today's log file `chat_history/daily_log_YYYY-MM-DD.json`
|
|
4. **Format**: Structured JSON for easy parsing
|
|
|
|
## JSON Output Format
|
|
```json
|
|
{
|
|
"timestamp": "2025-07-17T22:30:15",
|
|
"type": "bug|feature|data|idea|note",
|
|
"description": "user_provided_description",
|
|
"context": "auto_detected_files_or_directory",
|
|
"status": "logged"
|
|
}
|
|
```
|
|
|
|
## Benefits
|
|
- **Zero conversation**: One command logs immediately
|
|
- **No token waste**: Direct action, no back-and-forth
|
|
- **Searchable logs**: Structured data for later review
|
|
- **Continuous capture**: Build up session history incrementally
|
|
|
|
Perfect for: "Oh wait, I should note this down" moments during coding sessions. |