Replace \"深度推理(上海)科技有限公司\" with \"字节跳动子公司\" as the case study example to avoid exposing user's own company info. Also update .gitignore to exclude: - deep-research-output/ (contains sensitive research data) - recovered_deep_research/ - .opencli/ - douban-skill/ (work-in-progress) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
95 lines
959 B
Plaintext
95 lines
959 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
output/
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Archives (should not be in root)
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|
|
*.tgz
|
|
*.rar
|
|
*.7z
|
|
|
|
# Build artifacts
|
|
*.o
|
|
*.a
|
|
*.exe
|
|
*.dll
|
|
*.dylib
|
|
|
|
# Documentation artifacts that should be in docs/
|
|
IMPROVEMENT_PLAN.md
|
|
IMPLEMENTATION_SUMMARY.md
|
|
RELEASE_NOTES_*.md
|
|
INSTALLATION.md
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Private/commercial skills (moved to claude-code-skills-pro)
|
|
seo-expert/
|
|
video-creator/
|
|
/jsonl-viewer/
|
|
|
|
# Research output (may contain sensitive data)
|
|
deep-research-output/
|
|
recovered_deep_research/
|
|
|
|
# OpenCLI cache
|
|
.opencli/
|
|
|
|
# Work-in-progress skills
|
|
douban-skill/
|