v1.2.0: Add web dashboard and expand test coverage#1
Merged
ErebusEnigma merged 4 commits intomainfrom Feb 17, 2026
Merged
Conversation
Addresses test coverage gaps across install/uninstall, search, save, utils, and auto_save modules. Test count goes from 172 to 245. High priority: install_skill(), uninstall_hooks(), uninstall_skill(), format_results_markdown() detailed mode, search_tier2() flag combos and malformed JSON, apply_migrations() missing migration error. Medium priority: hash_project_path() MSYS2/Windows normalization, format_fts_query() special chars/multi-word, save_messages() append mode, save_topics() whitespace filtering, save_summary() problems/ user_note fields, install_commands(), install_db(), uninstall_data(), read_hook_input() unit tests, parse_transcript() malformed JSON, get_table_count() happy path, code snippets in tier 1 search. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Flask-powered SPA dashboard served at localhost:5111 with: - Search view with project sidebar, scoped hint chips, FTS5 search - Sessions browser with pagination, filters, sort, bulk delete - Session detail with edit summary/note/topics, syntax-highlighted code - Analytics with Chart.js (timeline, topics, projects, outcomes, technologies) - Settings for DB stats, pruning, JSON export, and reinitialization - REST API (15 endpoints) reusing existing db_*.py modules - context_dashboard MCP tool to launch from Claude Desktop/OpenWebUI - Dark/light theme toggle, responsive layout - CORS enabled for n8n and cross-origin integration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ErebusEnigma
added a commit
that referenced
this pull request
Feb 17, 2026
* Add 73 tests covering high and medium priority coverage gaps Addresses test coverage gaps across install/uninstall, search, save, utils, and auto_save modules. Test count goes from 172 to 245. High priority: install_skill(), uninstall_hooks(), uninstall_skill(), format_results_markdown() detailed mode, search_tier2() flag combos and malformed JSON, apply_migrations() missing migration error. Medium priority: hash_project_path() MSYS2/Windows normalization, format_fts_query() special chars/multi-word, save_messages() append mode, save_topics() whitespace filtering, save_summary() problems/ user_note fields, install_commands(), install_db(), uninstall_data(), read_hook_input() unit tests, parse_transcript() malformed JSON, get_table_count() happy path, code snippets in tier 1 search. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add web dashboard for browsing, searching, and managing context memory Flask-powered SPA dashboard served at localhost:5111 with: - Search view with project sidebar, scoped hint chips, FTS5 search - Sessions browser with pagination, filters, sort, bulk delete - Session detail with edit summary/note/topics, syntax-highlighted code - Analytics with Chart.js (timeline, topics, projects, outcomes, technologies) - Settings for DB stats, pruning, JSON export, and reinitialization - REST API (15 endpoints) reusing existing db_*.py modules - context_dashboard MCP tool to launch from Claude Desktop/OpenWebUI - Dark/light theme toggle, responsive layout - CORS enabled for n8n and cross-origin integration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Remove unused json import in test_db_search Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Update docs and bump version to 1.2.0 for dashboard release Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Louis5 <lombaardlouis5@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dashboard.py+static/)context_dashboardtool inmcp_server.pyto launch the dashboard from Claude Code via MCPTest plan
python -m pytest tests/ -v)python skills/context-memory/scripts/dashboard.py(requiresflask flask-cors)context_dashboardMCP tool launches the server and returns the URLhttp://127.0.0.1:5111and can browse/search sessions🤖 Generated with Claude Code