Files
claude-mnemonic/.gitignore
T
lukaszraczylo f07875ee82 fix: plugin no longer vanishes after Claude Code updates
Root cause: plugin registered as directory source in known_marketplaces.json,
which gets wiped on CLI updates. Now registers in extraKnownMarketplaces
(settings.json) as a GitHub source — same mechanism caveman/context-mode use.

Binaries install to ~/.claude-mnemonic/bin/ instead of the Claude-managed
plugins directory. Thin wrapper scripts in the repo let the marketplace
clone find them. Nothing gets cleaned up when Claude refreshes its cache.

Also fixed along the way:
- ONNX Runtime 1.24.3 → 1.26.0 (API v25 mismatch broke all embedding tests)
- Vector client leaked on DB reinit, processQueue had a race on sessionManager
- reloadConfig called os.Exit(0) bypassing graceful shutdown
- Removed dead QueryRowWithTimeout that leaked contexts
- Added tests for graph/watcher/maintenance/update (all were at 0%)
2026-05-24 01:56:54 +01:00

89 lines
985 B
Plaintext

# Binaries
bin/
*.exe
*.exe~
*.dll
*.so
*.dylib
# Go
*.test
*.out
coverage.out
coverage.html
*.prof
# Vendor (if not committing)
# vendor/
# IDE
.idea/
.vscode/
.claude/
*.swp
*.swo
*~
.DS_Store
# Node.js / Vue
ui/node_modules/
ui/dist/
ui/.vite/
ui/package.json
docs/node_modules/
docs/dist/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build artifacts
dist/
build/
*.tar.gz
*.zip
# Embedded static files (built from ui/dist)
internal/worker/static/*
!internal/worker/static/placeholder.html
# Environment and secrets
.env
.env.local
.env.*.local
*.pem
*.key
credentials.json
# Local development
*.local
.claude-mnemonic/
tmp/
temp/
# Test artifacts
__debug_bin*
.test/
# OS generated
Thumbs.db
ehthumbs.db
Desktop.ini
# Logs
logs/
*.log
# Database files (local dev)
*.db
*.db-wal
*.db-shm
# goreleaser
dist/
docs/dist
# Non-template plugin configs (keep only .tpl files in plugin/ dir)
plugin/.claude-plugin/plugin.json
plugin/.claude-plugin/marketplace.json