Wire up repo drill-down and single/federated scope toggle - #17
Open
timkjr wants to merge 3 commits into
Open
Conversation
added 3 commits
August 10, 2026 23:04
Repo cards on Services and Dashboard were not clickable despite the "click to drill in" copy, and the Single repo / Federated toggle only changed a display label with no effect on any query. - ServicesView and Dashboard repo cards now navigate to /graph scoped to that repo (mouse + keyboard) - Graph page requests a single-repo subgraph from the backend (existing /v1/graph?repo= param) when scope is "single" - Dashboard's Repositories card and the Services list filter to the active repo in single mode - StatusBar shows which repo is active when scoped Known limitation: dashboard kind/language/caveat rollups aren't repo-attributed in the /v1/dashboard payload, so those stay federated even in single-repo mode.
The server no longer auto-promotes arbitrary legacy tool names through
/v1/tools/{name} (PR zzet/gortex#649 rework). processDetail called
get_processes directly, which 404s under the core/defer surface once
generic promotion is removed. Switch to analyze(kind=processes, id=...),
which the facade routes to the get_processes handler without promotion.
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
click to drill incopy but had no click handler — now clickable (mouse + keyboard), navigating to/graphscoped to that repo.scopeinlib/tweaks.ts) and was never read by any data-fetching hook — now it actually narrows the Graph page's request (useGraph({ repo }), backed by the existing/v1/graph?repo=param) and filters the Dashboard/Services repo lists to the active repo.Known limitation
Most
/v1/*payloads (kinds, languages, caveats) aren't repo-attributed, so those stay federated even in single-repo mode — narrowing them further would need a backend change.Test plan
npx tsc --noEmitnpm run build/graphfiltered to that repo; toggling Single repo / Federated changes what's shown on Graph, Dashboard, and Services🤖 Generated with Claude Code