-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (64 loc) · 1.12 KB
/
.gitignore
File metadata and controls
78 lines (64 loc) · 1.12 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
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
*.egg
.eggs/
# Virtual environments
.venv/
venv/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Jupyter
.ipynb_checkpoints/
# Environment
.env
.env.local
# Claude Code internals (NEVER commit — contains local config, skills, API keys context)
.claude/
AGENT.md
CLAUDE.md
HANDOFF.md
ROADMAP.md
# Credentials & secrets (NEVER commit)
*.pem
*.key
credentials*.json
secrets*.json
token*.txt
# Results (contain model outputs)
**/results/**
!experiment/isc_single/result_demo/
!experiment/isc_single/result_demo/guard/
!experiment/isc_single/result_demo/guard/zero-shot/
!experiment/isc_single/result_demo/guard/zero-shot/result.json
# Explore sandbox (test logs and candidates)
**/explore/
# Not ready for release
front/
isc_skill/
program.md
# Agent workspace (generated by notebooks)
**/workspace/
# UV
uv.lock
results.tsv
run.log
# Harmful content data files (regenerate with pipeline)
posts/
# Template outputs (contain harmful model outputs — keep local only)
templates/**/output*.txt
templates/**/output*.json
.omc/
config/
.playwright-mcp/