Captures and organizes screenshots for fact-checking, source documentation, and progress tracking...
Captures screenshots of sources, excerpts, and progress steps, organizing them into subfolders with URL references in documents.
weeks/YYYY/week-XX/
├── README.md
├── topic-name.md
└── screenshots/
├── sources/ # External sources, articles, documentation
├── progress/ # Step-by-step progress captures
└── excerpts/ # Specific quotes or data snippets
For each weekly entry with screenshots:
mkdir -p weeks/YYYY/week-XX/screenshots/{sources,progress,excerpts}
Use descriptive kebab-case names with date prefix:
sources/2025-01-19-article-title.pngprogress/step-01-initial-setup.pngexcerpts/quote-author-topic.pngInclude screenshots using relative paths:
## Sources

*Source: [Article Title](https://example.com/article) - Captured 2025-01-19*
## Progress
| Step | Screenshot | Description |
|------|------------|-------------|
| 1 |  | Initial setup |
| 2 |  | Configuration |
Always document the source URL alongside screenshots:
> **Fact-check reference:**
> - Screenshot: [view](screenshots/sources/filename.png)
> - Original URL: https://example.com/source
> - Captured: YYYY-MM-DD
# Full screen
screencapture -x screenshots/sources/filename.png
# Selection
screencapture -i screenshots/sources/filename.png
# Window
screencapture -w screenshots/sources/filename.png
take_screenshot of the current page