-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path.gitignore
More file actions
152 lines (129 loc) · 2.89 KB
/
.gitignore
File metadata and controls
152 lines (129 loc) · 2.89 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# Python bytecode and distribution
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
# Python environments
.venv/
# Environment variables
.env
.env.*
.env.local
# A2A v1.0 agent-card signing keys — minted on first run, must NEVER be committed.
.bernstein/keys/
# Internal docs (local only — kept on disk, excluded from git)
docs/superpowers/
docs/research/
docs/launch/
docs/social/
docs/conference/
docs/plans/
docs/specs/
docs/content-calendar.md
docs/jetbrains-deferral.md
docs/roadmap-200-tickets.md
# IDE and Editor directories/files
.DS_Store
.idea/
.vscode/
*.swp
# AI/assistant/Claude-specific tooling
.claude/
# Package and dependency caches
node_modules/
.pytest_cache/
.ruff_cache/
.mypy_cache/
# Bernstein workspace state — .sdd must NEVER be committed to git (CI enforced)
.sdd/
# MkDocs build output
site/
# Design specs and development plans (private)
docs/specs/
docs/plans/
# Build / test artifacts
coverage-test.xml
coverage*.xml
*.junit.xml
htmlcov/
.coverage
# Project/Repository-specific generated or log files
*.pid
*.log
# Git worktrees
.worktrees/
# Coverage reports
.coverage
coverage.xml
htmlcov/
# Documentation and content
docs/social/
docs/content-calendar.md
docs/research*
# Internal-only design specs / workflow design (never ship to public docs)
dev/
docs/internal/
docs/strategy/
docs/competitive/
docs/_internal/
# Release-notes drafts and outreach copy (live in /pr/, never the repo)
.release-notes-*.draft.md
.release-notes-*.outreach.md
.release-notes-*.internal.md
.release-notes-*.wip.md
.release-*.md
*-outreach.md
*-draft.md
*.draft.md
# Marketing
marketing/*
# Runtime-local MCP config (localhost server, not for sharing)
.claude/mcp.json
.hypothesis/
.mcpregistry_github_token
.mcpregistry_registry_token
# Stray secret-token files. Narrowed from `*token*` — that pattern also
# matched `src/bernstein/core/tokens/**`, which made hatchling drop the
# entire sub-package from the wheel (v1.8.10 crashed on `bernstein run`
# with ModuleNotFoundError: bernstein.core.tokens). Do NOT revert.
*.token
*_token.json
*_token.yaml
*_token.txt
auth_token*
docs/openapi.json
# pytest-benchmark output
.benchmarks/
.env
# Local benchmark run artifacts (simulation/eval outputs — regenerated on demand)
benchmarks/results/
benchmarks/swe_bench/results/
.cache/
# Internal-only research / strategy / audit material (never ship to public docs)
docs/internal/
docs/strategy/
docs/competitive/
docs/_internal/
docs/**/_internal/
docs/**/INTERNAL_*.md
docs/**/*-internal.md
docs/**/*-strategy.md
docs/**/*-roadmap.md
docs/**/*-deep-audit*.md
docs/**/*-deep-dive*.md
docs/**/*-analysis-v*.md
docs/**/*-roadmap-signals*.md
docs/**/*-inheritance*.md
docs/**/*-gap-map*.md
docs/**/*-backlog-*.md
docs/**/RESRCH-*.md
docs/**/KF-*.md
docs/**/MT-*.md
docs/**/OAI-*.md
docs/**/SDD-*.md
docs/**/RAG-*.md
# mutmut 3 working tree (./mutants/) and mutation-test cache (.mutmut-cache)
mutants/
.mutmut-cache