slug-code/commands/agents/index.ts
2026-03-31 12:46:52 -04:00

10 lines
232 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