get_state_brief
Retrieve a lightweight snapshot of the Neovim session including mode, cwd, buffers, modified buffers, and active window context for quick orientation at the start of each turn.
Instructions
Lightweight snapshot of the Neovim session for quick orientation. Read-only — does not modify any editor state.
Use this at the start of each turn to see what the user is working
on. Use get_state instead when you need the full picture: all
windows, folds, marks, diagnostics summaries, highlights, and
indent settings.
Returns: mode (normal/insert/visual/etc.), cwd, buffers (relative paths of all listed buffers), modified_buffers, and active_window: {file, filetype, total_lines, modified, buftype, line, col, context}. context is a short list of numbered lines around the cursor.
If an alternate window exists, also returns alternate_window with the same fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||