Some checks are pending
Test Dashboard / test-and-dashboard (push) Waiting to run
- Add 7 new Word tools to README (outline, search, entities, etc.) - Add 9 MCP prompts section with workflow descriptions - Gitignore reading progress bookmark files (.*.reading_progress.json) - Gitignore local .mcp.json and test documents
90 lines
906 B
Plaintext
90 lines
906 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
*.log
|
|
temp/
|
|
tmp/
|
|
*.office_temp
|
|
|
|
# uv
|
|
.uv/
|
|
|
|
# Temporary files created during processing
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Test documents (personal/private)
|
|
ORIGINAL - The Other Side of the Bed*.docx
|
|
|
|
# Reading progress bookmarks (user-specific)
|
|
.*.reading_progress.json
|
|
|
|
# Local MCP config
|
|
.mcp.json
|