(user: string, name: string)
| 412 | const userSkillsPath = (user: string) => |
| 413 | `/api/experimental/users/${encodeURIComponent(user)}/skills`; |
| 414 | const userSkillPath = (user: string, name: string) => |
| 415 | `${userSkillsPath(user)}/${encodeURIComponent(name)}`; |
| 416 | const userAIProviderKeysPath = (user = "me") => |
| 417 | `/api/experimental/users/${encodeURIComponent(user)}/ai-provider-keys`; |
| 418 | const mcpServerConfigsPath = "/api/experimental/mcp/servers"; |
no test coverage detected