What problem does it solve? Adding custom row-level logic to a WebRobot pipeline normally requires building and deploying a compiled Scala plugin. This Skill lets you write lightweight Python functions that run as pipeline stages, either embedded inline in the pipeline YAML or registered once via API and reused across agents. ## Core Features & Use Cases - Inline Python Extensions: Embed python_row_transform functions directly in the pipeline YAML under python_extensions.stages for prototyping and one-off pipelines. - Registered Extensions: Register functions via the WebRobot API so multiple agents and teams can reference the same logic by name. - Hybrid Mode: Combine database-registered shared logic with pipeline-specific inline functions for production pipelines. - Use Case: You scrape product pages and need to parse prices like "€1.299,00" into a numeric amount plus currency code. Write a parse_price Python function, embed it in the YAML, reference it as python_row_transform:parse_price, and validate the manifest before deploying. ## Quick Start Ask the AI to write a Python row transform that parses a price field into amount and currency and embed it into your WebRobot pipeline YAML.