The research-agent augmentation file (196 high-quality Q/A pairs with file:line citations, real production code excerpts, varied phrasings) needs to ship with the repo so the production Docker build's `node scripts/build-corpus.mjs` step picks it up. Distribution by kind: 78 code-recall · 50 workflow · 24 inikey · 13 gotcha 12 debug · 11 comparison · 7 edge-case · 1 refactor Effect on the en-language corpus: before: 1055 records per format (instructions/chat/completion) after: 1264 records per format (+209 from augmentation × 1 fan-out) Removed from .gitignore. The summary text file stays gitignored (regenerated on every agent run). The corpus output at docs/public/corpus/ remains gitignored — built fresh in CI/Docker. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
core/l/*
|
|
# Production secrets — copy from .example, fill in, never commit.
|
|
application/settings/config/settings.production.ini
|
|
application/settings/config/settings.staging.ini
|
|
application/module/ai/settings/ai.production.ini
|
|
application/module/ai/settings/ai.staging.ini
|
|
application/module/ai/cache/
|
|
|
|
# IDE / editor metadata
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
.fleet/
|
|
|
|
# OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Node / JS dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
.astro/
|
|
.next/
|
|
.cache/
|
|
|
|
# Smarty compile / cache (regenerated at runtime)
|
|
application/view/templates_c/
|
|
application/view/cache/
|
|
|
|
# Test artefacts
|
|
.playwright-mcp/
|
|
|
|
# IDE / file-recovery dumps (JetBrains)
|
|
.fr-*
|
|
docs2/
|
|
|
|
# Local-only experiments
|
|
docs.bak/
|
|
*.local
|
|
|
|
# LoRA corpus build output — regenerated by scripts/build-corpus.mjs.
|
|
# Lives under public/ so Astro serves /corpus/*.jsonl, but is build-time
|
|
# generated and shouldn't enter git.
|
|
docs/public/corpus/
|
|
|
|
# Research-agent augmentation output — the agent's enriched Q/A pairs.
|
|
# Generated, not curated by hand.
|