source dump of claude code
at main 13 lines 381 B view raw
1import { getIsNonInteractiveSession } from '../../bootstrap/state.js' 2import type { Command } from '../../commands.js' 3 4const command: Command = { 5 name: 'chrome', 6 description: 'Claude in Chrome (Beta) settings', 7 availability: ['claude-ai'], 8 isEnabled: () => !getIsNonInteractiveSession(), 9 type: 'local-jsx', 10 load: () => import('./chrome.js'), 11} 12 13export default command