Files
phernandez 6a7206ad9a feat: add DXT packaging support (experimental)
- Add comprehensive manifest.json with all 19 Basic Memory MCP tools
- Implement automated DXT build process via justfile (just dxt)
- Add DXT assets (icons and screenshots)
- Create .dxtignore for excluding development files
- Update .gitignore to exclude generated DXT bundle files

Note: DXT implementation blocked by Anthropic DXT v0.1 limitations:
- Binary permissions issues (anthropics/dxt#12)
- Platform-specific dependency problems (anthropics/dxt#17)
- Native module loading errors with pydantic_core

See issue #193 for detailed analysis and future implementation plan.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-28 14:52:15 -05:00

81 lines
746 B
Plaintext

# Development files
.venv/
.pytest_cache/
.coverage*
htmlcov/
.ruff_cache/
**/__pycache__/
*.pyc
*.pyo
*.pyd
.env
.env.*
# Testing
test*/
tests/
*.test.js
*.test.py
pytest.ini
# Build artifacts
dist/
build/
*.egg-info/
.tox/
# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
# Claude
.claude
# Git files
.git/
.gitignore
# Documentation build
docs/_build/
# Temporary files
*.tmp
*.log
.DS_Store
Thumbs.db
# DXT package output
*.dxt
dxt-bundle/
# Lock files
uv.lock
package-lock.json
yarn.lock
# Docker
Dockerfile
docker-compose.yml
.dockerignore
# CI/CD
.github/
justfile
smithery.yaml
# Project files
.python.version
CHANGELOG.md
CITATION.cff
CLA.md
CLAUDE.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
README.md
SECURITY.md
docs/
llms-install.md