buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
31 lines • 1.07 kB
JavaScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import open from 'open';
import process from 'node:process';
import { CommandKind, } from './types.js';
import { MessageType } from '../types.js';
export const docsCommand = {
name: 'docs',
description: 'open full Harald Code documentation in your browser',
kind: CommandKind.BUILT_IN,
action: async (context) => {
const docsUrl = 'https://github.com/haraldroine/harald-code';
if (process.env.SANDBOX && process.env.SANDBOX !== 'sandbox-exec') {
context.ui.addItem({
type: MessageType.INFO,
text: `Please open the following URL in your browser to view the documentation:\n${docsUrl}`,
}, Date.now());
}
else {
context.ui.addItem({
type: MessageType.INFO,
text: `Opening documentation in your browser: ${docsUrl}`,
}, Date.now());
await open(docsUrl);
}
},
};
//# sourceMappingURL=docsCommand.js.map