mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 20:23:36 +00:00
This commit introduces the CodeRabbit service and its associated routes, enabling users to trigger, manage, and check the status of code reviews through a new API. Key features include: - New routes for triggering code reviews, checking status, and stopping reviews. - Integration with the CodeRabbit CLI for authentication and status checks. - UI components for displaying code review results and settings management. - Unit tests for the new code review functionality to ensure reliability. This enhancement aims to streamline the code review process and leverage AI capabilities for improved code quality.
19 lines
861 B
TypeScript
19 lines
861 B
TypeScript
export { useAutoMode } from './use-auto-mode';
|
|
export { useBoardBackgroundSettings } from './use-board-background-settings';
|
|
export {
|
|
useCodeReview,
|
|
type TriggerReviewOptions,
|
|
type ReviewProgress,
|
|
type ReviewProviderStatus,
|
|
type UseCodeReviewResult,
|
|
} from './use-code-review';
|
|
export { useElectronAgent } from './use-electron-agent';
|
|
export { useGuidedPrompts } from './use-guided-prompts';
|
|
export { useKeyboardShortcuts } from './use-keyboard-shortcuts';
|
|
export { useMessageQueue } from './use-message-queue';
|
|
export { useOSDetection, type OperatingSystem, type OSDetectionResult } from './use-os-detection';
|
|
export { useResponsiveKanban } from './use-responsive-kanban';
|
|
export { useScrollTracking } from './use-scroll-tracking';
|
|
export { useSettingsMigration } from './use-settings-migration';
|
|
export { useWindowState } from './use-window-state';
|