buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
21 lines • 556 B
JavaScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { CommandKind } from './types.js';
import { MessageType } from '../types.js';
export const helpCommand = {
name: 'help',
altNames: ['?'],
kind: CommandKind.BUILT_IN,
description: 'for help on Qwen Code',
action: async (context) => {
const helpItem = {
type: MessageType.HELP,
timestamp: new Date(),
};
context.ui.addItem(helpItem, Date.now());
},
};
//# sourceMappingURL=helpCommand.js.map