getGitHubCustomArgs extracts custom args from GitHub tool configuration
(githubTool any)
| 37 | |
| 38 | // getGitHubCustomArgs extracts custom args from GitHub tool configuration |
| 39 | func getGitHubCustomArgs(githubTool any) []string { |
| 40 | if toolConfig, ok := githubTool.(map[string]any); ok { |
| 41 | return extractCustomArgs(toolConfig) |
| 42 | } |
| 43 | return nil |
| 44 | } |
| 45 | |
| 46 | // getPlaywrightCustomArgs extracts custom args from Playwright tool configuration |
| 47 | func getPlaywrightCustomArgs(playwrightConfig *PlaywrightToolConfig) []string { |