mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 18:16:58 +10:00
14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
|
|
import { getIsNonInteractiveSession } from '../../bootstrap/state.js'
|
||
|
|
import type { Command } from '../../commands.js'
|
||
|
|
|
||
|
|
const command: Command = {
|
||
|
|
name: 'chrome',
|
||
|
|
description: 'Claude in Chrome (Beta) settings',
|
||
|
|
availability: ['claude-ai'],
|
||
|
|
isEnabled: () => !getIsNonInteractiveSession(),
|
||
|
|
type: 'local-jsx',
|
||
|
|
load: () => import('./chrome.js'),
|
||
|
|
}
|
||
|
|
|
||
|
|
export default command
|