-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
95 lines (81 loc) · 2.78 KB
/
Copy path.gitignore
File metadata and controls
95 lines (81 loc) · 2.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Vendored toolchains / local caches
.vendor/
.codehelper/
# Node
node_modules/
# VS Code extension (developed on branch vscode-extension, not on main)
vscode-extension/
# Release script scratch (never commit — `git add -A` during release must not pick this up)
.release-commit-msg.txt
# Build outputs
/bin/
/dist/
/codehelper
*.vsix
*.exe
vscode-extension/out/
# VS Code workspace artifacts (keep .vscode/ shared if needed; ignore local-only dirs)
.vscode-test/
# Source maps (generated)
**/*.map
# AI assistant / editor-generated rule files (local, not for the repo)
CLAUDE.md
.cursor/
.claude/
# Stray indexer artifacts (generated when sub-paths get indexed as shards)
*.tmp
internal/*/AGENTS.md
.testbeds/
# Local-LLM / embedding experiment + generated artifacts (doc-synth output, model
# sweeps, benchmark scratch) — produced per-machine, not source. Keeps the repo clean.
*.synth.json
*.gguf
.ge-models/
scratch-experiments/
docs/LOCAL_LLM_BENCH.md
# codehelper-eval output (derived from local transcripts; per-machine, may contain
# snippets of your own code/sessions — never source).
eval-results/
# Internal notes, research drafts, session logs, and machine-specific benchmark
# output — kept on disk for local use; excluded from public mirrors too.
goal.md
performance.txt
docs/releases/
docs/VERIFICATION_RUN.md
docs/COMMAND_AUDIT.md
docs/benchmark-results.json
docs/ORCHESTRATION_BENCHMARK.md
docs/LLM_USAGE.md
docs/IMPROVEMENTS.md
docs/MCP_EXTENSION_IDEAS.md
docs/COMPARISON.md
docs/EXAMPLE_QUESTIONS.md
# docs/ — published subset only (everything else is local)
docs/*
!docs/MCP_TOOLS.md
!docs/BENCHMARK.md
!docs/public/
!docs/public/**
scripts/publish-public-mirrors.sh
# third_party — research docs, experiments, infra (on disk; not tracked in codehelper)
third_party/green-engine/docs/
third_party/green-engine/experiments/
third_party/green-engine/idea.md
third_party/green-compress/docs/
third_party/green-compress/experiments/
third_party/green-compress/TEST_REPORT.md
third_party/green-compress/scripts/vps-deploy.sh
third_party/green-compress/scripts/vps-setup.sh
third_party/green-compress/scripts/install-github-runner.sh
third_party/green-compress/scripts/fix-github-runner.sh
third_party/green-compress/scripts/backfill_benchmark_txt.py
third_party/green-compress/scripts/codec_compare.py
third_party/green-compress/scripts/compare_frontier.py
third_party/green-compress/scripts/compare_runtime_stacks.py
third_party/green-compress/scripts/e2e_mixed_precision.py
third_party/green-compress/scripts/estimate_model_ram.py
third_party/green-compress/scripts/mixed_precision_analysis.py
third_party/green-compress/scripts/perplexity_mixed_precision.py
third_party/green-compress/.github/workflows/deploy.yml
# Rust build output from vendored green binaries (built only in CI)
third_party/**/target/