()
| 47 | // instead of Commander emitting a generic unknown-option error (or, for |
| 48 | // `show`, silently ignoring it via allowUnknownOption). |
| 49 | function hiddenStorePathOption(): Option { |
| 50 | return new Option( |
| 51 | '--store-path <path>', |
| 52 | 'Not supported; register the path with "openspec store register <path>" and use --store <id>' |
| 53 | ).hideHelp(); |
| 54 | } |
| 55 | |
| 56 | function failWithError( |
| 57 | error: unknown, |