forked from tninja/ai-code-interface.el
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-code-prompt-mode.el
More file actions
739 lines (672 loc) · 33 KB
/
ai-code-prompt-mode.el
File metadata and controls
739 lines (672 loc) · 33 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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
;;; ai-code-prompt-mode.el --- Unified interface for multiple AI coding CLI tool -*- lexical-binding: t; -*-
;; Author: Kang Tu <[email protected]>
;; SPDX-License-Identifier: Apache-2.0
;;; Code:
(require 'org)
(require 'magit)
(defvar yas-snippet-dirs)
(declare-function ai-code--git-root "ai-code-file" (&optional dir))
(defvar ai-code-use-gptel-headline nil)
(defvar ai-code-prompt-suffix)
(defvar ai-code-auto-test-type)
(defvar ai-code-auto-test-suffix)
(defvar ai-code-discussion-auto-follow-up-enabled)
(defvar ai-code-discussion-auto-follow-up-suffix)
(defvar ai-code-use-prompt-suffix)
(declare-function yas-load-directory "yasnippet" (dir))
(declare-function yas-minor-mode "yasnippet")
(declare-function ai-code-cli-send-command "ai-code-backends" (command))
(declare-function ai-code-cli-switch-to-buffer "ai-code-backends" ())
(declare-function gptel-request "gptel" (prompt &rest args))
(declare-function gptel-abort "gptel" (buffer))
(declare-function ai-code--git-repo-recent-modified-files "ai-code-git" (base-dir limit))
(declare-function ai-code--git-ignored-repo-file-p "ai-code-git" (file root))
(declare-function ai-code--hash-completion-target-file "ai-code-input" (&optional end-pos))
(declare-function ai-code--choose-symbol-from-file "ai-code-input" (file))
(declare-function ai-code-read-string "ai-code-input" (prompt &optional initial-input candidate-list))
(declare-function ai-code-current-backend-label "ai-code-backends" ())
(defcustom ai-code-prompt-preprocess-filepaths t
"When non-nil, preprocess the prompt to replace file paths.
If a word in the prompt is a file path within the current git repository,
it will be replaced with a relative path prefixed with '@'."
:type 'boolean
:group 'ai-code)
;;;###autoload
(defcustom ai-code-prompt-file-name ".ai.code.prompt.org"
"File name that will automatically enable `ai-code-prompt-mode` when opened.
This is the file name without path."
:type 'string
:group 'ai-code)
(defun ai-code--setup-snippets ()
"Setup YASnippet directories for `ai-code-prompt-mode`."
(condition-case _err
(when (require 'yasnippet nil t)
(let ((snippet-dir (expand-file-name "snippets"
(file-name-directory (file-truename (locate-library "ai-code"))))))
(when (file-directory-p snippet-dir)
(unless (boundp 'yas-snippet-dirs)
(setq yas-snippet-dirs nil))
(add-to-list 'yas-snippet-dirs snippet-dir t)
(ignore-errors (yas-load-directory snippet-dir)))))
(error nil))) ;; Suppress all errors
;;;###autoload
(defun ai-code-open-prompt-file ()
"Open AI prompt file under .ai.code.files/ directory.
If file doesn't exist, create it with sample prompt."
(interactive)
(let* ((files-dir (ai-code--ensure-files-directory))
(prompt-file (expand-file-name ai-code-prompt-file-name files-dir)))
(find-file-other-window prompt-file)
(unless (file-exists-p prompt-file)
;; Insert initial content for new file
(insert "# AI Prompt File\n")
(insert "# This file is for storing AI prompts and instructions\n")
(insert "# Use this file to save reusable prompts for your AI assistant\n\n")
(insert "* Sample prompt:\n\n")
(insert "Explain the architecture of this codebase\n")
(save-buffer))))
(defun ai-code--get-ai-code-prompt-file-path ()
"Get the path to the AI prompt file in the .ai.code.files/ directory."
(let ((files-dir (ai-code--get-files-directory)))
(expand-file-name ai-code-prompt-file-name files-dir)))
(defun ai-code--execute-command (command)
"Execute COMMAND directly without saving to prompt file."
(message "Executing command: %s" command)
(ignore-errors (ai-code-cli-send-command command))
(ai-code-cli-switch-to-buffer))
(defun ai-code--generate-prompt-headline (prompt-text)
"Generate and insert a headline for PROMPT-TEXT."
(insert "** ")
(if (and ai-code-use-gptel-headline (require 'gptel nil t))
(condition-case nil
(let ((headline (ai-code-call-gptel-sync (concat "Create a 5-10 word action-oriented headline for this AI prompt that captures the main task. Use keywords like: refactor, implement, fix, optimize, analyze, document, test, review, enhance, add, remove, improve, integrate, task. Example: 'Optimize database queries' or 'Implement error handling'.\n\nPrompt: " prompt-text))))
(insert headline " ")
(org-insert-time-stamp (current-time) t t))
(error (org-insert-time-stamp (current-time) t t)))
(org-insert-time-stamp (current-time) t t))
(insert "\n"))
(defun ai-code-call-gptel-sync (question)
"Get an answer from gptel synchronously for a given QUESTION.
This function blocks until a response is received or a timeout occurs.
Only works when gptel package is installed, otherwise shows error message."
(unless (featurep 'gptel)
(user-error "GPTel package is required for AI command generation. Please install gptel package"))
(let ((answer nil)
(done nil)
(error-info nil)
(start-time (float-time))
(temp-buffer (generate-new-buffer " *gptel-sync*")))
(unwind-protect
(progn
(gptel-request question
:buffer temp-buffer
:stream nil
:callback (lambda (response info)
(cond
((stringp response)
(setq answer response))
((eq response 'abort)
(setq error-info "Request aborted."))
(t
(setq error-info (or (plist-get info :status) "Unknown error"))))
(setq done t)))
;; Block until 'done' is true or timeout is reached
(while (not done)
(when quit-flag
(keyboard-quit))
(when (> (- (float-time) start-time) 30) ;; timeout after 30 seconds
;; Try to abort any running processes
(gptel-abort temp-buffer)
(setq done t
error-info (format "Request timed out after %d seconds" 30)))
;; Use sit-for to process events and allow interruption
(sit-for 0.1)))
;; Clean up temp buffer
(when (buffer-live-p temp-buffer)
(kill-buffer temp-buffer)))
(if error-info
(error "ai-code-call-gptel-sync failed: %s" error-info)
answer)))
(defun ai-code--format-and-insert-prompt (prompt-text)
"Insert PROMPT-TEXT into the current buffer without suffix."
(insert prompt-text)
(unless (bolp)
(insert "\n"))
prompt-text)
(defun ai-code--get-prompt-buffer (prompt-file)
"Get the buffer for PROMPT-FILE, without selecting it."
(find-file-noselect prompt-file))
(defun ai-code--insert-backend-label-drawer ()
"Insert an Org drawer recording the current AI backend label."
(let ((label (condition-case nil
(ai-code-current-backend-label)
(error "unknown"))))
(insert ":PROPERTIES:\n")
(insert (format ":AGENT: %s\n" label))
(insert ":END:\n")))
(defun ai-code--append-prompt-to-buffer (stored-prompt-text)
"Append formatted STORED-PROMPT-TEXT to the end of the current buffer.
This includes generating a headline and formatting the prompt text
that should be recorded in the prompt history file."
(goto-char (point-max))
(insert "\n\n")
(ai-code--generate-prompt-headline stored-prompt-text)
(ai-code--insert-backend-label-drawer)
(ai-code--format-and-insert-prompt stored-prompt-text))
(defun ai-code--send-prompt (full-prompt)
"Send FULL-PROMPT to AI."
(ai-code-cli-send-command full-prompt)
(ai-code-cli-switch-to-buffer))
(defun ai-code--write-prompt-to-file-and-send (prompt-text)
"Write PROMPT-TEXT to the AI prompt file."
(let* ((suffix-parts (delq nil (list ai-code-prompt-suffix
(when ai-code-auto-test-type
ai-code-auto-test-suffix)
(when ai-code-discussion-auto-follow-up-enabled
ai-code-discussion-auto-follow-up-suffix))))
(suffix (when (and ai-code-use-prompt-suffix suffix-parts)
(mapconcat #'identity suffix-parts "\n")))
;; Keep the recorded prompt aligned with the exact suffixes sent to AI.
(stored-prompt (if suffix
(concat prompt-text "\n" suffix)
prompt-text))
(full-prompt (concat (if suffix
(concat prompt-text "\n" suffix)
prompt-text) "\n"))
(prompt-file (ai-code--get-ai-code-prompt-file-path))
(original-default-directory default-directory))
(if prompt-file
(let ((buffer (ai-code--get-prompt-buffer prompt-file)))
(with-current-buffer buffer
(ai-code--append-prompt-to-buffer stored-prompt)
(save-buffer)
(message "Prompt added to %s" prompt-file))
(let ((default-directory original-default-directory))
(ai-code--send-prompt full-prompt)))
(ai-code--send-prompt full-prompt))))
(defun ai-code--process-word-for-filepath (word git-root-truename)
"Process a single WORD, converting it to relative path with @ prefix.
WORD is the text to process.
GIT-ROOT-TRUENAME is the true name of the git repository root.
If WORD is a file path, it's converted to a relative path."
(if (or (string= word ".") (string= word ".."))
word
(let* ((expanded-word (expand-file-name word))
(expanded-word-truename (file-truename expanded-word)))
(if (and (file-exists-p expanded-word)
(string-prefix-p git-root-truename expanded-word-truename))
(concat "@" (file-relative-name expanded-word-truename git-root-truename))
word))))
(defun ai-code--preprocess-prompt-text (prompt-text)
"Preprocess PROMPT-TEXT to replace file paths with relative paths.
The function checks each non-whitespace token in the prompt; if a token is a
file path within the current git repository it is replaced with a relative
path prefixed with @. Original whitespace is preserved.
NOTE: This does not handle file paths containing spaces."
(if-let* ((git-root-truename (ai-code--git-root)))
(replace-regexp-in-string
"[^ \t\n]+"
(lambda (word) (ai-code--process-word-for-filepath word git-root-truename))
prompt-text t t)
;; Not in a git repo, return original prompt
prompt-text))
(defun ai-code--file-in-git-repo-p (file git-root-truename)
"Return non-nil when FILE is a regular file under GIT-ROOT-TRUENAME."
(when (and file (file-exists-p file))
(let ((truename (file-truename file)))
(and (file-regular-p truename)
(string-prefix-p git-root-truename truename)))))
(defun ai-code--relative-filepath (file git-root-truename)
"Return FILE relative to GIT-ROOT-TRUENAME, prefixed with '@'."
(concat "@" (file-relative-name (file-truename file) git-root-truename)))
(defun ai-code--normalize-path (file)
"Return normalized absolute path for FILE.
If FILE exists, return its truename. Otherwise return expanded path."
(let ((full (expand-file-name file)))
(if (file-exists-p full)
(file-truename full)
full)))
(defun ai-code--candidate-path (file git-root-truename)
"Return completion candidate for FILE.
Return '@'-prefixed path relative to GIT-ROOT-TRUENAME when FILE is under
that root, otherwise return the absolute path."
(let ((full-truename (ai-code--normalize-path file)))
(if (string-prefix-p git-root-truename full-truename)
(ai-code--relative-filepath full-truename git-root-truename)
full-truename)))
(defun ai-code--current-frame-dired-paths (git-root-truename)
"Return dired directory candidates from current frame under GIT-ROOT-TRUENAME."
(let ((paths '()))
(dolist (win (window-list nil 'no-minibuffer))
(with-current-buffer (window-buffer win)
(when (derived-mode-p 'dired-mode)
(let ((dir (if (fboundp 'dired-current-directory)
(dired-current-directory)
default-directory)))
(when (and dir
(file-directory-p dir)
(string-prefix-p git-root-truename
(file-truename dir))
(not (ai-code--git-ignored-repo-file-p
dir
git-root-truename)))
(push (ai-code--relative-filepath dir
git-root-truename)
paths))))))
(nreverse (delete-dups paths))))
(defun ai-code--visible-window-files ()
"Return files from visible windows in current frame."
(let ((files '())
(selected (selected-window)))
(dolist (win (cons selected
(delq selected (window-list nil 'no-minibuffer))))
(let ((file (buffer-file-name (window-buffer win))))
(when file
(push file files))))
(nreverse (delete-dups files))))
(defun ai-code--recent-buffer-paths (git-root-truename)
"Return candidate paths for most recent 5 visited buffer files or directories."
(let ((files '())
(count 0))
(dolist (buf (buffer-list))
(when (< count 5)
(with-current-buffer buf
(if (derived-mode-p 'dired-mode)
(let ((dir (if (fboundp 'dired-current-directory)
(dired-current-directory)
default-directory)))
(when dir
(push dir files)
(setq count (1+ count))))
(let ((file (buffer-file-name buf)))
(when file
(push file files)
(setq count (1+ count))))))))
(mapcar (lambda (file)
(ai-code--candidate-path file git-root-truename))
(nreverse files))))
(defun ai-code--buffer-file-list (git-root-truename &optional skip-files)
"Return buffer file list under GIT-ROOT-TRUENAME, skipping SKIP-FILES."
(let ((files '()))
(dolist (buf (buffer-list))
(let ((file (buffer-file-name buf)))
(when (and (ai-code--file-in-git-repo-p file git-root-truename)
(not (ai-code--git-ignored-repo-file-p file git-root-truename))
(not (member (file-truename file) skip-files)))
(push file files))))
(nreverse files)))
(defun ai-code--repo-recent-files (git-root)
"Return top 1000 most recently modified files under GIT-ROOT."
(ai-code--git-repo-recent-modified-files git-root 1000))
(defun ai-code--dedupe-preserve-order (items)
"Return ITEMS with duplicates removed while preserving order."
(let ((seen (make-hash-table :test #'equal))
(result '()))
(dolist (item items)
(unless (gethash item seen)
(puthash item t seen)
(push item result)))
(nreverse result)))
(defun ai-code--prompt-filepath-candidates ()
"Return file path candidates for prompt completion."
(when-let ((git-root-truename (ai-code--git-root)))
(let* ((current-file (buffer-file-name (current-buffer)))
(current-frame-dired-paths
(ai-code--current-frame-dired-paths git-root-truename))
(visible-files (ai-code--visible-window-files))
(skip-files (mapcar #'ai-code--normalize-path visible-files))
(buffer-files (ai-code--buffer-file-list git-root-truename skip-files))
(recent-files (ai-code--repo-recent-files git-root-truename))
(ignore-prefix (concat "@" ai-code-files-dir-name "/"))
(visible-paths (mapcar (lambda (file)
(ai-code--candidate-path file git-root-truename))
visible-files))
(recent-buffer-paths
(ai-code--recent-buffer-paths git-root-truename))
(buffer-paths (mapcar (lambda (file)
(ai-code--candidate-path file git-root-truename))
buffer-files))
(recent-paths (mapcar (lambda (file)
(ai-code--candidate-path file git-root-truename))
recent-files))
(combined (append current-frame-dired-paths
visible-paths
recent-buffer-paths
buffer-paths
recent-paths))
(deduped (ai-code--dedupe-preserve-order combined))
(filtered '()))
(dolist (item deduped)
(unless (or (string-prefix-p ignore-prefix item)
(and current-file
(string= item (ai-code--relative-filepath current-file git-root-truename))))
(push item filtered)))
(nreverse filtered))))
(defun ai-code--prompt-filepath-capf ()
"Provide completion candidates for @file paths in prompt buffer."
(when (and (not (minibufferp)) (ai-code--git-root))
(let ((end (point))
(start (save-excursion
(skip-chars-backward "A-Za-z0-9_./-")
(when (eq (char-before) ?@)
(1- (point))))))
(when start
(let ((candidates (ai-code--prompt-filepath-candidates)))
(when candidates
(list start end candidates :exclusive 'no)))))))
(defun ai-code--prompt-auto-trigger-filepath-completion ()
"Auto trigger file path/symbol completion when '@' or '#' is inserted."
(when (not (minibufferp))
(pcase (char-before)
(?@
(let ((candidates (ai-code--prompt-filepath-candidates)))
(when candidates
(let ((choice (completing-read "File: " candidates nil nil)))
(when (and choice (not (string-empty-p choice)))
(delete-char -1) ; Remove the '@' we just typed
(insert choice))))))
(?#
(require 'ai-code-input nil t)
(when (and (fboundp 'ai-code--hash-completion-target-file)
(fboundp 'ai-code--choose-symbol-from-file))
(when-let* ((file (ai-code--hash-completion-target-file (1- (point))))
(symbol (ai-code--choose-symbol-from-file file)))
(when (not (string-empty-p symbol))
(delete-char -1) ; Remove the '#' we just typed
(insert (concat "#" symbol)))))))))
(defun ai-code--insert-prompt (prompt-text)
"Preprocess and insert PROMPT-TEXT into the AI prompt file.
If PROMPT-TEXT is a command (starts with /), execute it directly instead."
(let ((processed-prompt (if ai-code-prompt-preprocess-filepaths
(ai-code--preprocess-prompt-text prompt-text)
prompt-text)))
(if (and (string-prefix-p "/" processed-prompt)
(not (string-match-p " " processed-prompt)))
(ai-code--execute-command processed-prompt)
(ai-code--write-prompt-to-file-and-send processed-prompt))))
;; Define the AI Prompt Mode (derived from org-mode)
;;;###autoload
(define-derived-mode ai-code-prompt-mode org-mode "AI Prompt"
"Major mode derived from `org-mode` for editing AI prompt files.
Special commands:
\{ai-code-prompt-mode-map}"
;; Basic setup
(setq-local comment-start "# ")
(setq-local comment-end "")
(setq-local truncate-lines nil) ; Disable line truncation, allowing lines to wrap
(define-key ai-code-prompt-mode-map (kbd "C-c C-c") #'ai-code-prompt-send-block)
(add-hook 'completion-at-point-functions #'ai-code--prompt-filepath-capf nil t)
(add-hook 'post-self-insert-hook #'ai-code--prompt-auto-trigger-filepath-completion nil t)
;; YASnippet support
(when (require 'yasnippet nil t)
(yas-minor-mode 1)
(ai-code--setup-snippets)))
;;;###autoload
(defun ai-code-prompt-send-block ()
"Send the current text block (paragraph) to the AI service.
The block is the text separated by blank lines.
It trims leading/trailing whitespace."
(interactive)
;; DONE: use save-excursion, mark-paragraph to get the block-text
(let* ((block-text (save-excursion
(save-mark-and-excursion
(ai-code--mark-prompt-block)
(buffer-substring-no-properties (region-beginning)
(region-end)))))
(trimmed-text (when block-text (string-trim block-text))))
(if (and trimmed-text (string-match-p "\\S-" trimmed-text))
(if (and buffer-file-name
(string= (file-name-nondirectory buffer-file-name)
ai-code-prompt-file-name))
(ai-code--send-prompt trimmed-text)
(when-let ((edited-prompt
(ai-code-read-string "Confirm and edit prompt before sending: "
trimmed-text)))
(ai-code--insert-prompt edited-prompt)))
(message "No text in the current block to send."))))
(defun ai-code--mark-prompt-block ()
"Mark the current prompt block.
A prompt block is multiple non-empty lines surrounded by empty lines."
(interactive)
(let ((start (point))
(end (point)))
(save-excursion
(while (and (not (bobp)) (not (looking-at-p "^$")))
(forward-line -1))
(unless (bobp)
(forward-line 1))
(setq start (point)))
(save-excursion
(while (and (not (eobp)) (not (looking-at-p "^$")))
(forward-line 1))
(setq end (point)))
(goto-char start)
(set-mark (point))
(goto-char end)
(message "Code block marked from line %d to line %d"
(line-number-at-pos start)
(line-number-at-pos end))))
;;;###autoload
(defconst ai-code-files-dir-name ".ai.code.files"
"Directory name for storing AI task files.")
;;;###autoload
(defcustom ai-code-task-use-gptel-filename nil
"Whether to use GPTel to generate filename for task files.
If non-nil, call `ai-code-call-gptel-sync` to generate a smart filename
based on the task name. Otherwise, use cleaned-up task name directly."
:type 'boolean
:group 'ai-code)
(defvar ai-code-task-search-directory-history nil
"Minibuffer history for task content search directories.")
(defun ai-code--get-files-directory ()
"Get the task directory path.
If in a git repository, return `.ai.code.files/` under git root.
Otherwise, return the current `default-directory`."
(let ((git-root (ai-code--git-root)))
(if git-root
(expand-file-name ai-code-files-dir-name git-root)
default-directory)))
(defun ai-code--ensure-files-directory ()
"Ensure the task directory exists and return its path."
(let ((ai-code-files-dir (ai-code--get-files-directory)))
(unless (file-directory-p ai-code-files-dir)
(make-directory ai-code-files-dir t))
ai-code-files-dir))
(defun ai-code--extract-radar-id (text)
"Return radar ID from TEXT, or nil when TEXT has no radar URL."
(when (string-match "rdar://\\([0-9]+\\)" (or text ""))
(match-string 1 text)))
(defun ai-code--normalize-radar-text (text)
"Replace radar URLs in TEXT with the filename-safe radar form."
(replace-regexp-in-string "rdar://\\([0-9]+\\)" "rdar_\\1" (or text "")))
(defun ai-code--generate-task-filename (task-name)
"Generate a task filename from TASK-NAME.
If `ai-code-task-use-gptel-filename` is non-nil, use GPTel to generate
a smart filename. Otherwise, use cleaned-up task name directly.
If TASK-NAME contains `rdar://ID`, use `rdar_ID_` as prefix.
Otherwise, use `task_YYYYMMDD_` as prefix.
Returns a filename with .org suffix."
(let* ((radar-id (ai-code--extract-radar-id task-name))
(normalized-task-name (ai-code--normalize-radar-text task-name))
(prefix (if radar-id
(format "rdar_%s_" radar-id)
(format "task_%s_" (format-time-string "%Y%m%d"))))
(generated-name
(if ai-code-task-use-gptel-filename
;; Use GPTel to generate filename
(condition-case nil
(ai-code-call-gptel-sync
(format "Generate a short English filename (max 60 chars, lowercase, use underscores for spaces, no extension) for this task: %s" task-name))
(error (replace-regexp-in-string "[^a-z0-9_]" "_" (downcase normalized-task-name))))
;; Use task name directly (cleaned up)
(replace-regexp-in-string "[^a-z0-9_]" "_" (downcase normalized-task-name)))))
;; Clean up the generated name
(setq generated-name (replace-regexp-in-string "[^a-z0-9_]" "_" (downcase generated-name)))
(setq generated-name (replace-regexp-in-string "_+" "_" generated-name))
(setq generated-name (replace-regexp-in-string "^_\\|_$" "" generated-name))
;; Ensure reasonable length
(when (> (length generated-name) 60)
(setq generated-name (substring generated-name 0 60)))
(concat prefix generated-name ".org")))
(defun ai-code--initialize-task-file-content (task-name task-url)
"Insert initial task content using TASK-NAME and TASK-URL."
(insert (format "#+TITLE: %s\n" task-name))
(insert (format "#+DATE: %s\n" (format-time-string "%Y-%m-%d")))
(unless (string-empty-p task-url)
(insert (format "#+URL: %s\n" task-url)))
(let ((branch (magit-get-current-branch)))
(when branch
(insert (format "#+BRANCH: %s\n" branch))))
(let ((label (ai-code-current-backend-label)))
(insert (format "#+AGENT: %s\n" label))
(insert "#+SESSION_ID: <Usually you can get the session id with /status or /stat in AI coding window>\n"))
(insert "\n* Task Description\n\n")
(insert task-name)
(insert "\n\n* Investigation\n\n")
(insert "# Enter your prompts here. After that,\n# Select them and use C-c a SPC (ai-code-send-command) to send to AI\n")
(insert "# Or You use C-c C-c (ai-code-prompt-send-block) to send the whole prompt block to AI\n\n")
(insert "# Use C-c a n (ai-code-take-notes) to copy notes back from AI session\n\n")
(insert "\n\n* Code Change\n\n"))
(defun ai-code--open-or-create-task-file (task-file confirmed-filename task-name task-url)
"Open TASK-FILE and initialize it when needed.
CONFIRMED-FILENAME determines if .org should be appended.
TASK-NAME and TASK-URL are used to initialize new files."
(unless (string-suffix-p ".org" confirmed-filename)
(setq task-file (concat task-file ".org")))
(find-file-other-window task-file)
(unless (file-exists-p task-file)
(ai-code--initialize-task-file-content task-name task-url)
(save-buffer))
(message "Opened task file: %s" task-file))
(defun ai-code--select-task-target-directory (ai-code-files-dir current-dir)
"Prompt user to select target directory.
AI-CODE-FILES-DIR is the path to the .ai.code.files directory.
CURRENT-DIR is the current default directory.
Returns the selected directory path."
(let ((target-dir (completing-read
"Create task file in: "
(list (format "ai-code-files-dir: %s" ai-code-files-dir)
(format "current directory: %s" current-dir))
nil t nil nil
(format "ai-code-files-dir: %s" ai-code-files-dir))))
(if (string-prefix-p "ai-code-files-dir:" target-dir)
ai-code-files-dir
current-dir)))
(defun ai-code--task-file-candidates (ai-code-files-dir)
"Return task file completion candidates under AI-CODE-FILES-DIR."
(let ((task-files
(when (file-directory-p ai-code-files-dir)
(sort
(directory-files-recursively ai-code-files-dir "\\.org\\'")
#'ai-code--task-file-more-recent-p))))
(ai-code--task-file-candidates-with-scratch
(delq
nil
(mapcar
(lambda (file)
(ai-code--task-file-candidate-name file ai-code-files-dir))
task-files)))))
(defun ai-code--task-file-candidate-name (file ai-code-files-dir)
"Return the candidate name for FILE under AI-CODE-FILES-DIR."
(let ((relative-file (file-relative-name file ai-code-files-dir)))
(unless (string= relative-file ai-code-prompt-file-name)
relative-file)))
(defun ai-code--task-file-more-recent-p (file-a file-b)
"Return non-nil when FILE-A is newer than FILE-B."
(time-less-p
(file-attribute-modification-time (file-attributes file-b))
(file-attribute-modification-time (file-attributes file-a))))
(defun ai-code--task-file-candidates-with-scratch (candidates)
"Return CANDIDATES with a missing scratch.org inserted in fifth position."
(if (member "scratch.org" candidates)
candidates
(let ((prefix nil)
(rest candidates)
(index 0))
(while (and rest (< index 4))
(push (car rest) prefix)
(setq rest (cdr rest))
(setq index (1+ index)))
(append (nreverse prefix) '("scratch.org") rest))))
(defun ai-code--read-task-name (task-file-candidates)
"Read a task name with completion from TASK-FILE-CANDIDATES."
(completing-read
"Task name (empty to open task directory): "
task-file-candidates
nil nil))
(defun ai-code--existing-task-file-path (task-name task-file-candidates ai-code-files-dir)
"Return the full path for TASK-NAME when it is in TASK-FILE-CANDIDATES."
(when (member task-name task-file-candidates)
(expand-file-name task-name ai-code-files-dir)))
(defun ai-code--read-task-search-directory (ai-code-files-dir)
"Read a target directory for searching task content.
Default to AI-CODE-FILES-DIR and keep a dedicated directory history."
(let* ((input
(read-string "Directory to search org files: "
ai-code-files-dir
'ai-code-task-search-directory-history
ai-code-files-dir))
(target-dir (if (string-empty-p input)
ai-code-files-dir
(expand-file-name input ai-code-files-dir))))
(unless (file-directory-p target-dir)
(user-error "Search directory does not exist: %s" target-dir))
target-dir))
(defun ai-code--build-task-search-prompt (target-dir search-description)
"Build a prompt for searching org files in TARGET-DIR.
SEARCH-DESCRIPTION describes what content the AI should search for."
(format
(concat
"Search the content of all .org files recursively under directory: %s\n"
"Search target description: %s\n"
"Focus on matching content inside the files, not just file names.\n"
"Return the relevant file paths, matched excerpts, and a concise summary.")
target-dir
search-description))
(defun ai-code--search-task-files-with-ai (ai-code-files-dir)
"Prompt for task file search inputs and send a search request to AI."
(let* ((target-dir (ai-code--read-task-search-directory ai-code-files-dir))
(search-description (ai-code-read-string "Search description for .org files: "))
(default-prompt (ai-code--build-task-search-prompt target-dir search-description))
(confirmed-prompt (ai-code-read-string "Confirm search prompt: " default-prompt)))
(ai-code--execute-command confirmed-prompt)))
;;;###autoload
(defun ai-code-create-or-open-task-file (&optional arg)
"Create or open an AI task file.
Prompts for a task name. If empty, opens the task directory.
If non-empty, optionally prompts for a URL, generates a filename
using GPTel, and creates the task file.
With prefix ARG, prompt AI to search org file content under a target directory."
(interactive "P")
(let ((ai-code-files-dir (ai-code--ensure-files-directory)))
(if arg
(ai-code--search-task-files-with-ai ai-code-files-dir)
(let* ((task-file-candidates (ai-code--task-file-candidates ai-code-files-dir))
(task-name (ai-code--read-task-name task-file-candidates))
(existing-task-file (ai-code--existing-task-file-path task-name task-file-candidates ai-code-files-dir)))
(cond
((string-empty-p task-name)
(dired-other-window ai-code-files-dir)
(message "Opened task directory: %s" ai-code-files-dir))
(existing-task-file
(ai-code--open-or-create-task-file existing-task-file task-name task-name ""))
(t
(let* ((task-url (read-string "URL (optional, press Enter to skip): "))
(generated-filename (ai-code--generate-task-filename task-name))
(confirmed-filename (read-string "Confirm task filename (end with / to create subdirectory): " generated-filename))
(current-dir (expand-file-name default-directory))
(selected-dir (ai-code--select-task-target-directory ai-code-files-dir current-dir))
(create-dir-only-p (string-suffix-p "/" confirmed-filename))
(task-file (expand-file-name confirmed-filename selected-dir)))
(if create-dir-only-p
(let ((subdir (expand-file-name (directory-file-name confirmed-filename) selected-dir)))
(unless (file-directory-p subdir)
(make-directory subdir t))
(dired-other-window subdir)
(message "Opened directory: %s" subdir))
(ai-code--open-or-create-task-file task-file confirmed-filename task-name task-url)))))))))
;;;###autoload
(add-to-list 'auto-mode-alist
'("/\\.ai\\.code\\.files/.*\\.org\\'" . ai-code-prompt-mode))
(provide 'ai-code-prompt-mode)
;;; ai-code-prompt-mode.el ends here