mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
6a7206ad9a
- 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>
59 lines
616 B
Plaintext
59 lines
616 B
Plaintext
*.py[cod]
|
|
__pycache__/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Installer artifacts
|
|
installer/build/
|
|
installer/dist/
|
|
rw.*.dmg # Temporary disk images
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.coverage.*
|
|
|
|
# obsidian docs:
|
|
/docs/.obsidian/
|
|
/examples/.obsidian/
|
|
/examples/.basic-memory/
|
|
|
|
|
|
# claude action
|
|
claude-output
|
|
**/.claude/settings.local.json
|
|
|
|
# DXT package files
|
|
basic-memory.dxt
|
|
dxt-bundle/ |