What problem does it solve? The CLI prompt area shows no session context by default, forcing users to manually check which model is active, how much of the context window is consumed, or which git branch they are on. This Skill lets you render that information persistently above the prompt via a user-defined command. ## Core Features & Use Cases - Command-based status line: Add a statusLine entry to ~/.cursor/cli-config.json pointing at any executable script or inline command; its stdout renders above the prompt. - Rich JSON session payload: The command receives session data on stdin including model info, context window usage percentages, working directory, vim mode, and worktree details. - Flexible rendering: Supports multi-line output, ANSI color codes, configurable padding, update intervals (minimum 300ms), and timeouts. - Use Case: Create a bash script using jq that displays the current model name, a context-usage progress bar, and the current git branch, so you always know your session state at a glance. ## Quick Start Set up a status line in my CLI config that shows the current model name and context window usage percentage using a bash script with jq.