forked from xenodium/agent-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-shell-opencode.el
More file actions
195 lines (157 loc) · 7.67 KB
/
agent-shell-opencode.el
File metadata and controls
195 lines (157 loc) · 7.67 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
;;; agent-shell-opencode.el --- OpenCode agent configurations -*- 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 OpenCode-specific configurations.
;;
;;; Code:
(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")
(cl-defun agent-shell-opencode-make-authentication (&key api-key none)
"Create OpenCode authentication configuration.
API-KEY is the OpenCode API key string or function that returns it.
NONE when non-nil disables API key authentication.
Only one of API-KEY or NONE should be provided, never both."
(when (and api-key none)
(error "Cannot specify both :api-key and :none - choose one"))
(unless (or api-key none)
(error "Must specify either :api-key or :none"))
(cond
(api-key `((:api-key . ,api-key)))
(none `((:none . t)))))
(defcustom agent-shell-opencode-authentication
(agent-shell-opencode-make-authentication :none t)
"Configuration for OpenCode authentication.
For API key (string):
(setq agent-shell-opencode-authentication
(agent-shell-opencode-make-authentication :api-key \"your-key\"))
For API key (function):
(setq agent-shell-opencode-authentication
(agent-shell-opencode-make-authentication :api-key (lambda () ...)))
For no authentication (when using `opencode auth login`):
(setq agent-shell-opencode-authentication
(agent-shell-opencode-make-authentication :none t))"
:type 'alist
:group 'agent-shell)
(defcustom agent-shell-opencode-default-model-id
nil
"Default OpenCode model ID.
Must be one of the model ID's displayed under \"Available models\"
when starting a new shell."
:type '(choice (const nil) string)
:group 'agent-shell)
(defcustom agent-shell-opencode-default-session-mode-id
nil
"Default OpenCode session mode ID.
Must be one of the mode ID's displayed under \"Available modes\"
when starting a new shell."
:type '(choice (const nil) string)
:group 'agent-shell)
(defcustom agent-shell-opencode-acp-command
'("opencode" "acp")
"Command and parameters for the OpenCode client.
The first element is the command name, and the rest are command parameters."
:type '(repeat string)
:group 'agent-shell)
(defcustom agent-shell-opencode-environment
nil
"Environment variables for the OpenCode client.
This should be a list of environment variables to be used when
starting the OpenCode client process.
Example usage to set custom environment variables:
(setq agent-shell-opencode-environment
(`agent-shell-make-environment-variables'
\"MY_VAR\" \"some-value\"
\"MY_OTHER_VAR\" \"another-value\"))"
:type '(repeat string)
:group 'agent-shell)
(defun agent-shell-opencode-make-agent-config ()
"Create an OpenCode agent configuration.
Returns an agent configuration alist using `agent-shell-make-agent-config'."
(agent-shell-make-agent-config
:identifier 'opencode
:mode-line-name "OpenCode"
:buffer-name "OpenCode"
:shell-prompt "OpenCode> "
:shell-prompt-regexp "OpenCode> "
:welcome-function #'agent-shell-opencode--welcome-message
:client-maker (lambda (buffer)
(agent-shell-opencode-make-client :buffer buffer))
:default-model-id (lambda () agent-shell-opencode-default-model-id)
:default-session-mode-id (lambda () agent-shell-opencode-default-session-mode-id)
:install-instructions "See https://opencode.ai/docs for installation."))
(defun agent-shell-opencode-start-agent ()
"Start an interactive OpenCode agent shell."
(interactive)
(agent-shell--dwim :config (agent-shell-opencode-make-agent-config)
:new-shell t))
(cl-defun agent-shell-opencode-make-client (&key buffer)
"Create an OpenCode client using BUFFER as context.
Uses `agent-shell-opencode-authentication' for authentication configuration."
(unless buffer
(error "Missing required argument: :buffer"))
(when (and (boundp 'agent-shell-opencode-command) agent-shell-opencode-command)
(user-error "Please migrate to use agent-shell-opencode-acp-command and eval (setq agent-shell-opencode-command nil)"))
(let ((api-key (agent-shell-opencode-key)))
(agent-shell--make-acp-client :command (car agent-shell-opencode-acp-command)
:command-params (cdr agent-shell-opencode-acp-command)
:environment-variables (append (cond ((map-elt agent-shell-opencode-authentication :none)
nil)
(api-key
(list (format "OPENCODE_API_KEY=%s" api-key)))
(t
(error "Missing OpenCode authentication (see agent-shell-opencode-authentication)")))
agent-shell-opencode-environment)
:context-buffer buffer)))
(defun agent-shell-opencode-key ()
"Get the OpenCode API key."
(cond ((stringp (map-elt agent-shell-opencode-authentication :api-key))
(map-elt agent-shell-opencode-authentication :api-key))
((functionp (map-elt agent-shell-opencode-authentication :api-key))
(condition-case _err
(funcall (map-elt agent-shell-opencode-authentication :api-key))
(error
(error "API key not found. Check out `agent-shell-opencode-authentication'"))))
(t
nil)))
(defun agent-shell-opencode--welcome-message (config)
"Return OpenCode welcome message using `shell-maker' CONFIG."
(let ((art (agent-shell--indent-string 4 (agent-shell-opencode--ascii-art)))
(message (string-trim-left (shell-maker-welcome-message config) "\n")))
(concat "\n\n"
art
"\n\n"
message)))
(defun agent-shell-opencode--ascii-art ()
"OpenCode ASCII art."
(let* ((is-dark (eq (frame-parameter nil 'background-mode) 'dark))
(text (string-trim "
▄
█▀▀█ █▀▀█ █▀▀█ █▀▀▄ █▀▀▀ █▀▀█ █▀▀█ █▀▀█
█░░█ █░░█ █▀▀▀ █░░█ █░░░ █░░█ █░░█ █▀▀▀
▀▀▀▀ █▀▀▀ ▀▀▀▀ ▀ ▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀
" "\n")))
(propertize text 'font-lock-face (if is-dark
'(:foreground "#4a9eff" :inherit fixed-pitch)
'(:foreground "#2563eb" :inherit fixed-pitch)))))
(provide 'agent-shell-opencode)
;;; agent-shell-opencode.el ends here