Skip to content

Commit a6f7232

Browse files
committed
chore: untrack analyze.md (keep on disk, project-local working notes)
analyze.md is a session-scoped working-notes file (~240 KB of audit/plan material) that does not belong in the public SDK repo. Remove from version control but keep on disk for the author's reference. - git rm --cached analyze.md: drop from index, file stays on disk - add analyze.md to .gitignore so it isn't accidentally re-added - drop the self-referential '.gitignore' entry from .gitignore so future edits don't need 'git add -f'
1 parent 5459964 commit a6f7232

2 files changed

Lines changed: 69 additions & 2431 deletions

File tree

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
7+
# Distribution / packaging
8+
.Python
9+
build/
10+
develop-eggs/
11+
dist/
12+
downloads/
13+
eggs/
14+
.eggs/
15+
lib/
16+
lib64/
17+
parts/
18+
sdist/
19+
var/
20+
wheels/
21+
share/python-wheels/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
MANIFEST
26+
27+
# Virtual environments
28+
.venv/
29+
venv/
30+
env/
31+
ENV/
32+
env.bak/
33+
venv.bak/
34+
.python-version
35+
36+
# Test / coverage / type / lint caches
37+
.pytest_cache/
38+
.coverage
39+
.coverage.*
40+
htmlcov/
41+
coverage.xml
42+
.tox/
43+
.nox/
44+
.mypy_cache/
45+
.ruff_cache/
46+
.hypothesis/
47+
48+
# IDE / editor
49+
.idea/
50+
.vscode/
51+
*.swp
52+
*.swo
53+
*~
54+
.DS_Store
55+
56+
# Secrets / local config
57+
.env
58+
.env.local
59+
.env.*.local
60+
*.pem
61+
*.key
62+
63+
# Claude Code / claude-flow project-local state
64+
.claude/
65+
.claude-flow/
66+
CLAUDE.md
67+
68+
# Project-local working notes (kept on disk, not in VCS)
69+
analyze.md

0 commit comments

Comments
 (0)