1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6/** 7 * Built-in slash commands used in the UI of Agents app. 8 */ 9export const builtinSlashCommands = { 10 commit: '/commit', 11 sync: '/sync', 12 merge: '/merge', 13 createPr: '/create-pr', 14 createDraftPr: '/create-draft-pr', 15 updatePr: '/update-pr', 16}; 17 18