Skip to content

Instantly share code, notes, and snippets.

@indexzero
Created June 29, 2026 14:44
Show Gist options
  • Select an option

  • Save indexzero/e9b3ce458446c150e4d72923216a1d9b to your computer and use it in GitHub Desktop.

Select an option

Save indexzero/e9b3ce458446c150e4d72923216a1d9b to your computer and use it in GitHub Desktop.
PROTIPS for quick data extraction when working with common LLM tools

claude.ai (web)

Get all expanded internal thoughts grouped by response

copy(
  [...document.querySelectorAll('div[data-timeline-text]')].map(
    block => [...block.querySelectorAll('.standard-markdown p')]
      .map(p => p.textContent.trim())
  )
)```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment