claude-code/commands/hooks/index.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

11 lines
260 B
TypeScript

import type { Command } from '../../commands.js'
const hooks = {
type: 'local-jsx',
name: 'hooks',
description: 'View hook configurations for tool events',
immediate: true,
load: () => import('./hooks.js'),
} satisfies Command
export default hooks