mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
- Added OpenCode authentication status check to the OpencodeProvider class. - Introduced OpenCodeAuthStatus interface to manage authentication states. - Updated detectInstallation method to include authentication status in the response. - Created ProvidersSetupStep component to consolidate provider setup UI, including Claude, Cursor, Codex, and OpenCode. - Refactored setup view to streamline navigation and improve user experience. - Enhanced OpenCode CLI integration with updated installation paths and authentication checks. This commit enhances the setup process by allowing users to configure and authenticate multiple AI providers, improving overall functionality and user experience.
13 lines
602 B
TypeScript
13 lines
602 B
TypeScript
// Re-export all setup step components for easier imports
|
|
export { WelcomeStep } from './welcome-step';
|
|
export { ThemeStep } from './theme-step';
|
|
export { CompleteStep } from './complete-step';
|
|
export { ProvidersSetupStep } from './providers-setup-step';
|
|
export { GitHubSetupStep } from './github-setup-step';
|
|
|
|
// Legacy individual step exports (kept for backwards compatibility)
|
|
export { ClaudeSetupStep } from './claude-setup-step';
|
|
export { CursorSetupStep } from './cursor-setup-step';
|
|
export { CodexSetupStep } from './codex-setup-step';
|
|
export { OpencodeSetupStep } from './opencode-setup-step';
|