Files
claude-code-mirror/claude-code源码-中文注释/src/commands/agents/index.ts
2026-04-03 13:01:19 +08:00

11 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