mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 22:35:51 +00:00
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const skillSearch = {
|
|
type: 'local-jsx',
|
|
name: 'skill-search',
|
|
description: 'Control automatic skill matching during conversations',
|
|
argumentHint: '[start|stop|about|status]',
|
|
isHidden: false,
|
|
load: () => import('./skillSearchPanel.js'),
|
|
} satisfies Command
|
|
|
|
export default skillSearch
|