fix: correct hardcoded folder paths to use underscores
- Fix transcript-extract.sh: `00 Inbox/Clippings` → `00_Inbox/Clippings/` - Fix firecrawl-batch.sh: `00 Inbox/Clippings` → `00_Inbox/Clippings/` - Add `-o|--output-dir` flag to firecrawl-batch.sh for custom paths - Fix update-attachment-links.js: `05 Attachments` → `05_Attachments` - Fix fix-renamed-links.js: `05 Attachments` → `05_Attachments` - Fix GEMINI_VISION_QUICK_START.md example paths - Update README.md with new flag documentation All folder paths now match actual repo structure (underscores not spaces). This prevents scripts from failing due to incorrect directory references. Fixes #9 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
+10
-1
@@ -30,8 +30,13 @@ Scrapes multiple URLs and auto-generates filenames.
|
||||
|
||||
```bash
|
||||
# Requires FIRECRAWL_API_KEY environment variable
|
||||
|
||||
# Basic usage - saves to 00_Inbox/Clippings/
|
||||
.scripts/firecrawl-batch.sh <url1> <url2> <url3>
|
||||
# Files saved to 00_Inbox/Clippings/
|
||||
|
||||
# Custom output directory
|
||||
.scripts/firecrawl-batch.sh -o 01_Projects/Research/ <url1> <url2>
|
||||
.scripts/firecrawl-batch.sh --output-dir 03_Resources/Articles/ <url1> <url2>
|
||||
```
|
||||
|
||||
### Transcript Extraction
|
||||
@@ -41,7 +46,11 @@ Scrapes multiple URLs and auto-generates filenames.
|
||||
Extracts transcripts from YouTube videos.
|
||||
|
||||
```bash
|
||||
# Basic usage - saves to 00_Inbox/Clippings/
|
||||
.scripts/transcript-extract.sh <youtube-url>
|
||||
|
||||
# Custom output directory
|
||||
.scripts/transcript-extract.sh <youtube-url> 01_Projects/Research/
|
||||
```
|
||||
|
||||
## NPM Scripts
|
||||
|
||||
Reference in New Issue
Block a user