Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,41 @@ Start an agent shell session:
- =M-x agent-shell-google-start-gemini= - Start a Gemini agent session
- =M-x agent-shell-goose-start-agent= - Start a Goose agent session

*** Sidebar

=agent-shell-sidebar= provides a persistent side panel interface. Each project gets its own independent sidebar that maintains separate state across visibility toggles.

Commands:

- =M-x agent-shell-sidebar-toggle= - Toggle sidebar visibility for current project
- =M-x agent-shell-sidebar-toggle-focus= - Toggle focus between sidebar and last buffer
- =M-x agent-shell-sidebar-change-provider= - Switch to a different agent provider
- =M-x agent-shell-sidebar-reset= - Reset sidebar for current project

Configuration options:

#+begin_src emacs-lisp
;; Sidebar width (default: "25%")
;; Integer for absolute columns or string with % for percentage of frame
(setq agent-shell-sidebar-width "25%")

;; Minimum width (default: 80)
(setq agent-shell-sidebar-minimum-width 80)

;; Maximum width (default: "50%")
(setq agent-shell-sidebar-maximum-width "50%")

;; Position: 'left or 'right (default: 'right)
(setq agent-shell-sidebar-position 'right)

;; Default provider (default: nil - prompt user)
;; Values: 'anthropic-claude-code, 'google-gemini, 'openai-codex, 'goose-agent
(setq agent-shell-sidebar-default-provider 'anthropic-claude-code)

;; Lock sidebar position and size (default: t)
(setq agent-shell-sidebar-locked t)
#+end_src

** Running agents in Devcontainers / Docker containers (Experimental)

=agent-shell= provides rudimentary support for running agents in containers.
Expand Down
Loading