source dump of claude code
0
fork

Configure Feed

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

at main 18 lines 380 B view raw
1import type { CommandSpec } from '../registry.js' 2import alias from './alias.js' 3import nohup from './nohup.js' 4import pyright from './pyright.js' 5import sleep from './sleep.js' 6import srun from './srun.js' 7import time from './time.js' 8import timeout from './timeout.js' 9 10export default [ 11 pyright, 12 timeout, 13 sleep, 14 alias, 15 nohup, 16 time, 17 srun, 18] satisfies CommandSpec[]