-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathai-code-kiro-cli.el
More file actions
128 lines (109 loc) · 3.99 KB
/
ai-code-kiro-cli.el
File metadata and controls
128 lines (109 loc) · 3.99 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
;;; ai-code-kiro-cli.el --- Thin wrapper for Kiro CLI -*- lexical-binding: t; -*-
;; Author: Jason Jenkins
;; SPDX-License-Identifier: Apache-2.0
;;; Commentary:
;;
;; Thin wrapper that reuses `ai-code-backends-infra' to run Kiro CLI.
;;
;;; Code:
(require 'ai-code-backends)
(require 'ai-code-backends-infra)
(defgroup ai-code-kiro-cli nil
"Kiro CLI integration via `ai-code-backends-infra'."
:group 'tools
:prefix "ai-code-kiro-cli-")
(defcustom ai-code-kiro-cli-program "kiro-cli"
"Path to the Kiro CLI executable."
:type 'string
:group 'ai-code-kiro-cli)
(defcustom ai-code-kiro-cli-program-switches nil
"Command line switches to pass to Kiro CLI on startup."
:type '(repeat string)
:group 'ai-code-kiro-cli)
(defcustom ai-code-kiro-cli-trust-all-tools nil
"When non-nil, pass --trust-all-tools to allow commands without confirmation."
:type 'boolean
:group 'ai-code-kiro-cli)
(defcustom ai-code-kiro-cli-agent nil
"Agent/context profile to use. When nil, uses default agent."
:type '(choice (const :tag "Default" nil)
(string :tag "Agent name"))
:group 'ai-code-kiro-cli)
(defconst ai-code-kiro-cli--session-prefix "kiro"
"Session prefix used in Kiro CLI buffer names.")
(defvar ai-code-kiro-cli--processes (make-hash-table :test 'equal)
"Hash table mapping Kiro session keys to processes.")
(defun ai-code-kiro-cli--build-args ()
"Build the Kiro CLI argument list."
(let ((args (list "chat")))
(when ai-code-kiro-cli-trust-all-tools
(setq args (append args '("--trust-all-tools"))))
(when ai-code-kiro-cli-agent
(setq args (append args (list "--agent" ai-code-kiro-cli-agent))))
(when ai-code-kiro-cli-program-switches
(setq args (append args ai-code-kiro-cli-program-switches)))
args))
(defun ai-code-kiro-cli--build-command ()
"Build the Kiro CLI command string."
(mapconcat 'identity
(cons ai-code-kiro-cli-program (ai-code-kiro-cli--build-args))
" "))
;;;###autoload
(defun ai-code-kiro-cli (&optional arg)
"Start Kiro CLI chat session.
With prefix ARG, prompt for CLI args using the current defaults
(chat, agent, trust flags, and `ai-code-kiro-cli-program-switches')."
(interactive "P")
(let* ((working-dir (ai-code-backends-infra--session-working-directory))
(resolved (ai-code-backends-infra--resolve-start-command
ai-code-kiro-cli-program
(ai-code-kiro-cli--build-args)
arg
"Kiro"))
(command (plist-get resolved :command)))
(ai-code-backends-infra--toggle-or-create-session
working-dir
nil
ai-code-kiro-cli--processes
command
#'ai-code-kiro-cli-send-escape
nil
nil
ai-code-kiro-cli--session-prefix
nil)))
;;;###autoload
(defun ai-code-kiro-cli-switch-to-buffer (&optional force-prompt)
"Switch to the Kiro CLI buffer.
When FORCE-PROMPT is non-nil, prompt to select a session."
(interactive "P")
(let ((working-dir (ai-code-backends-infra--session-working-directory)))
(ai-code-backends-infra--switch-to-session-buffer
nil
"No Kiro session for this project"
ai-code-kiro-cli--session-prefix
working-dir
force-prompt)))
;;;###autoload
(defun ai-code-kiro-cli-send-command (line)
"Send LINE to Kiro CLI."
(interactive "sKiro> ")
(let ((working-dir (ai-code-backends-infra--session-working-directory)))
(ai-code-backends-infra--send-line-to-session
nil
"No Kiro session for this project"
line
ai-code-kiro-cli--session-prefix
working-dir)))
;;;###autoload
(defun ai-code-kiro-cli-send-escape ()
"Send escape key to Kiro CLI."
(interactive)
(ai-code-backends-infra--terminal-send-escape))
;;;###autoload
(defun ai-code-kiro-cli-resume (&optional arg)
"Resume a previous Kiro CLI session."
(interactive "P")
(let ((ai-code-kiro-cli-program-switches (append ai-code-kiro-cli-program-switches '("--resume"))))
(ai-code-kiro-cli arg)))
(provide 'ai-code-kiro-cli)
;;; ai-code-kiro-cli.el ends here