To upvote this issue, give it a thumbs up. See this list for the most upvoted issues.
Add readonly editor context capabilities for agents
Summary
ECA already supports editor/getDiagnostics, where the server asks the client/editor for diagnostics and the client maps editor-specific data into ECA protocol data.
We should add a similar readonly editor/getContext request so agents can ask the editor for semantic/navigation context around the current cursor instead of relying only on raw file reads and text search.
This should be editor-agnostic. eca-emacs can implement it via Emacs APIs, while VS Code/IntelliJ clients can implement the same protocol via their own APIs.
Motivation
Agents currently infer too much from text. For example, to understand a symbol under the cursor, the agent may grep for the name and read several files. Editors already know better through xref/LSP/PSI/indexes.
Readonly editor context would let the agent ask questions like:
- what symbol is under the cursor?
- where is its definition?
- what are the top-level symbols in this file?
- what diagnostic is at/near the cursor?
This should reduce wrong file reads, bad grep matches, and hallucinated API usage.
Proposed API
Add a new client capability, ideally per feature:
{
"editor": {
"diagnostics": true,
"context": {
"symbolAtPosition": true,
"documentSymbols": true,
"definitions": true,
"documentation": true,
"references": true,
"workspace": true,
"enclosingSymbols": true
}
}
}
Add a request:
Example params:
{
"uri": "file:///repo/src/foo.clj",
"position": { "line": 42, "character": 10 },
"include": ["symbolAtPosition", "definitions", "documentSymbols"],
"limit": 100
}
The response should be best-effort and support unavailable capabilities:
{
"symbolAtPosition": { "text": "foo", "range": { "...": "..." } },
"definitions": [],
"documentSymbols": [],
"unavailable": [
{ "capability": "documentation", "reason": "No provider available" }
]
}
Initial scope
Start small:
-
symbolAtPosition
- Helps the agent know what the user is pointing at.
- Emacs:
thing-at-point / bounds.
- VS Code: word range at position.
- IntelliJ: PSI element at caret.
- Gotcha: often textual, not fully semantic.
-
definitions
- Replaces grep-based “find definition” with editor/language-backed resolution.
- Emacs:
xref.
- VS Code/LSP: definition provider /
textDocument/definition.
- IntelliJ: resolve / go to declaration.
- Gotcha: may return multiple targets or declarations instead of implementations.
-
documentSymbols
- Gives the agent a compact outline of the current file.
- Emacs:
imenu index.
- VS Code/LSP: document symbols.
- IntelliJ: structure view / PSI.
- Gotcha: Emacs
imenu may provide positions but not full ranges.
Also extend editor/getDiagnostics with optional cursor/range filtering:
{
"uri": "file:///repo/src/foo.clj",
"position": { "line": 42, "character": 10 }
}
This should return/prioritize diagnostics at or near the cursor. Current diagnostics already include uri, range, severity, code, source, and message, so this is about relevance, not adding basic metadata.
Later additions
After the initial API is working, consider:
-
documentation
- Emacs:
eldoc.
- VS Code/LSP: hover/signature help.
- IntelliJ: quick documentation.
- Useful to avoid guessing APIs.
-
references
- Emacs:
xref.
- VS Code/LSP: references provider.
- IntelliJ: find usages.
- Useful for refactors, but can be expensive; require explicit include and limit.
-
workspace
- Return workspace roots, current file, open/visible files.
- Avoid returning all project files by default.
-
enclosingSymbols
- Current function/class/method around cursor.
- Best-effort only. Easy with PSI/tree-sitter or document symbol ranges; unreliable with plain Imenu if ranges are missing.
-
codeActions
- Quick fixes for diagnostics.
- Useful but not readonly; probably separate design later.
Design constraints
- Keep
editor/getDiagnostics and editor/getContext separate.
- Use per-feature capabilities; not all clients will support everything.
- Return partial results and explicit
unavailable entries.
- Avoid expensive defaults (
references, full workspace file list).
- Do not make this Emacs-specific.
- Treat textual and semantic results differently where needed.
Suggested first implementation for eca-emacs
symbolAtPosition: thing-at-point / bounds-of-thing-at-point
definitions: xref
documentSymbols: programmatic Imenu index, not the interactive imenu command
- diagnostics near cursor: filter existing collected diagnostics by range/distance
To upvote this issue, give it a thumbs up. See this list for the most upvoted issues.
Add readonly editor context capabilities for agents
Summary
ECA already supports
editor/getDiagnostics, where the server asks the client/editor for diagnostics and the client maps editor-specific data into ECA protocol data.We should add a similar readonly
editor/getContextrequest so agents can ask the editor for semantic/navigation context around the current cursor instead of relying only on raw file reads and text search.This should be editor-agnostic.
eca-emacscan implement it via Emacs APIs, while VS Code/IntelliJ clients can implement the same protocol via their own APIs.Motivation
Agents currently infer too much from text. For example, to understand a symbol under the cursor, the agent may grep for the name and read several files. Editors already know better through xref/LSP/PSI/indexes.
Readonly editor context would let the agent ask questions like:
This should reduce wrong file reads, bad grep matches, and hallucinated API usage.
Proposed API
Add a new client capability, ideally per feature:
{ "editor": { "diagnostics": true, "context": { "symbolAtPosition": true, "documentSymbols": true, "definitions": true, "documentation": true, "references": true, "workspace": true, "enclosingSymbols": true } } }Add a request:
Example params:
{ "uri": "file:///repo/src/foo.clj", "position": { "line": 42, "character": 10 }, "include": ["symbolAtPosition", "definitions", "documentSymbols"], "limit": 100 }The response should be best-effort and support unavailable capabilities:
{ "symbolAtPosition": { "text": "foo", "range": { "...": "..." } }, "definitions": [], "documentSymbols": [], "unavailable": [ { "capability": "documentation", "reason": "No provider available" } ] }Initial scope
Start small:
symbolAtPositionthing-at-point/ bounds.definitionsxref.textDocument/definition.documentSymbolsimenuindex.imenumay provide positions but not full ranges.Also extend
editor/getDiagnosticswith optional cursor/range filtering:{ "uri": "file:///repo/src/foo.clj", "position": { "line": 42, "character": 10 } }This should return/prioritize diagnostics at or near the cursor. Current diagnostics already include
uri,range,severity,code,source, andmessage, so this is about relevance, not adding basic metadata.Later additions
After the initial API is working, consider:
documentationeldoc.referencesxref.workspaceenclosingSymbolscodeActionsDesign constraints
editor/getDiagnosticsandeditor/getContextseparate.unavailableentries.references, full workspace file list).Suggested first implementation for
eca-emacssymbolAtPosition:thing-at-point/bounds-of-thing-at-pointdefinitions:xrefdocumentSymbols: programmatic Imenu index, not the interactiveimenucommand