Files
gemini-cli/packages/cli/src/ui/commands/corgiCommand.ts

16 lines
311 B
TypeScript
Raw Normal View History

2025-07-17 19:40:36 -04:00
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { type SlashCommand } from './types.js';
export const corgiCommand: SlashCommand = {
name: 'corgi',
description: 'Toggles corgi mode.',
action: (context, _args) => {
context.ui.toggleCorgiMode();
},
};