-
Notifications
You must be signed in to change notification settings - Fork 66.9k
Expand file tree
/
Copy pathall-tools.ts
More file actions
34 lines (33 loc) · 847 Bytes
/
all-tools.ts
File metadata and controls
34 lines (33 loc) · 847 Bytes
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
/**
* Interface defining the mapping between tool identifiers and their display names
*/
export interface ToolsMapping {
[key: string]: string
}
/**
* All the tools available for the Tool Picker
*/
export const allTools: ToolsMapping = {
agents: 'Agents',
api: 'API',
azure_data_studio: 'Azure Data Studio',
bash: 'Bash',
cli: 'GitHub CLI',
codespaces: 'Codespaces',
curl: 'curl',
desktop: 'Desktop',
eclipse: 'Eclipse',
importer_cli: 'GitHub Enterprise Importer CLI',
javascript: 'JavaScript',
jetbrains: 'JetBrains IDEs',
jetbrains_beta: 'JetBrains IDEs (Beta)',
mobile: 'Mobile',
skillsets: 'Skillsets',
vimneovim: 'Vim/Neovim',
powershell: 'PowerShell',
visualstudio: 'Visual Studio',
vscode: 'Visual Studio Code',
webui: 'Web browser',
windowsterminal: 'Windows Terminal',
xcode: 'Xcode',
}