37 lines
847 B
TypeScript
37 lines
847 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { formatDuration } from '../utils/formatters.js';
|
|
import { CommandKind, type SlashCommand } from './types.js';
|
|
|
|
export const quitCommand: SlashCommand = {
|
|
name: 'quit',
|
|
altNames: ['exit'],
|
|
description: 'exit the cli',
|
|
kind: CommandKind.BUILT_IN,
|
|
action: (context) => {
|
|
const now = Date.now();
|
|
const { sessionStartTime } = context.session.stats;
|
|
const wallDuration = now - sessionStartTime.getTime();
|
|
|
|
return {
|
|
type: 'quit',
|
|
messages: [
|
|
{
|
|
type: 'user',
|
|
text: `/quit`, // Keep it consistent, even if /exit was used
|
|
id: now - 1,
|
|
},
|
|
{
|
|
type: 'quit',
|
|
duration: formatDuration(wallDuration),
|
|
id: now,
|
|
},
|
|
],
|
|
};
|
|
},
|
|
};
|