You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: replace repetitive lambdas in tool registry with factory extractors
Eight inline lambdas in _TOOL_REGISTRY followed two repeated patterns:
`lambda i: i.get(key, "")` (5 instances) and
`lambda i: _format_params(i, [...])` (3 instances, 2 identical).
Extract `_extract_key(key)` and `_extract_params(*keys)` factories so
the registry table reads as declarative config instead of ad-hoc closures.
Co-authored-by: Ralphify <noreply@ralphify.co>
0 commit comments