import * as React from 'react' import type { Command } from '../commands' import { getGlobalConfig, saveGlobalConfig } from '../utils/config' import { clearTerminal } from '../utils/terminal' import { Text } from 'ink' export default { type: 'local-jsx', name: 'logout', description: 'Sign out from your Anthropic account', isEnabled: true, isHidden: false, async call() { await clearTerminal() const config = getGlobalConfig() config.oauthAccount = undefined config.hasCompletedOnboarding = false if (config.customApiKeyResponses?.approved) { config.customApiKeyResponses.approved = [] } saveGlobalConfig(config) const message = ( Successfully logged out from your Anthropic account. ) setTimeout(() => { process.exit(0) }, 200) return message }, userFacingName() { return 'logout' }, } satisfies Command