claude-code/commands/add-dir/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 addDir = {
type: 'local-jsx',
name: 'add-dir',
description: 'Add a new working directory',
argumentHint: '<path>',
load: () => import('./add-dir.js'),
} satisfies Command
export default addDir