chore: gitignore CLI research dumps, drop accidentally-tracked file

research-*.json output from `webclaw ... --research ...` got silently
swept into git by the relaxed *.json gitignore in the preceding commit.
The old blanket *.json rule was hiding both this legitimate scratch
file AND packages/create-webclaw/server.json (MCP registry config that
we DO want tracked).

Removes the research dump from git and adds a narrower research-*.json
ignore pattern so future CLI output doesn't get re-tracked by accident.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Valerio 2026-04-16 19:40:16 +02:00
parent 98c30365a2
commit 05a2e0eced
2 changed files with 4 additions and 541 deletions

4
.gitignore vendored
View file

@ -9,3 +9,7 @@ proxies.txt
# .smithery/*.json if they were ever modified).
*.local.json
local-test-results.json
# CLI research command dumps JSON output keyed on the query; they're
# not code and shouldn't live in git. Track deliberately-saved research
# output under a different name.
research-*.json

File diff suppressed because one or more lines are too long