feat(configs): add agent-shell ACP interface for Emacs

This commit is contained in:
kj
2026-08-27 11:23:48 -03:00
parent 30404b24f3
commit de086b0efc

View File

@@ -609,5 +609,21 @@ Use it when you have drafted a plan, to persist it to disk and be able to resume
:custom :custom
(macher-action-buffer-ui 'org)) (macher-action-buffer-ui 'org))
;; agent-shell: interfaz nativa de Emacs para interactuar con agentes ACP
(use-package shell-maker)
(use-package acp)
(use-package agent-shell
:after (shell-maker acp)
:hook (elpaca-after-init . (lambda () (defalias 'opencode #'agent-shell-opencode-start-agent)))
:config
(setq agent-shell-opencode-authentication
(agent-shell-opencode-make-authentication :none t))
(setq agent-shell-opencode-default-model-id nil)
;; Desactivar guardado de transcripciones
(setq agent-shell-transcript-file-path-function nil))
(provide 'init-ai) (provide 'init-ai)
;;; init-ai.el ends here ;;; init-ai.el ends here