-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.npmignore
More file actions
205 lines (174 loc) · 4.42 KB
/
.npmignore
File metadata and controls
205 lines (174 loc) · 4.42 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# NPM Package Exclusions for SuperLocalMemory V2
# Only include essential files for installation and runtime
# Copyright (c) 2026 Varun Pratap Bhardwaj
# ============================================================================
# Personal & Generated Data (NEVER include)
# ============================================================================
memory.db
*.db
!demo-memory.db
backups/
profiles/
vectors/
cold-storage/
jobs/
profiles.json
*.log
ui-server.log
# Private research & strategy (NEVER include)
.backup/
# Benchmarks (development only)
benchmarks/
# Personal configuration
CLAUDE.md
# ============================================================================
# Development & Testing (NOT needed for production)
# ============================================================================
__pycache__/
**/__pycache__/
src/__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
# Virtual environments
venv/
.venv/
env/
ENV/
# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Thumbs.db
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Test files and infrastructure
test_*.py
comprehensive_test.py
test_mcp_server.py
test_skills.py
test_edge_cases.py
test_new_modules.py
test_search_engine.py
test_ui_server.py
test_backward_compatibility.py
verify_*.py
test_demo.py
create_demo_db.py
verify_demo.py
# Test scripts
RUN_ALL_TESTS.sh
test_all_commands.sh
test-system.sh
tests/
# Test reports
TEST_REPORT.md
TESTING_COMPLETE.md
test-output/
test-results/
# ============================================================================
# Internal Documentation (NOT for distribution)
# ============================================================================
# Strategy documents
docs/plans/
plans/
docs/ATTRIBUTION-PROTECTION-SUMMARY.md
docs/UNIVERSAL-STRATEGY-2026.md
ATTRIBUTION-IMPLEMENTATION-REPORT.md
# Task completion reports
TASK-*.md
TASKS-*.md
TASK_*.md
COMPLETION*.md
AGENT-*.md
AGENT_*.md
STATUS-SUMMARY-*.md
FIXES-*.md
# Implementation summaries
IMPLEMENTATION-SUMMARY*.md
MIGRATION*.md
# UAT reports
UAT_*.md
EDGE_CASE*.md
# Internal quickstart docs (use official README/QUICKSTART)
V2.2.0-QUICKSTART.md
V2.2.0-README.txt
UI_SERVER_QUICKSTART.md
# Wiki source (use online wiki)
wiki-content/
# Additional developer docs
docs/MCP-MANUAL-SETUP.md
docs/TESTING-STRATEGY.md
docs/
# ============================================================================
# Build & CI/CD (NOT needed for runtime)
# ============================================================================
.git/
.github/
.gitignore
.gitattributes
# Config files
config.json
# Scripts that are only for development
sync-wiki.sh
add_attribution.py
start_ui_server.sh
start-dashboard.ps1
start-dashboard.sh
verify-install.sh
verify-install.ps1
# ============================================================================
# Large/Optional Components (Keep package size small)
# ============================================================================
# API server (optional, not in core package)
api_server.py
# UI server (optional, not in core package)
ui_server.py
ui/
# Old Claude Code skills (replaced by universal skills)
claude-skills/
# ============================================================================
# Documentation to KEEP (Essential for users)
# ============================================================================
# README.md - KEEP
# LICENSE - KEEP
# ATTRIBUTION.md - KEEP
# CHANGELOG.md - KEEP
# QUICKSTART.md - KEEP
# INSTALL.md - KEEP (installation reference)
# CONTRIBUTING.md - KEEP
# SECURITY.md - KEEP
# AUTHORS.md - KEEP
# ARCHITECTURE.md - KEEP (technical reference)
# ============================================================================
# Files to INCLUDE (Everything else needed for runtime)
# ============================================================================
# src/ - Core Python modules (REQUIRED)
# bin/ - CLI wrappers (REQUIRED)
# hooks/ - Git hooks (optional but small)
# configs/ - MCP configs (REQUIRED)
# skills/ - Universal skills (REQUIRED)
# completions/ - Shell completions (nice to have)
# scripts/ - NPM lifecycle scripts (REQUIRED)
# mcp_server.py - MCP server (REQUIRED)
# install.sh - Mac/Linux installer (REQUIRED)
# install.ps1 - Windows installer (REQUIRED)
# install-skills.sh - Skills installer (REQUIRED)
# requirements*.txt - Python deps (REQUIRED)
# Environment files
.env
.env.*
.env.local
# IDE integration tests (dev only)
ide/integrations/*/tests/
ide/integrations/*/tests/**
# Screenshots (bloat)
docs/screenshots/