-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall-Menu.template.reg
More file actions
56 lines (41 loc) · 3.19 KB
/
Copy pathInstall-Menu.template.reg
File metadata and controls
56 lines (41 loc) · 3.19 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
Windows Registry Editor Version 5.00
; --- Root menu ---
[HKEY_CLASSES_ROOT\Directory\shell\OpenCodingAgent]
"MUIVerb"="LLM Coding Agent"
"Icon"="{app}\\icon.ico,0"
"SubCommands"="CodingAgent.AllTabs;CodingAgent.AllPanes;CodingAgent.Claude;CodingAgent.Gemini;CodingAgent.Codex;CodingAgent.Qwen;CodingAgent.Qwen35"
; --- Command 1: All LLMs in Tabs ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.AllTabs]
@="All LLMs (Tabs)"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.AllTabs\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"all\" -Layout \"tabs\""
; --- Command: All LLMs in Tabs ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.AllPanes]
@="All LLMs (Panes)"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.AllPanes\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"all\" -Layout \"panes\""
; --- Command 2: Claude Code ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Claude]
@="Claude Code"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Claude\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"claude\""
; --- Command 3: Gemini ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Gemini]
@="Gemini"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Gemini\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"gemini\""
; --- Command 4: Codex ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Codex]
@="Codex"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Codex\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"codex\""
; --- Command 5: Qwen3-Coder ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Qwen]
@="Qwen3-Coder"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Qwen\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"qwen3-coder\""
; --- Command 6: Qwen 3.5 ---
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Qwen35]
@="Qwen 3.5"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\CodingAgent.Qwen35\command]
@="pwsh.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File \"{app}\\Launch-CodingLLM_CLI.ps1\" -TargetDirectory \"%1\" -LLM \"qwen3.5\""