-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathai-code.el
More file actions
548 lines (487 loc) · 24.4 KB
/
ai-code.el
File metadata and controls
548 lines (487 loc) · 24.4 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
;;; 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.67
;; 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: 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-ai)
(require 'ai-code-mcp-server)
(require 'ai-code-notifications)
;; 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)
(defconst ai-code--diagnostics-first-harness-instruction
"Record a diagnostics baseline with the get_diagnostics MCP tool before editing. After each edit, re-run get_diagnostics for the touched files and do not finish until they have no new diagnostics compared with the baseline."
"Shared diagnostics-first harness guidance for code-change prompts.")
(defun ai-code--diagnostics-first-harness-instruction-inline ()
"Return diagnostics-first guidance formatted for inline prompt text."
(concat (downcase (substring ai-code--diagnostics-first-harness-instruction 0 1))
(substring ai-code--diagnostics-first-harness-instruction 1)))
;;;###autoload
(defcustom ai-code-test-after-code-change-suffix
"If any program code changes, run unit-tests and follow up on the test-result (fix code if there is an error)."
"User-provided prompt suffix for test-after-code-change."
:type '(choice (const nil) string)
:group 'ai-code)
;;;###autoload
(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.")
(defun ai-code--auto-test-backend ()
"Return the backend symbol used for auto-test prompt decisions."
(if (fboundp 'ai-code--effective-backend)
(or (ai-code--effective-backend) ai-code-selected-backend)
ai-code-selected-backend))
(defun ai-code--diagnostics-harness-enabled-p ()
"Return non-nil when the current backend should get diagnostics guidance."
(memq (ai-code--auto-test-backend)
ai-code-mcp-agent-enabled-backends))
(defun ai-code--maybe-append-diagnostics-harness-instruction (suffix &optional inline)
"Append diagnostics harness guidance to SUFFIX when the backend supports it.
When INLINE is non-nil, use the inline-formatted diagnostics instruction."
(if (and (stringp suffix)
(> (length suffix) 0)
(ai-code--diagnostics-harness-enabled-p))
(let ((instruction (if inline
(ai-code--diagnostics-first-harness-instruction-inline)
ai-code--diagnostics-first-harness-instruction)))
(concat suffix
(if inline " " "")
instruction))
suffix))
(defun ai-code--test-after-code-change--resolve-tdd-suffix ()
"Return the TDD-style suffix for test-after-code-change prompt text."
(ai-code--maybe-append-diagnostics-harness-instruction
(concat ai-code--tdd-red-green-base-instruction
ai-code--tdd-red-green-tail-instruction
ai-code--tdd-run-test-after-each-stage-instruction
ai-code--tdd-test-pattern-instruction)))
(defun ai-code--test-after-code-change--resolve-tdd-with-refactoring-suffix ()
"Return the TDD+refactoring suffix for test-after-code-change prompt text."
(ai-code--maybe-append-diagnostics-harness-instruction
(concat ai-code--tdd-red-green-base-instruction
ai-code--tdd-with-refactoring-extension-instruction
ai-code--tdd-red-green-tail-instruction
ai-code--tdd-run-test-after-each-stage-instruction
ai-code--tdd-test-pattern-instruction)))
(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-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)))
;;;###autoload
(defcustom ai-code-use-gptel-classify-prompt nil
"Whether to use GPTel to classify prompts in `ask-me` auto test mode.
When non-nil and `ai-code-auto-test-type` is not nil, classify whether
the current prompt is about code changes. If not, skip test type selection
and do not append auto test suffix."
:type 'boolean
: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)
"Resolve the concrete auto test type for current send action for PROMPT-TEXT."
(if (eq ai-code-auto-test-type 'ask-me)
(ai-code--resolve-ask-auto-test-type-for-send prompt-text)
(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)
"Resolve the send-time auto test type for ask-me mode with PROMPT-TEXT."
(if ai-code-use-gptel-classify-prompt
(pcase (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--auto-test-suffix-for-type (type)
"Return prompt suffix for auto test TYPE."
(pcase type
('test-after-change
(ai-code--maybe-append-diagnostics-harness-instruction
ai-code-test-after-code-change-suffix t))
('tdd (ai-code--test-after-code-change--resolve-tdd-suffix))
('tdd-with-refactoring (ai-code--test-after-code-change--resolve-tdd-with-refactoring-suffix))
('no-test "Do not write or run any test.")
(_ nil)))
(defun ai-code--resolve-auto-test-suffix-for-send (&optional prompt-text)
"Resolve auto test suffix for current send action for PROMPT-TEXT."
(ai-code--auto-test-suffix-for-type
(ai-code--resolve-auto-test-type-for-send prompt-text)))
(defun ai-code--with-auto-test-suffix-for-send (orig-fun prompt-text)
"Resolve and bind auto test suffix before calling ORIG-FUN with PROMPT-TEXT."
(let ((ai-code-auto-test-suffix (ai-code--resolve-auto-test-suffix-for-send prompt-text)))
(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)
(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)
;;;###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))))
(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" "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 or open task file" ai-code-create-or-open-task-file)
("n" "Take notes from AI session region" ai-code-take-notes))
(transient-define-group ai-code--menu-other-tools
("." "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)
(":" "Speech to text input" ai-code-speech-to-text-input)
("N" "Toggle notifications" ai-code-notifications-toggle))
(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)
(call-interactively (ai-code--menu-prefix-command)))
(provide 'ai-code)
;;; ai-code.el ends here