-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
135 lines (112 loc) · 1.99 KB
/
Copy path.gitignore
File metadata and controls
135 lines (112 loc) · 1.99 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Dependencies
node_modules/
# Environment files (NEVER commit real secrets)
.env
.env.local
.env.*.local
*.env
!.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.venv/
venv/
ENV/
# Testing
.pytest_cache/
.coverage
coverage/
.nyc_output/
htmlcov/
# Build artifacts
build/
dist/
typechain-types/
rust/totalreclaw-core/pkg/
rust/totalreclaw-core/target/
rust/totalreclaw-memory/target/
# Data files (too large / contain PII)
testbed/v2-realworld-data/raw/
testbed/v2-realworld-data/processed/
testbed/benchmark_results/
*.npy
*.sqlite
*.sqlite3
*.sql.gz
*.zip
*.parquet
# Cloned repos inside functional test directories
testbed/functional-test/openclaw/
testbed/functional-test-nanoclaw/nanoclaw/
# Generated test output
testbed/output/
testbed/reports/
ombh/output/
ombh/reports/
# Backups
backups/
# Session plans and implementation details (private)
plans/
docs/plans/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Databases
*.db
# API keys and credentials
credentials.json
auth.json
*.pem
*.key
testbed/config/api_keys.env
# Claude Code
.claude/
# Hardhat / Solidity
contracts/cache/
artifacts/
# The Graph
generated/
# Linter / formatter caches
.ruff_cache/
# Docker
docker-compose.override.yml
# Internal coordination files (not for public repo)
TASKS.md
CHANGELOG.md
# Package-level CHANGELOGs ARE tracked — they ship with the package.
!python/CHANGELOG.md
!mcp/CHANGELOG.md
!rust/totalreclaw-core/CHANGELOG.md
!rust/totalreclaw-memory/CHANGELOG.md
!skill/plugin/CHANGELOG.md
!skill-nanoclaw/CHANGELOG.md
!CHANGELOG-public.md
# Misc
*.tgz
*.tar.gz
*.tmp
*.bak
tests/e2e-functional/results/
tests/parity/node_modules/
subgraph/tests/e2e-results/*.json
subgraph/tests/e2e-results/*.txt
# Package lockfiles use local file: refs that break CI
client/package-lock.json
mcp/package-lock.json
# Foundry vendored libraries — install via 'forge install foundry-rs/forge-std' from contracts/
contracts/lib/forge-std/
contracts/out/
.desloppify/