-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (47 loc) · 1.89 KB
/
Copy path.gitignore
File metadata and controls
62 lines (47 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# IDE settings
.vscode
# Local Claude Code settings
.claude/settings.local.json
# Snooty parser venv and clone cached by local-build-check skill.
# The skill now stores these in ~/.cache/docs-mongodb-internal/local-build-check/,
# but keep these gitignored as a safety net for any leftover copies.
.claude/skills/local-build-check/.venv/
.claude/skills/local-build-check/snooty-parser/
# Single-use handoff payloads written by the Grove VS Code extension and
# consumed by grove-* skills — should never be committed.
.claude/grove-handoff.json
# Skill eval workspaces and LLM score caches (local artifacts)
.claude/skills/*-workspace/
.claude/skills/**/.score_cache/
.claude/skills/run-evals.sh
# Local skill iteration notes (per-writer, not for commit)
.claude/version-bump-automation.md
# Claude Code agent worktrees (local artifacts)
.claude/worktrees/
# MacOS generated files
.idea
.DS_Store
.idea
.env
# AI chatlog file
.github/prompts/ai-chatlog.md
# Output files from the unified ToC implementation's verification script
/content/table-of-contents/verification-script/matched.csv
/content/table-of-contents/verification-script/missed.csv
# Local Netlify folder
.netlify
# pnpm can materialize a project-local store (e.g. isolated/sandbox installs); never commit
.pnpm-store/
# Lint-docs dependencies (installed locally when running linters)
.github/lint-docs/node_modules/
# local-build-check skill: per-writer error log and knowledge base.
# To share knowledge.md with the team, add: !.claude/build-errors/knowledge.md
.claude/build-errors/
# local-build-check tier 0: Snooty parser clone and venv (cached between runs).
# Delete these manually, or run check.sh --refresh-snooty, to pick up a newer
# version of the Snooty parser.
content/tools/local-snooty-build/snooty-parser/
content/tools/local-snooty-build/.venv/
# Python bytecode cache (e.g. generated when running .claude/hooks/*.py).
__pycache__/
*.pyc