-
-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathagent-shell-qwen.el
More file actions
203 lines (170 loc) · 8.84 KB
/
Copy pathagent-shell-qwen.el
File metadata and controls
203 lines (170 loc) · 8.84 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
196
197
198
199
200
201
202
203
;;; agent-shell-qwen.el --- Qwen Code 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 Qwen Code-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--interpolate-gradient "agent-shell")
(declare-function agent-shell--make-acp-client "agent-shell")
(declare-function agent-shell-make-agent-config "agent-shell")
(autoload 'agent-shell-make-agent-config "agent-shell")
(declare-function agent-shell--dwim "agent-shell")
(cl-defun agent-shell-qwen-make-authentication (&key login openai-api-key)
"Create Qwen Code authentication configuration.
LOGIN when non-nil uses Qwen OAuth login-based authentication.
OPENAI-API-KEY is an OpenAI API key string (or a function returning it)
for authenticating against an OpenAI-compatible provider (for example
OpenRouter). Set the provider's base URL and model via
`agent-shell-qwen-environment'.
Only one of LOGIN or OPENAI-API-KEY should be provided, never both."
(when (and login openai-api-key)
(error "Cannot specify both :login and :openai-api-key - choose one"))
(unless (or login openai-api-key)
(error "Must specify either :login or :openai-api-key"))
(cond
(login `((:login . ,login)))
(openai-api-key `((:openai-api-key . ,openai-api-key)))))
(defcustom agent-shell-qwen-authentication
(agent-shell-qwen-make-authentication :login t)
"Configuration for Qwen Code authentication.
For OAuth login-based authentication:
(setq agent-shell-qwen-authentication
(agent-shell-qwen-make-authentication :login t))
For an OpenAI-compatible provider (for example OpenRouter), pass the
API key and set the base URL and model via `agent-shell-qwen-environment':
(setq agent-shell-qwen-authentication
(agent-shell-qwen-make-authentication :openai-api-key \"your-key\"))
(setq agent-shell-qwen-environment
(agent-shell-make-environment-variables
\"OPENAI_BASE_URL\" \"https://openrouter.ai/api/v1\"
\"OPENAI_MODEL\" \"x-ai/grok-4.3\"))"
:type 'alist
:group 'agent-shell)
(defcustom agent-shell-qwen-acp-command
'("qwen" "--experimental-acp")
"Command and parameters for the Qwen Code client.
The first element is the command name, and the rest are command parameters."
:type '(repeat string)
:group 'agent-shell)
(defcustom agent-shell-qwen-environment
nil
"Environment variables for the Qwen Code client.
This should be a list of environment variables to be used when
starting the Qwen Code client process.
Example usage to set custom environment variables:
(setq agent-shell-qwen-environment
(`agent-shell-make-environment-variables'
\"MY_VAR\" \"some-value\"
\"MY_OTHER_VAR\" \"another-value\"))"
:type '(repeat string)
:group 'agent-shell)
(defun agent-shell-qwen-make-agent-config ()
"Create a Qwen Code CLI agent configuration.
Returns an agent configuration alist using `agent-shell-make-agent-config'."
(agent-shell-make-agent-config
:identifier 'qwen-code
:mode-line-name "Qwen Code"
:buffer-name "Qwen Code"
:shell-prompt "qwen> "
:shell-prompt-regexp "qwen> "
:icon-name "qwen.png"
:welcome-function #'agent-shell-qwen--welcome-message
:needs-authentication t
:authenticate-request-maker (lambda ()
(cond
((map-elt agent-shell-qwen-authentication :login)
(acp-make-authenticate-request :method-id "qwen-oauth"))
((map-elt agent-shell-qwen-authentication :openai-api-key)
(acp-make-authenticate-request :method-id "openai"))
(t
(user-error "Unknown authentication: %s" agent-shell-qwen-authentication))))
:client-maker (lambda (buffer)
(agent-shell-qwen-make-client :buffer buffer))
:install-instructions "See https://github.com/QwenLM/qwen-code for installation."))
(defun agent-shell-qwen-start ()
"Start an interactive Qwen Code CLI agent shell."
(interactive)
(agent-shell--dwim :config (agent-shell-qwen-make-agent-config)
:new-shell t))
(cl-defun agent-shell-qwen-make-client (&key buffer)
"Create a Qwen Code client with BUFFER as context."
(unless buffer
(error "Missing required argument: :buffer"))
(when (and (boundp 'agent-shell-qwen-command) agent-shell-qwen-command)
(user-error "Please migrate to use agent-shell-qwen-acp-command and eval (setq agent-shell-qwen-command nil)"))
(agent-shell--make-acp-client :command (car agent-shell-qwen-acp-command)
:command-params (cdr agent-shell-qwen-acp-command)
:environment-variables (append (when-let* ((api-key (agent-shell-qwen--openai-api-key)))
(list (format "OPENAI_API_KEY=%s" api-key)))
agent-shell-qwen-environment)
:context-buffer buffer))
(defun agent-shell-qwen--openai-api-key ()
"Get the OpenAI API key from `agent-shell-qwen-authentication'."
(cond ((stringp (map-elt agent-shell-qwen-authentication :openai-api-key))
(map-elt agent-shell-qwen-authentication :openai-api-key))
((functionp (map-elt agent-shell-qwen-authentication :openai-api-key))
(condition-case _err
(funcall (map-elt agent-shell-qwen-authentication :openai-api-key))
(error
(error "OpenAI API key not found. Check out `agent-shell-qwen-authentication'"))))
(t
nil)))
(defun agent-shell-qwen--welcome-message (config)
"Return Qwen Code ASCII art as welcome message using `shell-maker' CONFIG."
(let ((art (agent-shell--indent-string 4 (agent-shell-qwen--ascii-art)))
(message (string-trim-left (shell-maker-welcome-message config) "\n")))
(concat "\n\n\n"
art
"\n\n"
message)))
(defun agent-shell-qwen--ascii-art ()
"Generate Qwen Code ASCII art with Qwen-branded colors."
;; Based on:
;; https://github.com/QwenLM/qwen-code/tree/main/packages/cli/src/ui/components/Header.tsx
;; https://github.com/QwenLM/qwen-code/tree/main/packages/cli/src/ui/components/AsciiArt.ts
;; https://github.com/QwenLM/qwen-code/tree/main/packages/cli/src/ui/themes/theme.ts
(let* ((text (string-trim "
██╗ ██████╗ ██╗ ██╗███████╗███╗ ██╗
╚██╗ ██╔═══██╗██║ ██║██╔════╝████╗ ██║
╚██╗ ██║ ██║██║ █╗ ██║█████╗ ██╔██╗ ██║
██╔╝ ██║▄▄ ██║██║███╗██║██╔══╝ ██║╚██╗██║
██╔╝ ╚██████╔╝╚███╔███╔╝███████╗██║ ╚████║
╚═╝ ╚══▀▀═╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═══╝" "\n"))
(is-dark (eq (frame-parameter nil 'background-mode) 'dark))
(gradient-colors (if is-dark
'("#FF6B35" "#F7931E" "#FFD23F")
'("#E85D04" "#F48C06" "#FAA307")))
(lines (split-string text "\n"))
(result ""))
(dolist (line lines)
(let ((line-length (length line))
(propertized-line ""))
(dotimes (i line-length)
(let* ((char (substring line i (1+ i)))
(progress (/ (float i) line-length))
(color (agent-shell--interpolate-gradient gradient-colors progress)))
(setq propertized-line
(concat propertized-line
(propertize char 'font-lock-face `(:foreground ,color :inherit fixed-pitch))))))
(setq result (concat result propertized-line "\n"))))
(string-trim-right result)))
(provide 'agent-shell-qwen)
;;; agent-shell-qwen.el ends here