feat(graph): LSP code-graph provider + Chrome auto-launch, slimmer CLI#1
Merged
Merged
Conversation
graph (code exploration): - Drive a language server over LSP call hierarchy (prepareCallHierarchy + callHierarchy/outgoingCalls) to build the outgoing-call flow tree — the same engine an IDE's "Show Call Hierarchy" uses. Type-accurate across DI, interfaces and files; language-agnostic. - Auto-detect the project root (nearest tsconfig/package.json/.git) and pick the LSP server by file extension; TS/JS bundled, others via --server. - Entry as file:line[:col] or file@symbol; --depth bounds the walk. - Trimmed the surface: dropped --provider, --max-nodes, --include-external. dynamic (Chrome) — auto-launch: - `--chrome` with no port now launches a throwaway headless Chrome (trace → record → teardown); `--chrome <port>` still attaches to a real/auth'd session. - New shared ChromeLauncher (OS free-port, temp profile, readiness poll, cleanup), also adopted by the recorder (removes its private launcher + duplicate paths). docs: - README "Code graph" section + cross-language matrix; Chrome attach-vs-launch; roadmap reflects the static pillar shipping. SKILL.md description updated for discoverability. Removed a stray demo artifact. tests: ChromeLauncher integration test (launch + distinct ports). Suite green (25 pass, 1 Postgres skip). Co-Authored-By: Claude Opus 4.8 (1M context) <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.
graph (code exploration):
dynamic (Chrome) — auto-launch:
--chromewith no port now launches a throwaway headless Chrome (trace → record → teardown);--chrome <port>still attaches to a real/auth'd session.docs:
tests: ChromeLauncher integration test (launch + distinct ports). Suite green (25 pass, 1 Postgres skip).