-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (94 loc) · 3 KB
/
.gitignore
File metadata and controls
110 lines (94 loc) · 3 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
# ══════════════════════════════════════════
# EvoNexus — .gitignore
# Framework files are tracked.
# Personal data, secrets, and runtime output are NOT.
# ══════════════════════════════════════════
# ── Secrets & credentials ─────────────────
.env
# Workspace — personal data, ignore everything except .gitkeep placeholders
workspace/**
!workspace/
!workspace/**/
!workspace/**/.gitkeep
# ── Learning loop — user fact data (gitignored, may contain third-party content) ──
workspace/learning/facts/
workspace/learning/decks/
workspace/learning/.state/
workspace/projects/*/
# README is intentionally tracked (exception to workspace/** rule)
!workspace/learning/README.md
# ── Agent memory (runtime, personal) ──────
.claude/agent-memory/
memory/**
!memory/.gitkeep
# ── Custom agents/skills/commands (user-specific) ────────
.claude/agents/custom-*
.claude/commands/custom-*
.claude/skills/custom-*
# ── Custom templates (user-specific) ─────
.claude/templates/html/custom/
.claude/templates/custom/
# ── Custom routines (user-specific, all in one place) ─
ADWs/routines/custom/
# ── Provider config (user-specific, has API keys) ─
config/providers.json
# ── Runtime data & logs ───────────────────
backups/
ADWs/logs/
dashboard/data/*.db
dashboard/data/*.db-shm
dashboard/data/*.db-wal
dashboard/data/.secret_key
dashboard/data/mempalace/
dashboard/backend/*.db
dashboard/backend/*.db-shm
dashboard/backend/*.db-wal
dashboard/frontend/node_modules/
dashboard/terminal-server/node_modules/
dashboard/terminal-server/package-lock.json
dashboard/frontend/dist/
# ── Evo Method (separate project) ────────
_evo/
_evo-output/
.claude/skills/release/
# ── Python ────────────────────────────────
.venv/
__pycache__/
*.pyc
# ── OS ────────────────────────────────────
.DS_Store
Thumbs.db
# ── Generated configs (user-specific) ────
CLAUDE.md
config/workspace.yaml
config/routines.yaml
config/triggers.yaml
config/heartbeats.yaml
# ── Claude Code session data ─────────────
.claude/projects/
.claude/image-cache/
.claude/todos/
.claude/TASKS.md
# ── Site (landing page) ──────────
site/node_modules/
site/dist/
site/package-lock.json
site/.cache/
# Replit artifacts (not needed in standalone build)
site/.git/
site/artifacts/
site/attached_assets/
site/.agents/
site/.canvas/
site/.local/
site/.replit
site/.replitignore
site/.npmrc
site/pnpm-lock.yaml
site/pnpm-workspace.yaml
site/replit.md
site/lib/
# ── User-specific data ───────────
mempalace.yaml
entities.json
.claude/worktrees/