Files
docker-configs/backtest/.claude/slash-commands/quick-log.md
2025-07-18 00:00:01 -05:00

1.2 KiB

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

{
  "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.