source dump of claude code
at main 13 lines 315 B view raw
1import type { CommandSpec } from '../registry.js' 2 3const sleep: CommandSpec = { 4 name: 'sleep', 5 description: 'Delay for a specified amount of time', 6 args: { 7 name: 'duration', 8 description: 'Duration to sleep (seconds or with suffix like 5s, 2m, 1h)', 9 isOptional: false, 10 }, 11} 12 13export default sleep