(topicName: string)
| 1074 | } |
| 1075 | |
| 1076 | function buildHelpTopicUsageText(topicName: string): string | null { |
| 1077 | const topic = HELP_TOPICS[topicName as keyof typeof HELP_TOPICS]; |
| 1078 | if (!topic) return null; |
| 1079 | return `${topic.body} |
| 1080 | |
| 1081 | Related: |
| 1082 | agent-device help command list and global flags |
| 1083 | agent-device help <command> command-specific flags |
| 1084 | agent-device help workflow normal app automation loop |
| 1085 | `; |
| 1086 | } |
no outgoing calls
no test coverage detected