mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
14 lines
370 B
TypeScript
14 lines
370 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: [],
|
|
isEnabled: () => !getIsNonInteractiveSession(),
|
|
type: 'local-jsx',
|
|
load: () => import('./chrome.js'),
|
|
}
|
|
|
|
export default command
|