You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: fast startup staleness check, skip filesystem walk (v0.13.8)
On iree (60k files), is_stale() spent 10 seconds doing 8 rglob calls
just to count files on every startup and tool call. This blocked the
MCP server from becoming ready.
Split is_stale() into fast (default) and full modes:
- Fast: samples mtime of 100 cached file paths — no filesystem walk
- Full: does the expensive rglob file count to detect new/deleted files
Startup and tool handlers use fast mode (<0.1s).
Periodic background check uses full mode (every 60s, non-blocking).
Co-developed-by: Claude Code v2.1.39 (claude-opus-4-6)
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
"name": "context-daddy",
10
10
"source": "./",
11
11
"description": "Your codebase's context needs a responsible adult. Fast code exploration, living project narratives, and tribal knowledge that survives across sessions.",
Copy file name to clipboardExpand all lines: .claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "context-daddy",
3
-
"version": "0.13.7",
3
+
"version": "0.13.8",
4
4
"description": "Your codebase's context needs a responsible adult. Fast code exploration, living project narratives, and tribal knowledge that survives across sessions.",
0 commit comments