-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathai-code.el
More file actions
584 lines (521 loc) · 26.3 KB
/
ai-code.el
File metadata and controls
584 lines (521 loc) · 26.3 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
;;; ai-code.el --- Unified interface for AI coding backends such as Codex CLI, Copilot CLI, Claude Code, Gemini CLI, Opencode, Grok CLI, etc -*- lexical-binding: t; -*-
;; Author: Kang Tu <tninja@gmail.com>
;; Version: 1.70
;; Package-Requires: ((emacs "29.1") (transient "0.9.0") (magit "2.1.0"))
;; URL: https://github.com/tninja/ai-code-interface.el
;; SPDX-License-Identifier: Apache-2.0
;;; Commentary:
;; This package provides a uniform Emacs interface for various AI-assisted software
;; development CLI tools. Its purpose is to offer a consistent user experience
;; across different AI backends, providing context-aware code actions, and integrating
;; seamlessly with AI-driven agile development workflows.
;;
;; URL: https://github.com/tninja/ai-code-interface.el
;;
;; Supported AI coding CLIs include:
;; - OpenAI Codex
;; - GitHub Copilot CLI
;; - Gemini CLI
;; - Claude Code
;; - Opencode
;; - Grok CLI
;; - Cursor CLI
;; - Kiro CLI
;; - CodeBuddy Code CLI
;; - Aider CLI
;; - agent-shell
;; - ECA (Editor Code Assistant)
;;
;; New User Quick Start:
;; 1) Minimal setup:
;;
;; (use-package ai-code
;; :config
;; (ai-code-set-backend 'codex)
;; ;; Optional: use a narrower transient menu on smaller frames.
;; ;; (setq ai-code-menu-layout 'two-columns)
;; (global-set-key (kbd "C-c a") #'ai-code-menu))
;;
;; 2) First 60 seconds:
;; - C-c a a : Start AI CLI session
;; - C-c a c : Ask AI to change current function/region
;; - C-c a q : Ask question only (no code change)
;; - C-c a z : Jump back to active AI session buffer
;;
;; Basic configuration example:
;;
;; (use-package ai-code
;; :config
;; ;; use codex as backend, other options are 'gemini, 'github-copilot-cli, 'opencode, 'grok, 'claude-code-ide, 'claude-code-el, 'claude-code, 'cursor, 'kiro, 'codebuddy, 'aider, 'agent-shell, 'eca
;; (ai-code-set-backend 'codex) ;; set your preferred backend
;; ;; Optional: use a narrower transient menu on smaller frames
;; ;; (setq ai-code-menu-layout 'two-columns)
;; (global-set-key (kbd "C-c a") #'ai-code-menu)
;; ;; Optional: Disable @ file completion in comments and AI sessions
;; ;; (ai-code-prompt-filepath-completion-mode -1)
;; ;; Optional: Configure AI test prompting mode (e.g., ask about running tests/TDD) for a tighter build-test loop
;; (setq ai-code-auto-test-type 'ask-me)
;; ;; Optional: Offer numbered next steps for discussion prompts at send time
;; ;; (setq ai-code-discussion-auto-follow-up-enabled t)
;; ;; Optional: In the AI session buffer (Evil normal state), SPC triggers the prompt entry UI
;; (with-eval-after-load 'evil (ai-code-backends-infra-evil-setup))
;; (global-auto-revert-mode 1)
;; (setq auto-revert-interval 1) ;; set to 1 second for faster update
;; )
;;
;; Key features:
;; - Transient-driven Hub (C-c a) for all AI capabilities.
;; - One key switching to different AI backend (C-c a s).
;; - Context-aware code actions (change code, implement TODOs, explain code, @ completion).
;; - Agile development workflows (TDD cycle, refactoring navigator, review helper, Build / Test feedback loop).
;; - Seamless prompt management using Org-mode.
;; - AI-assisted bash commands and productivity utilities.
;; - Multiple AI coding sessions management.
;;
;; Many features are ported from aider.el, making it a powerful alternative for
;; developers who wish to switch between modern AI coding CLIs while keeping
;; the same interface and agile tools.
;;; Code:
(require 'org)
(require 'which-func)
(require 'magit)
(require 'transient)
(require 'seq)
(defgroup ai-code nil
"Unified interface for multiple AI coding CLIs."
:group 'tools)
;;;###autoload
(defcustom ai-code-menu-layout 'default
"Layout used by `ai-code-menu`.
`default' keeps the original wide multi-column transient.
`two-columns' uses a narrower two-column transient with the same commands."
:type '(choice (const :tag "Default multi-column menu" default)
(const :tag "Narrower two-column menu" two-columns))
:group 'ai-code)
(require 'ai-code-backends)
(require 'ai-code-backends-infra)
(require 'ai-code-input)
(require 'ai-code-prompt-mode)
(require 'ai-code-agile)
(require 'ai-code-git)
(require 'ai-code-change)
(require 'ai-code-discussion)
(require 'ai-code-codex-cli)
(require 'ai-code-aider-cli)
(require 'ai-code-github-copilot-cli)
(require 'ai-code-opencode)
(require 'ai-code-grok-cli)
(require 'ai-code-codebuddy-cli)
(require 'ai-code-file)
(require 'ai-code-harness)
(require 'ai-code-ai)
(require 'ai-code-mcp-server)
(require 'ai-code-notifications)
(require 'ai-code-onboarding)
;; Forward declarations for dynamically defined backend functions
(declare-function ai-code-cli-start "ai-code-backends")
(declare-function ai-code-cli-resume "ai-code-backends")
(declare-function ai-code-cli-switch-to-buffer "ai-code-backends")
(declare-function ai-code-cli-send-command "ai-code-backends" (command))
(declare-function ai-code-current-backend-label "ai-code-backends")
(declare-function ai-code-set-backend "ai-code-backends")
(declare-function ai-code-select-backend "ai-code-backends")
(declare-function ai-code-open-backend-config "ai-code-backends")
(declare-function ai-code-open-backend-agent-file "ai-code-backends")
(declare-function ai-code-upgrade-backend "ai-code-backends")
(defvar ai-code-mcp-agent-enabled-backends)
(declare-function ai-code-install-backend-skills "ai-code-backends")
(declare-function ai-code-backends-infra--session-buffer-p "ai-code-backends-infra" (buffer))
(declare-function ai-code--process-word-for-filepath "ai-code-prompt-mode" (word git-root-truename))
(declare-function ai-code-call-gptel-sync "ai-code-prompt-mode" (question))
;; Default aliases are set when a backend is applied via `ai-code-select-backend`.
;;;###autoload
(defcustom ai-code-use-gptel-headline nil
"Whether to use GPTel to generate headlines for prompt sections.
If non-nil, call `gptel-get-answer` from gptel-assistant.el to generate
headlines instead of using the current time string."
:type 'boolean
:group 'ai-code)
;;;###autoload
(defcustom ai-code-prompt-suffix nil
"Suffix text to append to prompts after a new line.
If non-nil, this text will be appended to the end of each prompt
with a newline separator."
:type '(choice (const nil) string)
:group 'ai-code)
;;;###autoload
(defcustom ai-code-use-prompt-suffix t
"When non-nil, append `ai-code-prompt-suffix` where supported."
:type 'boolean
:group 'ai-code)
(defvar ai-code-auto-test-suffix ai-code-test-after-code-change-suffix
"Default prompt suffix to request running tests after code changes.")
(defvar ai-code-auto-test-type nil
"Forward declaration for `ai-code-auto-test-type'.
See the later `defcustom' for user-facing documentation and default.")
(defvar ai-code-discussion-auto-follow-up-suffix nil
"Send-time prompt suffix that requests numbered next-step suggestions.")
(defvar ai-code-discussion-auto-follow-up-enabled nil
"Forward declaration for `ai-code-discussion-auto-follow-up-enabled'.
See the later `defcustom' for user-facing documentation and default.")
(defconst ai-code--auto-test-type-ask-choices
'(("Run tests after code change" . test-after-change)
("TDD Red + Green (write failing test, then make it pass)" . tdd)
("TDD Red + Green + Blue (refactor after Green)" . tdd-with-refactoring)
("Do not write or run tests" . no-test))
"Resolve auto test suffix choices for `ask-me` mode.")
(defconst ai-code--auto-test-type-persistent-choices
'(("Ask every time" . ask-me)
("Off" . nil))
"Persistent choices for `ai-code-auto-test-type`.")
(defconst ai-code--auto-follow-up-type-ask-choices
'(("Suggest next steps" . t)
("No next-step suggestions" . nil))
"Resolve next-step suggestion choices for `ask-me` mode.")
(defconst ai-code--auto-test-type-legacy-persistent-modes
'(test-after-change tdd tdd-with-refactoring)
"Legacy persistent values still honored for backward compatibility.")
(defun ai-code--read-auto-test-type-choice ()
"Read and return one prompt test type for this send action."
(let* ((choice (completing-read "Choose test prompt type for this send: "
(mapcar #'car ai-code--auto-test-type-ask-choices)
nil t nil nil
(caar ai-code--auto-test-type-ask-choices)))
(choice-cell (assoc choice ai-code--auto-test-type-ask-choices)))
(if choice-cell
(cdr choice-cell)
'test-after-change)))
(defun ai-code--read-auto-follow-up-choice ()
"Read whether to request numbered next-step suggestions for this send action."
(let* ((choice (completing-read "Discussion follow-up suggestions: "
(mapcar #'car ai-code--auto-follow-up-type-ask-choices)
nil t nil nil
(caar ai-code--auto-follow-up-type-ask-choices)))
(choice-cell (assoc choice ai-code--auto-follow-up-type-ask-choices)))
(and choice-cell
(cdr choice-cell))))
;;;###autoload
(defcustom ai-code-use-gptel-classify-prompt nil
"Whether to use GPTel to classify prompts before send-time suffix routing.
When non-nil and `ai-code-auto-test-type` or
`ai-code-discussion-auto-follow-up-enabled` is non-nil, classify whether
the current prompt is about code changes. This lets code-change prompts
skip discussion follow-up suggestions, and discussion prompts skip auto
test suffixes."
:type 'boolean
:group 'ai-code)
;;;###autoload
(defcustom ai-code-next-step-suggestion-suffix
(concat
"At the end of your response, provide 3-4 numbered candidate next\n"
"steps. Keep each option to one sentence. At least 2 candidates must\n"
"be AI-actionable items as follow up: either a code change or tool usage. Mark the\n"
"single best option with \"(Recommended)\". If the user replies with\n"
"only a number such as 1, 2, 3, or 4, treat that as selecting the\n"
"corresponding next step from your previous answer. The user may also\n"
"ignore these options and send a different follow-up request instead.")
"Prompt suffix for numbered next-step suggestions in discussion prompts."
:type '(choice (const nil) string)
:group 'ai-code)
(defun ai-code--gptel-classify-prompt-code-change (prompt-text)
"Classify whether PROMPT-TEXT requests a code change using GPTel.
Return one of: `code-change`, `non-code-change`, or `unknown`."
(let ((classification
(condition-case err
(if (require 'gptel nil t)
(let* ((raw-answer (ai-code-call-gptel-sync
(concat "Classify whether this user prompt requests program code changes in a repository.\n"
"Reply with exactly one token: CODE_CHANGE or NOT_CODE_CHANGE.\n"
"Treat edit/refactor/implement/fix/add/remove/update/tests as CODE_CHANGE.\n"
"Treat explain/summarize/discuss/review without editing as NOT_CODE_CHANGE.\n\n"
"Prompt:\n" prompt-text)))
(answer (upcase (string-trim (or raw-answer "")))))
(cond
((string-match-p "\\`CODE_CHANGE\\b" answer) 'code-change)
((string-match-p "\\`NOT_CODE_CHANGE\\b" answer) 'non-code-change)
(t 'unknown)))
'unknown)
(error
(message "GPTel prompt classification failed: %s" (error-message-string err))
'unknown))))
(message "GPTel prompt classification result: %s" classification)
classification))
(defun ai-code--resolve-auto-test-type-for-send (&optional prompt-text classification)
"Resolve the concrete auto test type for current send action for PROMPT-TEXT.
CLASSIFICATION is the optional GPTel prompt classification result."
(if (eq ai-code-auto-test-type 'ask-me)
(ai-code--resolve-ask-auto-test-type-for-send prompt-text classification)
(and (memq ai-code-auto-test-type
ai-code--auto-test-type-legacy-persistent-modes)
ai-code-auto-test-type)))
(defun ai-code--resolve-ask-auto-test-type-for-send (&optional prompt-text classification)
"Resolve the send-time auto test type for ask-me mode with PROMPT-TEXT.
CLASSIFICATION is the optional GPTel prompt classification result."
(if ai-code-use-gptel-classify-prompt
(pcase (or classification
(ai-code--gptel-classify-prompt-code-change prompt-text))
('code-change (ai-code--read-auto-test-type-choice))
('non-code-change nil)
(_ (ai-code--read-auto-test-type-choice)))
(ai-code--read-auto-test-type-choice)))
(defun ai-code--resolve-auto-follow-up-suffix-for-send (&optional prompt-text classification)
"Resolve next-step suggestion suffix for current send action for PROMPT-TEXT.
CLASSIFICATION is the optional GPTel prompt classification result."
(when (and ai-code-discussion-auto-follow-up-enabled
ai-code-next-step-suggestion-suffix)
(let ((classification (or classification
(and ai-code-use-gptel-classify-prompt
(ai-code--gptel-classify-prompt-code-change prompt-text)))))
(unless (eq classification 'code-change)
(and (ai-code--read-auto-follow-up-choice)
ai-code-next-step-suggestion-suffix)))))
(defun ai-code--resolve-auto-test-suffix-for-send (&optional prompt-text classification)
"Resolve auto test suffix for current send action for PROMPT-TEXT.
CLASSIFICATION is the optional GPTel prompt classification result."
(ai-code--auto-test-suffix-for-type
(ai-code--resolve-auto-test-type-for-send prompt-text classification)))
(defun ai-code--classify-prompt-for-send (&optional prompt-text)
"Return GPTel prompt classification for PROMPT-TEXT when needed.
Send-time routing uses this result for test and discussion follow-up suffixes."
(when (and ai-code-use-gptel-classify-prompt
(or ai-code-auto-test-type
ai-code-discussion-auto-follow-up-enabled))
(ai-code--gptel-classify-prompt-code-change prompt-text)))
(defun ai-code--with-auto-test-suffix-for-send (orig-fun prompt-text)
"Resolve and bind send-time suffixes before calling ORIG-FUN with PROMPT-TEXT."
(let* ((classification (ai-code--classify-prompt-for-send prompt-text))
(ai-code-auto-test-suffix
(ai-code--resolve-auto-test-suffix-for-send
prompt-text classification))
(ai-code-discussion-auto-follow-up-suffix
(ai-code--resolve-auto-follow-up-suffix-for-send
prompt-text classification)))
(funcall orig-fun prompt-text)))
(unless (advice-member-p #'ai-code--with-auto-test-suffix-for-send
'ai-code--write-prompt-to-file-and-send)
(advice-add 'ai-code--write-prompt-to-file-and-send
:around
#'ai-code--with-auto-test-suffix-for-send))
(defun ai-code--test-after-code-change--set (symbol value)
"Set SYMBOL to VALUE and update related suffix behavior."
(set-default symbol value)
(set symbol value)
(setq ai-code-auto-test-suffix
(ai-code--auto-test-suffix-for-type value)))
(defun ai-code--apply-auto-test-type (value)
"Set `ai-code-auto-test-type` to VALUE and refresh related suffix."
(setq ai-code-auto-test-type value)
(ai-code--test-after-code-change--set 'ai-code-auto-test-type value)
value)
(defun ai-code--apply-discussion-auto-follow-up-enabled (value)
"Set `ai-code-discussion-auto-follow-up-enabled` to VALUE."
(setq ai-code-discussion-auto-follow-up-enabled value)
value)
(defcustom ai-code-auto-test-type nil
"Select how prompts request tests after code changes."
:type '(choice (const :tag "Ask every time" ask-me)
(const :tag "Off" nil))
:set #'ai-code--test-after-code-change--set
:group 'ai-code)
(defcustom ai-code-discussion-auto-follow-up-enabled nil
"When non-nil, prompts may request numbered next-step suggestions.
Customize this to non-nil to turn on the send-time choice globally.
Pair it with `ai-code-use-gptel-classify-prompt` when you want
code-change prompts to skip these discussion follow-up suggestions."
:type 'boolean
:set (lambda (symbol value)
(set-default symbol value)
(set symbol value))
:group 'ai-code)
;;;###autoload
(defcustom ai-code-cli "claude"
"The command-line AI tool to use for `ai-code-apply-prompt-on-current-file`."
:type 'string
:group 'ai-code)
(defun ai-code--get-clipboard-text ()
"Return the current clipboard contents as a plain string, or nil if unavailable."
(let* ((selection (when (fboundp 'gui-get-selection)
(or (let ((text (gui-get-selection 'CLIPBOARD 'UTF8_STRING)))
(and (stringp text) (not (string-empty-p text)) text))
(let ((text (gui-get-selection 'CLIPBOARD 'STRING)))
(and (stringp text) (not (string-empty-p text)) text)))))
(kill-text (condition-case nil
(current-kill 0 t)
(error nil))))
(let ((text (or selection kill-text)))
(when (stringp text)
(substring-no-properties text)))))
;;;###autoload
(defun ai-code-send-command (arg)
"Read a prompt from the user and send it to the AI service.
With \\[universal-argument], append files and repo context.
With \\[universal-argument] \\[universal-argument], also append clipboard context.
ARG is the prefix argument."
;; Prefix levels control whether files/repo and clipboard context are included,
;; and the prompt label reflects the selected context.
(interactive "P")
(let* ((initial-input (when (use-region-p)
(string-trim-right
(buffer-substring-no-properties (region-beginning)
(region-end))
"\n")))
(prefix-value (when arg (prefix-numeric-value arg)))
(include-files-and-repo (and arg (>= prefix-value 4)))
(include-clipboard (and arg (>= prefix-value 16)))
(files-context-string (when include-files-and-repo
(ai-code--get-context-files-string)))
(repo-context-string (when include-files-and-repo
(ai-code--format-repo-context-info)))
(clipboard-context (when include-clipboard
(ai-code--get-clipboard-text)))
(prompt-label
(cond
(include-clipboard "Send to AI (files/repo/clipboard context): ")
(include-files-and-repo "Send to AI (files/repo context): ")
(t "Send to AI: "))))
(when-let* ((prompt (ai-code-read-string prompt-label initial-input)))
(let ((final-prompt
(concat prompt
(or files-context-string "")
(or repo-context-string "")
(when (and clipboard-context
(string-match-p "\\S-" clipboard-context))
(concat "\n\nClipboard context:\n"
clipboard-context)))))
(ai-code--insert-prompt final-prompt)))))
;;;###autoload
(defun ai-code-cli-switch-to-buffer-or-hide ()
"Hide the current buffer when its name both begins and ends with '*'.
Otherwise switch to AI CLI buffer."
(interactive)
(if (and current-prefix-arg
(ai-code-backends-infra--session-buffer-p (current-buffer)))
(quit-window)
;; Try with argument first; fall back to no-arg call if function doesn't accept it
(condition-case nil
(ai-code-cli-switch-to-buffer t)
(wrong-number-of-arguments ;; will be triggered during calling corresponding function in external backends such as claude-code-ide.el, claude-code.el, since the corresponding function doesn't have parameter
(ai-code-cli-switch-to-buffer)))))
(defclass ai-code--use-prompt-suffix-type (transient-lisp-variable)
((variable :initform 'ai-code-use-prompt-suffix)
(format :initform "%k %d %v")
(reader :initform #'transient-lisp-variable--read-value))
"Toggle helper for `ai-code-use-prompt-suffix`.")
(transient-define-infix ai-code--infix-toggle-suffix ()
"Toggle `ai-code-use-prompt-suffix`."
:class 'ai-code--use-prompt-suffix-type
:key "^"
:description "Use prompt suffix:"
:reader (lambda (_prompt _initial-input _history)
(not ai-code-use-prompt-suffix)))
(defclass ai-code--code-change-auto-test-type (transient-lisp-variable)
((variable :initform 'ai-code-auto-test-type)
(format :initform "%k %d %v")
(reader :initform #'transient-lisp-variable--read-value))
"Selection helper for `ai-code-auto-test-type`.")
(transient-define-infix ai-code--infix-select-code-change-auto-test ()
"Select `ai-code-auto-test-type` mode."
:class 'ai-code--code-change-auto-test-type
:key "T"
:description "Auto test type:"
:reader (lambda (_prompt _initial-input _history)
(let* ((choices ai-code--auto-test-type-persistent-choices)
(choice (completing-read "Test after code change: "
(mapcar #'car choices)
nil t nil nil
(caar choices))))
(let ((value (cdr (assoc choice choices))))
(ai-code--apply-auto-test-type value)
(message "Auto test type set to %s; prompt suffix is now %s"
(or value "off")
(if (eq value 'ask-me)
"ask each send"
(or ai-code-auto-test-suffix "cleared")))
value))))
(defclass ai-code--discussion-auto-follow-up-enabled-type (transient-lisp-variable)
((variable :initform 'ai-code-discussion-auto-follow-up-enabled)
(format :initform "%k %d %v")
(reader :initform #'transient-lisp-variable--read-value))
"Selection helper for `ai-code-discussion-auto-follow-up-enabled`.")
(transient-define-infix ai-code--infix-toggle-auto-follow-up ()
"Toggle `ai-code-discussion-auto-follow-up-enabled`."
:class 'ai-code--discussion-auto-follow-up-enabled-type
:key "F"
:description "Discussion follow-up:"
:reader (lambda (_prompt _initial-input _history)
(ai-code--apply-discussion-auto-follow-up-enabled
(not ai-code-discussion-auto-follow-up-enabled))))
(defun ai-code--select-backend-description (&rest _)
"Dynamic description for the Select Backend menu item.
Shows the current backend label to the right."
(format "Select Backend (%s)" (ai-code-current-backend-label)))
;; Mirror aider.el's reusable-section approach using `transient-define-group`.
(transient-define-group ai-code--menu-ai-cli-session
("a" "Start AI CLI (C-u: args)" ai-code-cli-start)
("R" "Resume AI CLI (C-u: args)" ai-code-cli-resume)
("z" "Switch to AI CLI (C-u: hide)" ai-code-cli-switch-to-buffer-or-hide)
("s" ai-code-select-backend :description ai-code--select-backend-description)
("u" "Install / Upgrade AI CLI" ai-code-upgrade-backend)
("S" "(Un)Install skills for backend" ai-code-install-backend-skills)
("g" "Open backend config (eg. add mcp)" ai-code-open-backend-config)
("G" "Open backend repo agent file" ai-code-open-backend-agent-file)
("|" "Apply prompt on file" ai-code-apply-prompt-on-current-file))
(transient-define-group ai-code--menu-actions-with-context
(ai-code--infix-toggle-suffix)
("c" "Code change (C-u: clipboard)" ai-code-code-change)
("i" "Implement TODO (C-u: clipboard)" ai-code-implement-todo)
("q" "Ask question (C-u: clipboard)" ai-code-ask-question)
("x" "Explain code in scope" ai-code-explain)
("<SPC>" "Send command (C-u: context)" ai-code-send-command)
("@" "Context (add/show/clear)" ai-code-context-action)
("C" "Create file or dir with AI" ai-code-create-file-or-dir)
("w" "New worktree branch (C-u: status)" ai-code-git-worktree-action))
(transient-define-group ai-code--menu-agile-development
(ai-code--infix-select-code-change-auto-test)
("r" "Refactor Code" ai-code-refactor-book-method)
("t" "Test Driven Development" ai-code-tdd-cycle)
("v" "GitHub PR AI Action" ai-code-pull-or-review-diff-file)
("!" "Run Current File or Command" ai-code-run-current-file-or-shell-cmd)
("b" "Build/Test/Lint (AI follow-up)" ai-code-build-or-test-project)
("K" "Create/Open task file (C-u: Search)" ai-code-create-or-open-task-file)
("n" "Take notes from AI session region" ai-code-take-notes)
(":" "Speech to text input" ai-code-speech-to-text-input))
(transient-define-group ai-code--menu-other-tools
(ai-code--infix-toggle-auto-follow-up)
("." "Init projectile and gtags" ai-code-init-project)
("e" "Debug exception (C-u: clipboard)" ai-code-investigate-exception)
("f" "Fix Flycheck errors in scope" ai-code-flycheck-fix-errors-in-scope)
("k" "Copy Cur File Name (C-u: full)" ai-code-copy-buffer-file-name-to-clipboard)
("o" "Open recent file (C-u: insert)" ai-code-git-repo-recent-modified-files)
("p" "Open prompt history file" ai-code-open-prompt-file)
("m" "Debug python MCP server" ai-code-debug-mcp)
("N" "Toggle notifications" ai-code-notifications-toggle)
("h" "Help / Quick Start" ai-code-onboarding-open-quickstart))
(transient-define-prefix ai-code-menu-default ()
"Default transient menu for AI Code Interface interactive functions."
["AI Code Commands"
["AI CLI session" ai-code--menu-ai-cli-session]
["AI Code Actions With Context" ai-code--menu-actions-with-context]
["AI Agile Development With Harness" ai-code--menu-agile-development]
["Other Tools" ai-code--menu-other-tools]])
(transient-define-prefix ai-code-menu-2-columns ()
"Narrower two-column transient menu for AI Code Interface interactive functions."
["AI Code Commands"
["AI CLI session" ai-code--menu-ai-cli-session]
["AI Code Actions With Context" ai-code--menu-actions-with-context]]
[["AI Agile Development With Harness" ai-code--menu-agile-development]
["Other Tools" ai-code--menu-other-tools]])
(defun ai-code--menu-prefix-command ()
"Return the transient prefix command selected by `ai-code-menu-layout`."
(pcase ai-code-menu-layout
('two-columns #'ai-code-menu-2-columns)
('default #'ai-code-menu-default)
(_ #'ai-code-menu-default)))
;;;###autoload
(defun ai-code-menu ()
"Show the AI Code transient menu selected by `ai-code-menu-layout`."
(interactive)
(ai-code-onboarding-maybe-show-quickstart)
(call-interactively (ai-code--menu-prefix-command)))
(provide 'ai-code)
;;; ai-code.el ends here