source dump of claude code
at main 12 lines 321 B view raw
1import type { Command } from '../../commands.js' 2 3const tag = { 4 type: 'local-jsx', 5 name: 'tag', 6 description: 'Toggle a searchable tag on the current session', 7 isEnabled: () => process.env.USER_TYPE === 'ant', 8 argumentHint: '<tag-name>', 9 load: () => import('./tag.js'), 10} satisfies Command 11 12export default tag