(Alleged) Leaked source of Claude Code
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 14 lines 313 B view raw
1import type { CommandSpec } from '../registry.js' 2 3const alias: CommandSpec = { 4 name: 'alias', 5 description: 'Create or list command aliases', 6 args: { 7 name: 'definition', 8 description: 'Alias definition in the form name=value', 9 isOptional: true, 10 isVariadic: true, 11 }, 12} 13 14export default alias