-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
65 lines (58 loc) · 1.19 KB
/
Copy path.gitignore
File metadata and controls
65 lines (58 loc) · 1.19 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
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.hypothesis/
.coverage
.coverage.*
htmlcov/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Environment
.env
.env.local
.env.*.local
# OS
.DS_Store
Thumbs.db
# EpisodicRAG - User-specific files
config.json
last_digest_times.json
# EpisodicRAG - User data directories
Loop/
Loops/
Digest/
Digests/
Essence/
Essences/
Identity/
Identities/
# EmailingEssay
archive/
# Secrets — tokens/PATs are injected locally, never committed.
# wakeup skill: place your own token archive inside the skill before zipping it for claude.ai.
*.pat
*.token
**/token.zip
**/token.tar.gz
**/token.tgz
**/GitHubPAT*
# wakeup skill: `materialize` output at the skill root (deployment artifacts, not sources).
# The directive is persona-named, so ignore every md there except the spec itself.
EpisodicRAG/skills/wakeup/wakeup.config.json
EpisodicRAG/skills/wakeup/token.*
EpisodicRAG/skills/wakeup/*.md
!EpisodicRAG/skills/wakeup/SKILL.md
# ConsiderateCoder - SDD working files (kept locally when developing via /outsource)
IMPLEMENTATION_PLAN.md
outsource-report-*.html
# pytest-cov local artifact (CI collects it via upload-artifact, not the repo)
coverage.xml