extractDescription extracts description from JSDoc comment
(content string)
| 192 | |
| 193 | // extractDescription extracts description from JSDoc comment |
| 194 | func extractDescription(content string) string { |
| 195 | // Look for JSDoc block comment at the start of main() or file |
| 196 | matches := jsdocDescriptionPattern.FindStringSubmatch(content) |
| 197 | if len(matches) > 1 { |
| 198 | return strings.TrimSpace(matches[1]) |
| 199 | } |
| 200 | return "" |
| 201 | } |
| 202 | |
| 203 | // generateHumanReadableName converts action name to human-readable format |
| 204 | func generateHumanReadableName(actionName string) string { |
no outgoing calls