/project-switching
Project switching implementation in sidecar: project discovery, state management, UI flow, modal rendering, filtering, theme preview, and plugin reinitialization. Use when working on the project switcher feature, project management, worktree switching, or the project
$ npx -y skills add marcus/sidecar --skill project-switching --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/project-switching
Context preview
The summary Claude sees to decide when to auto-load this skill.
Project switching implementation in sidecar: project discovery, state management, UI flow, modal rendering, filtering, theme preview, and plugin reinitialization. Use when working on the project switcher feature, project management, worktree switching, or the project
SKILL.md
project-switching.SKILL.mdname: project-switching
description: >
Project switching implementation in sidecar: project discovery, state management,
UI flow, modal rendering, filtering, theme preview, and plugin reinitialization.
Use when working on the project switcher feature, project management, worktree
switching, or the project configuration system.
user-invocable: false
Project Switching
Switch between git repositories without restarting sidecar. Press `@` to open the project switcher modal.
Architecture Overview
The project switcher uses the app's declarative modal library (`internal/modal/`) for rendering and mouse handling.
Key Files
| File | Contents | |------|----------| | `internal/app/model.go` | State, init, reset, filter, switch, theme preview | | `internal/app/update.go` | Keyboard and mouse handlers | | `internal/app/view.go` | Modal building and section rendering | | `internal/modal/` | Modal library (builder, sections, layout) | | `internal/config/types.go` | ProjectConfig struct | | `internal/config/loader.go` | Config loading with path validation |
Model State
// internal/app/model.go
showProjectSwitcher bool
projectSwitcherCursor int
projectSwitcherScroll int
projectSwitcherInput textinput.Model
projectSwitcherFiltered []config.ProjectConfig
projectSwitcherModal *modal.Modal // Cached modal instance
projectSwitcherModalWidth int // Width for cache invalidation
projectSwitcherMouseHandler *mouse.Handler
Project vs Worktree Switching
- **Project Switching** (`@`): Switch between configured projects from `config.json` (arbitrary repos)
- **Worktree Switching** (`W`): Switch between git worktrees within the current repository
Configuration
Projects are configured in `~/.config/sidecar/config.json`:
{
"projects": {
"list": [
{"name": "sidecar", "path": "~/code/sidecar"},
{"name": "td", "path": "~/code/td", "theme": "dark"}
]
}
}Paths support `~` expansion. Projects can have per-project themes.
Core Flow
Opening (`@` key)
case "@":
m.showProjectSwitcher = !m.showProjectSwitcher
if m.showProjectSwitcher {
m.activeContext = "project-switcher"
m.initProjectSwitcher()
} else {
m.resetProjectSwitcher()
m.updateContext()
}Initialization (`model.go:433-454`)
`initProjectSwitcher()` clears cached modal, creates text input with "Filter projects..." placeholder, loads all projects, pre-selects current project, and previews its theme.
Cleanup (`model.go:413-423`)
`resetProjectSwitcher()` resets all state, clears modal cache, and restores current project's theme (undoing any live preview).
Modal Rendering
Uses `internal/modal/` with a builder pattern and lazy caching.
Modal Structure
+-------------------------------------------+
| Switch Project | <- Title
| [Filter projects... ] | <- Input section
| 3 of 10 projects | <- Count section
| ^ 2 more above | <- Scroll indicator
| > sidecar | <- Selected item
| ~/code/sidecar |
| td (current) | <- Current project (green)
| v 5 more below | <- Scroll indicator
| enter switch up/down navigate esc close | <- Hints section
+-------------------------------------------+
Caching (`view.go:114-137`)
`ensureProjectSwitcherModal()` builds modal only when it does not exist or width changed. Call `clearProjectSwitcherModal()` when content changes (filter input, cursor movement with scroll).
Section Types
| Type | Factory | Purpose | |------|---------|---------| | Input | `modal.Input()` | Text input with focus | | Custom | `modal.Custom()` | Complex content with focusables | | Text | `modal.Text()` | Static text | | Buttons | `modal.Buttons()` | Button row |
Keyboard Handling (`update.go:600-690`)
Priority: KeyType switch (special keys) -> String switch (named keys) -> Fallthrough to textinput.
| Key | Action | |-----|--------| | `Esc` | Clear filter (if set) or close modal | | `Enter` | Switch to selected project | | `Up/Down` | Arrow navigation | | `ctrl+n/ctrl+p` | Emacs-style navigation | | Other keys | Forwarded to text input for filtering |
Esc Behavior
First Esc clears filter if set. Second Esc (or first with empty filter) closes modal.
Navigation
Cursor movement updates `projectSwitcherCursor` and calls `projectSwitcherEnsureCursorVisible()` to maintain scroll window (max 8 visible items).
Filtering (`model.go:457-470`)
`filterProjects()` does case-insensitive substring match on both `Name` and `Path` fields. On filter change: clear modal cache, clamp cursor, reset scroll, preview theme.
Mouse Handling (`update.go:1073-1115`)
Uses modal library's `HandleMouse()`. Each project item has a focusable ID (`project-switcher-item-N`). Click on item triggers switch. Hover state managed by modal library via `hoverID` string.
Theme Preview (`model.go:580-586`)
`previewProjectTheme()` applies the selected project's theme live. Called on init, cursor movement, and filter changes. Theme is restored in `resetProjectSwitcher()`.
Project Switching (`model.go:485-577`)
`switchProject()` performs:
1. Skip if same project (show toast) 2. Save active plugin state for old workdir 3. Check for saved worktree to restore 4. Update `m.ui.WorkDir` and repo name 5. Apply project-specific theme 6. Reinitialize all plugins via `m.registry.Reinit(targetPath)` 7. Send `WindowSizeMsg` for layout recalculation 8. Restore previously active plugin for new workdir 9. Return toast notification
What Happens on Switch
1. All plugins stop (file watchers, git commands, etc.) 2. Plugin context updates to new working directory 3. All plugins reinitialize with new path 4. Previ
Read more
name: project-switching description: > Project switching implementation in sidecar: project discovery, state management, UI flow, modal rendering, filtering, theme preview, and plugin reinitialization. Use when working on the project switcher feature, project management, worktree switching, or the project configuration system. user-invocable: false
Project Switching
Switch between git repositories without restarting sidecar. Press `@` to open the project switcher modal.
Architecture Overview
The project switcher uses the app's declarative modal library (`internal/modal/`) for rendering and mouse handling.
Key Files
| File | Contents | |------|----------| | `internal/app/model.go` | State, init, reset, filter, switch, theme preview | | `internal/app/update.go` | Keyboard and mouse handlers | | `internal/app/view.go` | Modal building and section rendering | | `internal/modal/` | Modal library (builder, sections, layout) | | `internal/config/types.go` | ProjectConfig struct | | `internal/config/loader.go` | Config loading with path validation |
Model State
// internal/app/model.go showProjectSwitcher bool projectSwitcherCursor int projectSwitcherScroll int projectSwitcherInput textinput.Model projectSwitcherFiltered []config.ProjectConfig projectSwitcherModal *modal.Modal // Cached modal instance projectSwitcherModalWidth int // Width for cache invalidation projectSwitcherMouseHandler *mouse.Handler
Project vs Worktree Switching
- **Project Switching** (`@`): Switch between configured projects from `config.json` (arbitrary repos)
- **Worktree Switching** (`W`): Switch between git worktrees within the current repository
Configuration
Projects are configured in `~/.config/sidecar/config.json`:
{
"projects": {
"list": [
{"name": "sidecar", "path": "~/code/sidecar"},
{"name": "td", "path": "~/code/td", "theme": "dark"}
]
}
}Paths support `~` expansion. Projects can have per-project themes.
Core Flow
Opening (`@` key)
case "@":
m.showProjectSwitcher = !m.showProjectSwitcher
if m.showProjectSwitcher {
m.activeContext = "project-switcher"
m.initProjectSwitcher()
} else {
m.resetProjectSwitcher()
m.updateContext()
}Initialization (`model.go:433-454`)
`initProjectSwitcher()` clears cached modal, creates text input with "Filter projects..." placeholder, loads all projects, pre-selects current project, and previews its theme.
Cleanup (`model.go:413-423`)
`resetProjectSwitcher()` resets all state, clears modal cache, and restores current project's theme (undoing any live preview).
Modal Rendering
Uses `internal/modal/` with a builder pattern and lazy caching.
Modal Structure
+-------------------------------------------+ | Switch Project | <- Title | [Filter projects... ] | <- Input section | 3 of 10 projects | <- Count section | ^ 2 more above | <- Scroll indicator | > sidecar | <- Selected item | ~/code/sidecar | | td (current) | <- Current project (green) | v 5 more below | <- Scroll indicator | enter switch up/down navigate esc close | <- Hints section +-------------------------------------------+
Caching (`view.go:114-137`)
`ensureProjectSwitcherModal()` builds modal only when it does not exist or width changed. Call `clearProjectSwitcherModal()` when content changes (filter input, cursor movement with scroll).
Section Types
| Type | Factory | Purpose | |------|---------|---------| | Input | `modal.Input()` | Text input with focus | | Custom | `modal.Custom()` | Complex content with focusables | | Text | `modal.Text()` | Static text | | Buttons | `modal.Buttons()` | Button row |
Keyboard Handling (`update.go:600-690`)
Priority: KeyType switch (special keys) -> String switch (named keys) -> Fallthrough to textinput.
| Key | Action | |-----|--------| | `Esc` | Clear filter (if set) or close modal | | `Enter` | Switch to selected project | | `Up/Down` | Arrow navigation | | `ctrl+n/ctrl+p` | Emacs-style navigation | | Other keys | Forwarded to text input for filtering |
Esc Behavior
First Esc clears filter if set. Second Esc (or first with empty filter) closes modal.
Navigation
Cursor movement updates `projectSwitcherCursor` and calls `projectSwitcherEnsureCursorVisible()` to maintain scroll window (max 8 visible items).
Filtering (`model.go:457-470`)
`filterProjects()` does case-insensitive substring match on both `Name` and `Path` fields. On filter change: clear modal cache, clamp cursor, reset scroll, preview theme.
Mouse Handling (`update.go:1073-1115`)
Uses modal library's `HandleMouse()`. Each project item has a focusable ID (`project-switcher-item-N`). Click on item triggers switch. Hover state managed by modal library via `hoverID` string.
Theme Preview (`model.go:580-586`)
`previewProjectTheme()` applies the selected project's theme live. Called on init, cursor movement, and filter changes. Theme is restored in `resetProjectSwitcher()`.
Project Switching (`model.go:485-577`)
`switchProject()` performs:
1. Skip if same project (show toast) 2. Save active plugin state for old workdir 3. Check for saved worktree to restore 4. Update `m.ui.WorkDir` and repo name 5. Apply project-specific theme 6. Reinitialize all plugins via `m.registry.Reinit(targetPath)` 7. Send `WindowSizeMsg` for layout recalculation 8. Restore previously active plugin for new workdir 9. Return toast notification
What Happens on Switch
1. All plugins stop (file watchers, git commands, etc.) 2. Plugin context updates to new working directory 3. All plugins reinitialize with new path 4. Previ
You might never open your editor again. Status: Ready for daily use. Please report any issues you encounter.
Other skills on sidecar.
- /create-adapter
Create conversation adapters for importing AI chat history from different tools (Claude Code, Cursor, Warp, Codex, etc.). Covers the adapter.Adapter interface, caching strategies, incremental parsing, watch/FD management, and performance standards. Use when creating a new
Open skill - /create-modal
Create declarative modals using the modal library API. Covers modal types (confirm, input, select, form), sections (Text, Buttons, Input, Textarea, Checkbox, List, When, Custom), rendering with OverlayModal, and keyboard/mouse handling. Use when adding modals or dialogs to the
Open skill - /create-plugin
Create new sidecar plugins implementing the plugin.Plugin interface, rendering views with Bubble Tea, handling keyboard input via keymap contexts, and integrating with the app shell (footer hints, event bus, adapters). Use when creating a new plugin, modifying plugin
Open skill - /create-prompt
Create prompts for sidecar workspaces. Covers prompt structure (name, ticketMode, body), template variables (ticket with fallbacks), config file locations (global vs project), and scope overrides. Use when creating or modifying prompts in sidecar config files.
Open skill - /create-theme
Create custom color themes for Sidecar, including base theme selection, color overrides, gradient borders, tab styles, per-project themes, community themes, and programmatic theme registration. Use when creating or modifying themes, adjusting UI appearance, or debugging
Open skill - /drag-pane
Drag-and-drop pane resizing implementation for two-pane plugin layouts. Covers mouse event handling via the internal/mouse package, hit region registration, drag delta calculation, width clamping, state persistence, and pane layout management. Use when working on pane resizing,
Open skill

