-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathai-code-github-copilot-cli.el
More file actions
126 lines (108 loc) · 5.12 KB
/
ai-code-github-copilot-cli.el
File metadata and controls
126 lines (108 loc) · 5.12 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
;;; ai-code-github-copilot-cli.el --- Thin wrapper for GitHub Copilot CLI -*- lexical-binding: t; -*-
;; Author: Kang Tu <tninja@gmail.com>
;; SPDX-License-Identifier: Apache-2.0
;;; Commentary:
;;
;; Thin wrapper that reuses `ai-code-backends-infra' to run GitHub Copilot CLI.
;; Provides interactive commands and aliases for the AI Code suite.
;;
;;; Code:
(require 'ai-code-backends)
(require 'ai-code-backends-infra)
(require 'ai-code-mcp-agent)
(defgroup ai-code-github-copilot-cli nil
"GitHub Copilot CLI integration via `ai-code-backends-infra'."
:group 'tools
:prefix "ai-code-github-copilot-cli-")
(defcustom ai-code-github-copilot-cli-program "copilot"
"Path to the GitHub Copilot CLI executable."
:type 'string
:group 'ai-code-github-copilot-cli)
(defcustom ai-code-github-copilot-cli-program-switches nil
"Command line switches to pass to GitHub Copilot CLI on startup."
:type '(repeat string)
:group 'ai-code-github-copilot-cli)
(defcustom ai-code-github-copilot-cli-extra-env-vars '("TERM_PROGRAM=vscode")
"Extra environment variables passed to the GitHub Copilot CLI terminal session.
By default, `TERM_PROGRAM=vscode' is set so that Copilot CLI recognizes the
terminal as VS Code-compatible and enables multiline input support via
`/terminal-setup' (Shift+Enter and Ctrl+Enter)."
:type '(repeat string)
:group 'ai-code-github-copilot-cli)
(defcustom ai-code-github-copilot-cli-multiline-input-sequence "\r\n"
"Terminal sequence used for multiline input in GitHub Copilot CLI sessions.
This mirrors the VS Code `workbench.action.terminal.sendSequence' binding
that `/terminal-setup' installs for Shift+Enter and Ctrl+Enter."
:type 'string
:group 'ai-code-github-copilot-cli)
(defvar ghostel-full-redraw)
(defconst ai-code-github-copilot-cli--session-prefix "copilot"
"Session prefix used in GitHub Copilot CLI buffer names.")
(defvar ai-code-github-copilot-cli--processes (make-hash-table :test 'equal)
"Hash table mapping Copilot session keys to processes.")
;;;###autoload
(defun ai-code-github-copilot-cli (&optional arg)
"Start GitHub Copilot CLI using `ai-code-backends-infra' logic.
With prefix ARG, prompt for CLI args using
`ai-code-github-copilot-cli-program-switches' as the default input."
(interactive "P")
(ai-code-backends-infra--start-cli-session
(list :program ai-code-github-copilot-cli-program
:switches ai-code-github-copilot-cli-program-switches
:label "Copilot"
:process-table ai-code-github-copilot-cli--processes
:session-prefix ai-code-github-copilot-cli--session-prefix
:escape-function #'ai-code-github-copilot-cli-send-escape
:env-vars ai-code-github-copilot-cli-extra-env-vars
:multiline-input-sequence
ai-code-github-copilot-cli-multiline-input-sequence
:prepare-launch
(lambda (working-dir command)
(let* ((mcp-launch
(ai-code-mcp-agent-prepare-launch 'github-copilot-cli
working-dir
command))
(mcp-post-start-fn (plist-get mcp-launch :post-start-fn)))
(list
:command (plist-get mcp-launch :command)
:cleanup-fn (plist-get mcp-launch :cleanup-fn)
:post-start-fn
;; Copilot redraws via alternate-screen sequences, so keep the
;; scrollback injection hook before attaching MCP session metadata.
(lambda (buffer process instance-name)
(with-current-buffer buffer
(setq ai-code-backends-infra--sync-redraw-scrollback t)
(when (eq ai-code-backends-infra-terminal-backend 'ghostel)
(setq-local ghostel-full-redraw t)))
(when mcp-post-start-fn
(funcall mcp-post-start-fn buffer process instance-name)))))))
arg))
;;;###autoload
(defun ai-code-github-copilot-cli-switch-to-buffer (&optional force-prompt)
"Switch to the GitHub Copilot CLI buffer.
When FORCE-PROMPT is non-nil, prompt to select a session."
(interactive "P")
(ai-code-backends-infra--cli-switch-to-buffer
"Copilot" ai-code-github-copilot-cli--session-prefix force-prompt))
;;;###autoload
(defun ai-code-github-copilot-cli-send-command (line)
"Send LINE to GitHub Copilot CLI."
(interactive "sCopilot> ")
(ai-code-backends-infra--cli-send-command
"Copilot" ai-code-github-copilot-cli--session-prefix line))
;;;###autoload
(defun ai-code-github-copilot-cli-send-escape ()
"Send escape key to GitHub Copilot CLI."
(interactive)
(ai-code-backends-infra--terminal-send-escape))
;;;###autoload
(defun ai-code-github-copilot-cli-resume (&optional arg)
"Resume a previous GitHub Copilot CLI session.
Argument ARG is passed to the start command."
(interactive "P")
(let ((ai-code-github-copilot-cli-program-switches (append ai-code-github-copilot-cli-program-switches '("--resume"))))
(ai-code-github-copilot-cli arg)
(ai-code-backends-infra--cli-show-resume-picker
ai-code-github-copilot-cli--session-prefix)))
(provide 'ai-code-github-copilot-cli)
;;; ai-code-github-copilot-cli.el ends here