(path: string, filename: string)
| 51 | } |
| 52 | |
| 53 | function isWorkflowArtifactPath(path: string, filename: string): boolean { |
| 54 | const trimmed = path.trim() |
| 55 | return trimmed.startsWith('workflows/') && trimmed.endsWith(`/${filename}`) |
| 56 | } |
| 57 | |
| 58 | function workspaceFileTitle(args: ToolArgs): string { |
| 59 | const title = stringArg(args, 'title') |
no outgoing calls
no test coverage detected