UNPKG

gaunt-sloth-assistant

Version:

> ⚠️ **`gaunt-sloth-assistant` has been renamed to [`gaunt-sloth`](https://www.npmjs.com/package/gaunt-sloth).** > The `1.5.x` series is the final release under the old name — active development continues under > the new package. To switch: > > ```bash >

106 lines 6.4 kB
import { Option } from 'commander'; import { displayError } from '@gaunt-sloth/core/utils/consoleUtils.js'; import { setExitCode } from '@gaunt-sloth/core/utils/systemUtils.js'; import { getCommandProviderInput, getEffectiveContentProvider, getEffectiveRequirementsProvider, getReviewSystemPrompt, } from '#src/commands/commandIntrospection.js'; import { REQUIREMENTS_PROVIDERS } from './commandUtils.js'; import jiraLogWork from '#src/helpers/jira/jiraLogWork.js'; import { wrapContent } from '@gaunt-sloth/core/utils/llmUtils.js'; import { runPrDiscovery } from '#src/commands/prDiscovery.js'; import { readMultipleFilesFromProjectDir } from '@gaunt-sloth/review/utils/fileUtils.js'; export function prCommand(program, commandLineConfigOverrides) { program .command('pr') .description('Review provided Pull Request in current directory. ' + 'This command is similar to `review`, but default content provider is `github`. ' + '(assuming that GitHub CLI is installed and authenticated for current project') .argument('[prId]', "Pull request ID to review. Omit both prId and requirementsId to discover the change requirements from the current branch's PR.") .argument('[requirementsId]', 'Optional requirements ID argument to retrieve requirements with requirements provider') .addOption(new Option('-p, --requirements-provider <requirementsProvider>', 'Requirements provider for this review.').choices(Object.keys(REQUIREMENTS_PROVIDERS))) .option('-f, --file [files...]', 'Input files. Content of these files will be added BEFORE the diff, but after requirements') .option('-m, --message <message>', 'Extra message to provide just before the content') .action(async (prId, requirementsId, options) => { const { initConfig } = await import('@gaunt-sloth/core/config.js'); const config = await initConfig(commandLineConfigOverrides); // Initialize and get config const content = []; const requirementsProvider = getEffectiveRequirementsProvider('pr', config, options.requirementsProvider); const contentProvider = getEffectiveContentProvider('pr', config); if (options.file) { content.push(readMultipleFilesFromProjectDir(options.file)); } const isDiscovery = !prId && !requirementsId; const looksLikeRequirementsOnlyMode = contentProvider === 'github' && Boolean(prId) && !requirementsId && !/^\d+$/.test(prId); if (looksLikeRequirementsOnlyMode) { displayError(`Unsupported PR command arguments: "${prId}" was provided as the pull request ID. ` + '`gth pr <requirementsId>` requirements-only mode is not supported. ' + 'Use `gth pr` with no arguments to discover change requirements automatically, or provide both a numeric PR ID and requirements ID: `gth pr <prId> <requirementsId>`.'); setExitCode(1); return; } if (isDiscovery) { if (config.commands?.pr?.discovery?.enabled === false) { displayError('Change requirements discovery is disabled. Provide a pull request ID to run `gth pr`.'); setExitCode(1); return; } try { const discoveryResult = await runPrDiscovery(config); if (discoveryResult.requirements) { content.push(wrapContent(discoveryResult.requirements, 'discovered-requirements', 'requirements')); } if (!discoveryResult.diff) { displayError('Change requirements discovery did not produce a diff. Cannot continue with review.'); setExitCode(1); return; } content.push(wrapContent(discoveryResult.diff, 'discovered-diff', 'GitHub diff')); } catch (error) { displayError(error instanceof Error ? error.message : String(error)); setExitCode(1); return; } } else { // Handle requirements const requirements = await getCommandProviderInput('pr', 'requirements', requirementsId, config, requirementsProvider); if (requirements) { content.push(requirements); } // Get PR diff using the provider try { const prContent = await getCommandProviderInput('pr', 'content', prId, config, contentProvider); // A provider may resolve to an empty result instead of throwing - e.g. ghPrDiffSource // returns null (with a warning) for an invalid PR number. Without this guard the review // would silently proceed against no diff; fail loudly as the throwing path used to. if (!prContent) { displayError(`Could not retrieve PR content for "${prId}". Cannot continue with review.`); setExitCode(1); return; } content.push(prContent); } catch (error) { displayError(error instanceof Error ? error.message : String(error)); setExitCode(1); return; } } if (options.message) { content.push(wrapContent(options.message, 'message', 'user message')); } const { review } = await import('@gaunt-sloth/review/modules/reviewModule.js'); const { createResolvers } = await import('@gaunt-sloth/api/resolvers.js'); // TODO consider including requirements id // TODO sanitize prId await review(prId ? `PR-${prId}` : 'PR-discovery', getReviewSystemPrompt(config), content.join('\n'), config, 'pr', createResolvers()); if (requirementsId && (config.commands?.pr?.requirementsProvider ?? config.requirementsProvider) === 'jira' && config.commands?.pr?.logWorkForReviewInSeconds) { // TODO we need to figure out some sort of post-processors let jiraConfig = config.builtInToolsConfig?.jira || config.requirementsProviderConfig?.jira; await jiraLogWork(jiraConfig, requirementsId, config.commands?.pr?.logWorkForReviewInSeconds, 'code review'); } }); } //# sourceMappingURL=prCommand.js.map