(Alleged) Leaked source of Claude Code
0
fork

Configure Feed

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

at main 13 lines 274 B view raw
1import type { CommandSpec } from '../registry.js' 2 3const nohup: CommandSpec = { 4 name: 'nohup', 5 description: 'Run a command immune to hangups', 6 args: { 7 name: 'command', 8 description: 'Command to run with nohup', 9 isCommand: true, 10 }, 11} 12 13export default nohup