What problem does it solve? It guides developers through scaffolding, implementing, packaging, and publishing deterministic Python Coded Functions on the UiPath platform when out-of-the-box activities cannot cover custom business logic such as ERP connector calls, document processing rules, or data transformations. ## Core Features & Use Cases - Full CLI lifecycle: Covers uip function new/init/run/pack/publish/push for scaffolding, entry-point generation, packaging to .nupkg, and publishing to Orchestrator or Studio Web. - Typed I/O and registration patterns: Defines pydantic Input/Output models, the functions map in uipath.json, entry-points.json generation, and file attachment inputs via the Attachment type. - Platform SDK integration: Shows how to retrieve assets, download bucket files, and invoke Integration Service connector activities through the UiPath Python SDK. - Use Case: Build a function that queries an ERP system via an Integration Service connection, transforms the result with rule-based logic, and returns typed output invocable from Maestro, Flow, or a Coded Agent. ## Quick Start Scaffold a new Python Coded Function with typed pydantic input and output, register it in uipath.json, then run uip function init, pack, and publish to Orchestrator.