lukaszraczylo
a59b9b1622
chore: remove hand-rolled telemetry pkg; ignore build binaries
...
- delete internal/telemetry (replaced by oss-telemetry library in prev commit)
- gitignore root /mcp and /worker build artifacts
v0.12.3
2026-05-24 03:03:57 +01:00
lukaszraczylo
00d8871f5e
refactor: use oss-telemetry library instead of hand-rolled ping
v0.12.1
2026-05-24 03:02:16 +01:00
lukaszraczylo
28b6582dac
feat: add OSS analytics ping on MCP server startup
v0.11.118
2026-05-24 03:01:15 +01:00
github-actions[bot]
dc010fe57d
chore: update marketplace for v0.11.113
2026-05-24 01:10:04 +00:00
github-actions[bot]
7e1f6efe3c
chore: update marketplace for v0.11.109
2026-05-24 01:05:29 +00:00
lukaszraczylo
eab3b58e0f
fix: data race in maintenance totalOptimizeRun counter
v0.11.113
2026-05-24 02:04:53 +01:00
lukaszraczylo
720a14cd65
chore: fix npm audit vulnerabilities (rollup, vite, uuid, postcss)
2026-05-24 01:58:20 +01:00
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%)
v0.11.109
2026-05-24 01:56:54 +01:00
github-actions[bot]
cfc95c9ce4
chore: update marketplace for v0.11.105
2026-04-21 04:14:53 +00:00
lukaszraczylo
62da8e5315
Update go.mod and go.sum ( #43 )
v0.11.105
2026-04-21 05:03:47 +01:00
github-actions[bot]
d0200ff9ee
chore: update marketplace for v0.11.101
2026-04-10 04:13:01 +00:00
lukaszraczylo
c14dbc6877
Update go.mod and go.sum ( #42 )
v0.11.101
2026-04-10 05:03:55 +01:00
github-actions[bot]
9316c7ac8d
chore: update marketplace for v0.11.97
2026-04-09 04:08:30 +00:00
lukaszraczylo
73c42c9f55
Update go.mod and go.sum ( #41 )
v0.11.97
2026-04-09 04:59:04 +01:00
github-actions[bot]
c258c0c845
chore: update marketplace for v0.11.93
2026-04-07 04:12:24 +00:00
lukaszraczylo
be536e56d5
Update go.mod and go.sum ( #40 )
v0.11.93
2026-04-07 04:59:43 +01:00
github-actions[bot]
6b575b92d6
chore: update marketplace for v0.11.89
2026-04-04 03:58:54 +00:00
lukaszraczylo
c572408ab4
Update go.mod and go.sum ( #39 )
v0.11.89
2026-04-04 04:50:08 +01:00
github-actions[bot]
fae538c169
chore: update marketplace for v0.11.85
2026-04-03 04:06:58 +00:00
lukaszraczylo
9e333a7de1
Update go.mod and go.sum ( #38 )
v0.11.85
2026-04-03 04:58:18 +01:00
github-actions[bot]
458f607b80
chore: update marketplace for v0.11.81
2026-03-30 04:15:50 +00:00
lukaszraczylo
9c0083c24c
Update go.mod and go.sum ( #37 )
v0.11.81
2026-03-30 05:03:46 +01:00
github-actions[bot]
a0fecab186
chore: update marketplace for v0.11.77
2026-03-28 03:59:53 +00:00
lukaszraczylo
96e64a5796
Update go.mod and go.sum ( #36 )
v0.11.77
2026-03-28 03:50:55 +00:00
github-actions[bot]
ef92d710b8
chore: update marketplace for v0.11.73
2026-03-17 03:59:52 +00:00
lukaszraczylo
f8702cb0c2
Update go.mod and go.sum ( #35 )
v0.11.73
2026-03-17 03:51:16 +00:00
github-actions[bot]
c52bab1e95
chore: update marketplace for v0.11.69
2026-03-13 03:59:45 +00:00
lukaszraczylo
1eec436746
Update go.mod and go.sum ( #34 )
v0.11.69
2026-03-13 03:49:54 +00:00
github-actions[bot]
3ccb20df63
chore: update marketplace for v0.11.65
2026-03-09 03:58:43 +00:00
lukaszraczylo
5fbba6bace
Update go.mod and go.sum ( #33 )
v0.11.65
2026-03-09 03:50:24 +00:00
github-actions[bot]
de422c0de0
chore: update marketplace for v0.11.61
2026-03-07 03:51:29 +00:00
lukaszraczylo
db2a552eb8
Update go.mod and go.sum ( #32 )
v0.11.61
2026-03-07 03:42:12 +00:00
github-actions[bot]
195caffc59
chore: update marketplace for v0.11.57
2026-03-07 01:34:33 +00:00
lukaszraczylo
7b979a3f95
fix: prevent internal prompts and duplicates in memory database
...
- Add server-side detection of SDK processor's internal system prompt
in handleSessionInit, since CLAUDE_MNEMONIC_INTERNAL env var is not
propagated by Claude Code to hook subprocesses
- Add cross-session duplicate detection (FindRecentPromptByTextGlobal)
to catch same prompt text arriving from different session IDs
- Add hooks, mcpServers, and commands references to plugin.json per
Claude Code plugin spec
- Remove MCP server injection from register-plugin.sh (now in plugin.json)
- Use ${CLAUDE_PLUGIN_ROOT} for statusline path instead of hardcoded path
- Add python3 fallback for plugin registration when jq is unavailable
- Replace hardcoded 1.0.0 version in findWorkerBinary with glob lookup
- Add cache copy verification in register-plugin.sh
- Add update-version Makefile target to keep metadata in sync
v0.11.57
2026-03-07 01:28:04 +00:00
github-actions[bot]
49e7efd27d
chore: update marketplace for v0.11.53
2026-03-07 00:36:01 +00:00
lukaszraczylo
fcab3ebef4
fixup! fixup! fixup! fixup! fixup! chore: update marketplace for v0.11.37
v0.11.53
2026-03-07 00:25:52 +00:00
lukaszraczylo
a1d4459329
fixup! fixup! fixup! fixup! chore: update marketplace for v0.11.37
...
march-improvements
2026-03-07 00:12:13 +00:00
github-actions[bot]
5a81f37779
chore: update marketplace for v0.11.47
2026-03-06 23:53:50 +00:00
lukaszraczylo
11fd1969de
fixup! fixup! fixup! chore: update marketplace for v0.11.37
v0.11.47
2026-03-06 23:45:38 +00:00
github-actions[bot]
cd00f74e2c
chore: update marketplace for v0.11.43
2026-03-06 15:51:16 +00:00
lukaszraczylo
319f2ca28b
fixup! fixup! chore: update marketplace for v0.11.37
v0.11.43
2026-03-06 15:39:58 +00:00
lukaszraczylo
77f5f02510
fixup! chore: update marketplace for v0.11.37
...
march-improvements
2026-03-06 15:39:52 +00:00
github-actions[bot]
1a6f6b6e5e
chore: update marketplace for v0.11.37
2026-02-11 04:08:18 +00:00
lukaszraczylo
b0c0b4208e
Update go.mod and go.sum ( #29 )
v0.11.37
2026-02-11 03:59:17 +00:00
github-actions[bot]
84aff03d7c
chore: update marketplace for v0.11.33
2026-02-10 04:09:02 +00:00
lukaszraczylo
9432958b03
Update go.mod and go.sum ( #28 )
v0.11.33
2026-02-10 04:00:07 +00:00
github-actions[bot]
1c63843b6f
chore: update marketplace for v0.11.29
2026-02-09 04:05:07 +00:00
lukaszraczylo
76b1ec3c9f
Update go.mod and go.sum ( #27 )
v0.11.29
2026-02-09 03:55:54 +00:00
github-actions[bot]
968fd2293e
chore: update marketplace for v0.11.25
2026-02-06 03:59:35 +00:00
lukaszraczylo
c123568dfd
Update go.mod and go.sum ( #26 )
v0.11.25
2026-02-06 03:49:52 +00:00