source dump of claude code
at main 13 lines 314 B view raw
1import type { Command } from '../../commands.js' 2 3const btw = { 4 type: 'local-jsx', 5 name: 'btw', 6 description: 7 'Ask a quick side question without interrupting the main conversation', 8 immediate: true, 9 argumentHint: '<question>', 10 load: () => import('./btw.js'), 11} satisfies Command 12 13export default btw