| 78 | } |
| 79 | |
| 80 | interface CommandRow { |
| 81 | /** Left column, e.g. `list <flags>` or `read <path>`. */ |
| 82 | name: string |
| 83 | /** Right column primary description. */ |
| 84 | description: string |
| 85 | /** Optional flag hint shown in muted text under the description, |
| 86 | * e.g. `--folder <f> --tag <t> --json`. */ |
| 87 | flags?: string |
| 88 | } |
| 89 | |
| 90 | const SECTIONS: Array<{ heading: string; rows: CommandRow[] }> = [ |
| 91 | { |
nothing calls this directly
no outgoing calls
no test coverage detected