Files
claude-code/src/commands/agents/index.ts
nirholas 646ef1ac8e 💐 index.ts
2026-03-31 10:22:41 +00:00

12 lines
233 B
TypeScript

import type { Command } from '../../commands.js'
const agents = {
type: 'local-jsx',
name: 'agents',
description: 'Manage agent configurations',
load: () => import('./agents.js'),
} satisfies Command
export default agents