webclaw/.gitignore
Valerio 05a2e0eced 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>
2026-04-16 19:40:16 +02:00

15 lines
469 B
Text

target/
.DS_Store
.env
.env.*
proxies.txt
.claude/skills/
# Scratch / local artifacts (previously covered by overbroad `*.json`,
# which would have also swallowed package.json, components.json,
# .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