(label: string | null | undefined)
| 82 | } |
| 83 | |
| 84 | export function pluginInitial(label: string | null | undefined): string { |
| 85 | if (!label) return "?" |
| 86 | return label.trim().charAt(0).toUpperCase() || "?" |
| 87 | } |
| 88 | |
| 89 | export type PluginDocSource = { |
| 90 | pluginId: "claude-code" |
no outgoing calls
no test coverage detected
searching dependent graphs…