source dump of claude code
0
fork

Configure Feed

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

at main 31 lines 654 B view raw
1import type { CommandSpec } from '../registry.js' 2 3const srun: CommandSpec = { 4 name: 'srun', 5 description: 'Run a command on SLURM cluster nodes', 6 options: [ 7 { 8 name: ['-n', '--ntasks'], 9 description: 'Number of tasks', 10 args: { 11 name: 'count', 12 description: 'Number of tasks to run', 13 }, 14 }, 15 { 16 name: ['-N', '--nodes'], 17 description: 'Number of nodes', 18 args: { 19 name: 'count', 20 description: 'Number of nodes to allocate', 21 }, 22 }, 23 ], 24 args: { 25 name: 'command', 26 description: 'Command to run on the cluster', 27 isCommand: true, 28 }, 29} 30 31export default srun