Sidecar is a terminal-based workspace for running AI coding agents alongside file trees, task issues, Git diffs, and Jira or GitHub resources in split panes. Developers use it to monitor agent sessions, inspect files and changes, manage workspaces, and handle tasks without leaving one shell. The catalogue entries extend or guide coding-agent workflows used with Sidecar.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/marcus/sidecar/keyboard-shortcutsnpx skills add marcus/sidecar --skill keyboard-shortcutsgit clone --depth 1 https://github.com/marcus/sidecarWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/marcus/sidecar/keyboard-shortcuts)<a href="https://agentmods.dev/skills/marcus/sidecar/keyboard-shortcuts"><img src="https://agentmods.dev/badge/skills/marcus/sidecar/keyboard-shortcuts.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00059 | $0.11887 |
| Opus 5 | $0.00030 | $0.05944 |
| Sonnet 5 | $0.00012 | $0.02377 |
| Haiku 4.5 | $0.00006 | $0.01189 |
Grade A, and why
keyboard-shortcuts scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 841 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Keyboard Shortcuts
Complete shortcut listings and context reference for all sidecar plugins. For implementation patterns, see docs/guides/deprecated/ui-feature-guide.md. For a detailed assessment of inconsistencies, vim alignment, mnemonic quality, and improvement proposals, see references/assessment.md in this skill directory.
Architecture
- Centralized binding registry:
internal/keymap/bindings.gois the single source of truth for key bindings. - Context-based dispatch: Each plugin defines contexts; bindings are scoped to contexts.
- Command palette (
?): Auto-discovers bindings for discoverability. - User overrides: Supported via
~/.config/sidecar/config.json. - Key sequences: Compound commands like
g gare supported with 500ms timeout.
Adding a New Shortcut
- Add the binding in
internal/keymap/bindings.gounder the appropriate context. - Add command handling in the plugin's
Update()method (usually in ahandlers.gofile). - Add the command to the plugin's
Commands()method for footer hint and command palette. - Keep command names short (1 word preferred) to prevent footer wrapping.
TD Monitor Shortcuts
TD shortcuts are dynamically exported from TD itself via ExportBindings() and ExportCommands() in pkg/monitor/keymap/. TD is the single source of truth. To add TD shortcuts:
- Add binding to TD's
pkg/monitor/keymap/bindings.go - Add command constant to TD's
pkg/monitor/keymap/registry.go - Add metadata to TD's
pkg/monitor/keymap/export.go - Handle in TD's
pkg/monitor/model.go
Global Shortcuts
| Key | Command | Description |
|---|---|---|
j / down |
cursor-down | Move cursor down |
k / up |
cursor-up | Move cursor up |
G |
cursor-bottom | Jump to bottom |
g g |
cursor-top | Jump to top |
ctrl+d |
page-down | Page down |
ctrl+u |
page-up | Page up |
enter |
select | Select item |
esc |
back | Go back / close |
` |
next-plugin | Next header entry |
~ |
prev-plugin | Previous header entry |
] |
next-plugin | Next header entry |
[ |
prev-plugin | Previous header entry |
1-7 |
focus-plugin-N | Focus the Nth project tab (positional; stops at 7) |
8 |
focus-sessions | Sessions (global) |
9 |
focus-activity | Activity (global) |
0 |
focus-tasks | Tasks (global; no-op when the Tasks host is disabled) |
? |
toggle-palette | Command palette |
! |
toggle-diagnostics | Diagnostics overlay |
@ |
switch-project | Project switcher |
W |
switch-worktree | Worktree switcher |
# |
switch-theme | Theme switcher |
, |
open-configuration | Open Configuration (contexts that bind , win) |
i |
open-issue | Open issue |
r |
refresh | Refresh |
q |
quit | Quit (root contexts only) |
ctrl+c |
quit | Force quit |
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +23 lines 40940f6ccc62
- 6d ago First seen · 818 lines · 59 tokens per session scan A da6c96af1a62
keyboard-shortcuts is a skill published in the GitHub repository marcus/sidecar (1,055 stars, last pushed 2d ago), licensed MIT. It adds 59 tokens to every session and 11,887 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
release
Cut a versioned release and publish everos to PyPI via the tag-triggered workflow.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
personal-assistant
A personalized assistant that remembers your preferences.
file-organizer
Organizes files in your project directory.
computer-use
Read and drive native desktop applications through the accessibility layer — list on-screen apps, snapshot one window as a numbered element tree, then click / type / set a value / scroll / drag / run a named action, by element index or by screen coordinates. Use for work in a desktop app rather than a web page. Full…
meetings
Context for working with the Meetings app's data — where a meeting's notes, diagram, transcript-derived tasks, and calendar cache live, what the lifecycle states mean, and how the app's agents are driven. Load when the user asks about a meeting's notes or action items, or when writing/reading files under the meetings…