-
-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathagent-shell-hermes.el
More file actions
144 lines (118 loc) · 6.45 KB
/
Copy pathagent-shell-hermes.el
File metadata and controls
144 lines (118 loc) · 6.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
;;; agent-shell-hermes.el --- Hermes Agent configuration -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Alvaro Ramirez
;; Author: Alvaro Ramirez https://xenodium.com
;; URL: https://github.com/xenodium/agent-shell
;; This package is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This package is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This file includes Hermes Agent-specific configurations.
;;
;;; Code:
(defconst agent-shell-hermes-icon-name
"hermesagent.png"
"Hermes Agent icon name (from lobe-icons).")
(eval-when-compile
(require 'cl-lib))
(require 'shell-maker)
(require 'acp)
(declare-function agent-shell--indent-string "agent-shell")
(declare-function agent-shell-make-agent-config "agent-shell")
(autoload 'agent-shell-make-agent-config "agent-shell")
(declare-function agent-shell--make-acp-client "agent-shell")
(declare-function agent-shell--dwim "agent-shell")
(defcustom agent-shell-hermes-acp-command
'("hermes" "acp")
"Command and parameters for the Hermes agent client.
The first element is the command name, and the rest are command parameters."
:type '(repeat string)
:group 'agent-shell)
(defcustom agent-shell-hermes-environment
nil
"Environment variables for the Hermes agent client.
This should be a list of environment variables to be used when
starting the Hermes agent process."
:type '(repeat string)
:group 'agent-shell)
(defcustom agent-shell-hermes-default-session-mode-id nil
"Default ACP session mode for the Hermes agent.
Controls edit approval behavior (file patch/write permission prompts).
Possible values are one of:
nil Don't set a mode; let Hermes use its own default.
(Default.)
\\='accept_edits' Auto-approve workspace and /tmp edits; prompt only for
sensitive paths like .git/.ssh/.env.
\\='dont_ask' Auto-approve all non-sensitive edits for the entire session."
:type '(choice (const :tag "Ask every time" nil)
(const :tag "Accept edits (workspace+tmp)" "accept_edits")
(const :tag "Don't ask (session-wide)" "dont_ask"))
:group 'agent-shell)
(defun agent-shell-hermes-make-agent-config ()
"Create a Hermes agent configuration.
Returns an agent configuration alist using `agent-shell-make-agent-config'."
(agent-shell-make-agent-config
:identifier 'hermes
:mode-line-name "Hermes"
:buffer-name "Hermes"
:shell-prompt "Hermes> "
:shell-prompt-regexp "Hermes> "
:icon-name agent-shell-hermes-icon-name
:welcome-function #'agent-shell-hermes--welcome-message
:client-maker (lambda (buffer)
(agent-shell-hermes-make-client :buffer buffer))
:default-session-mode-id (lambda () agent-shell-hermes-default-session-mode-id)
:install-instructions
"Defaults to running 'hermes acp' locally.
Customize \\\\[customize-variable] `agent-shell-hermes-acp-command' for remote setups (e.g., via SSH)."))
;;;###autoload
(defun agent-shell-hermes-start-agent ()
"Start an interactive Hermes agent shell."
(interactive)
(agent-shell--dwim :config (agent-shell-hermes-make-agent-config)
:new-shell t))
(cl-defun agent-shell-hermes-make-client (&key buffer)
"Create a Hermes agent ACP client with BUFFER as context."
(unless buffer
(error "Missing required argument: :buffer"))
(agent-shell--make-acp-client :command (car agent-shell-hermes-acp-command)
:command-params (cdr agent-shell-hermes-acp-command)
:environment-variables agent-shell-hermes-environment
:context-buffer buffer))
(defun agent-shell-hermes--welcome-message (config)
"Return Hermes welcome message using `shell-maker' CONFIG."
(let ((art (agent-shell--indent-string 4 (agent-shell-hermes--ascii-art)))
(message (string-trim-left (shell-maker-welcome-message config) "\n")))
(concat "\n\n"
art
"\n\n"
message)))
(defun agent-shell-hermes--ascii-art ()
"Hermes ASCII art (pyfiglet ansi_shadow font)."
(let* ((is-dark (eq (frame-parameter nil 'background-mode) 'dark))
(text (string-trim "
██╗ ██╗ ███████╗ ██████╗ ███╗ ███╗ ███████╗ ███████╗
██║ ██║ ██╔════╝ ██╔══██╗ ████╗ ████║ ██╔════╝ ██╔════╝
███████║ █████╗ ██████╔╝ ██╔████╔██║ █████╗ ███████╗
██╔══██║ ██╔══╝ ██╔══██╗ ██║╚██╔╝██║ ██╔══╝ ╚════██║
██║ ██║ ███████╗ ██║ ██║ ██║ ╚═╝ ██║ ███████╗ ███████║
╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚══════╝
█████╗ ██████╗ ███████╗ ███╗ ██╗ ████████╗
██╔══██╗ ██╔════╝ ██╔════╝ ████╗ ██║ ╚══██╔══╝
███████║ ██║ ███╗ █████╗ ██╔██╗ ██║ ██║
██╔══██║ ██║ ██║ ██╔══╝ ██║╚██╗██║ ██║
██║ ██║ ╚██████╔╝ ███████╗ ██║ ╚████║ ██║
╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═══╝ ╚═╝
" "\n")))
(propertize text 'font-lock-face (if is-dark
'(:foreground "#e0a050" :inherit fixed-pitch)
'(:foreground "#b07830" :inherit fixed-pitch)))))
(provide 'agent-shell-hermes)
;;; agent-shell-hermes.el ends here