The inner .gitignore at docs/scripts/extraction/.gitignore blanket-ignored *.md/*.json/*.jsonl so research-agent transcripts wouldn't drift in. The curated augmentation file needs an explicit exception so the Docker build step on production can read it during `node scripts/build-corpus.mjs`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
305 B
Plaintext
10 lines
305 B
Plaintext
# Extraction outputs from research-agent runs are typically large + transient.
|
|
# Keep them local by default — except the curated augmentation file which
|
|
# needs to ship for the Docker build to fold it into the LoRA corpus.
|
|
*.md
|
|
*.json
|
|
*.jsonl
|
|
|
|
# …with one explicit exception:
|
|
!lora-augmentation.jsonl
|