-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (81 loc) · 1.71 KB
/
.gitignore
File metadata and controls
107 lines (81 loc) · 1.71 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
# dependencies
node_modules/
# build outputs
dist/
.next/
out/
build/
# turborepo
.turbo/
# typescript
*.tsbuildinfo
# env files (NEVER commit real env files)
.env
.env.local
.env.*.local
.env.production
.env.staging
# postgres data volume
pgdata/
# misc
.DS_Store
*.pem
.vercel
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# next.js
next-env.d.ts
# testing
coverage/
test-results/
playwright-report/
tests/browser/.auth/
# prisma
apps/api/src/generated/
# deployment secrets
deployment/.env.*
!deployment/env.example
# npm artifacts
*.tgz
# ============================================================
# PRIVATE — Internal files that must NEVER be in the public repo
# ============================================================
# Internal research, strategy, market analysis, product plan
research/
# Original v0 prototype (contains PRD, tickets, internal specs)
v0-prototype/
# Python SDK (separate repo at github.com/sidclawhq/python-sdk)
python-sdk/
# Claude Code project instructions (contains architecture, strategy, gaps)
CLAUDE.md
# MCP server config (may contain API keys)
.mcp.json
# Implementation plans generated by superpowers skill
docs/superpowers/
# Internal guides
docs/assets/GIF-RECORDING-GUIDE.md
# Raw data files
*.jsonl
# Claude Code internals
.agents/
.claude/
skills-lock.json
.superpowers/
# Landing page experiments and design demos (internal only)
apps/landing/src/app/experiments/
apps/landing/src/app/design-demo/
apps/landing/src/components/design-demo/
# Local integration test scripts (contain hardcoded local URLs)
tests/real-composio/
# Python caches (hooks/ has Python tests)
__pycache__/
*.pyc
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/
.venv/
releasing.md