-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
109 lines (91 loc) · 1.47 KB
/
Copy path.gitignore
File metadata and controls
109 lines (91 loc) · 1.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual environments
venv/
env/
ENV/
# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~
# Data files (generated datasets — too large for git)
*.jsonl
*.jsonl.zst
*.jsonl.zstd
*.parquet
*.csv
# JSON result/config artifacts
*.json
# (tracked configs use .yaml, not .json)
# Text artifacts (research notes, scratch docs)
*.txt
!requirements.txt
# Personas (character files — excluded from public repo)
personas/
# Experiments (training artifacts, checkpoints, results)
experiments/
# Archive of one-off analysis/audit scripts
archive/
# Temporary and development-only directories
temp_scripts/
conversation_notes/
# Generated reports and audit docs (upper and lowercase patterns)
*_REPORT*.md
*_report*.md
*_AUDIT*.md
*_audit*.md
*_ANALYSIS*.md
*_analysis*.md
*_SUMMARY*.md
*_summary*.md
*_DESIGN*.md
*_design*.md
PILOT_*.md
*pilot_*.md
TGYM_*.md
VFS_*.md
zstdtokenizer.md
INSTALLATION_QUICK_START.md
# Status/planning docs (generated during development)
*_STATUS*.md
*_READY*.md
*_COMPLETE*.md
# Media and document artifacts
*.png
*.svg
*.html
# Shell scripts (one-off install/setup)
install_vllm*.sh
preflight_check.sh
# Logs and temporary files
*.log
*.tmp
.DS_Store
tmp.*
.sourceme
dd.sh
# API keys and secrets (never commit!)
.env
.env.e2e
*_key.txt
*_api_key.txt
# Docker
.dockerignore
# Testing
.pytest_cache/
.coverage
htmlcov/
# Cache files
.llm_tool_cache.json
*.cache.json
.ruff_cache/