What problem does it solve? Working with a running Sitecore instance from a SharpPS-scaffolded solution involves many non-obvious pitfalls: module installation without admin rights, self-signed certificate trust failures, nonexistent SPE cmdlets, wrong serialization formats, and blocked live writes from Claude Code. This Skill encodes the live-verified correct procedures so you avoid those traps. ## Core Features & Use Cases - Module Bootstrap: Install and import SharpPS.Shells and the SPE client module with CurrentUser scope when admin rights are unavailable, including the self-signed cert trust override required by New-SPESession. - Remote Item Creation: Create Template, Template Section, Template Field, rendering, and datasource items on a live instance through New-SPESession and Invoke-RemoteScript, using Add-BaseTemplate and low-level New-Item rather than nonexistent convenience cmdlets. - Unicorn Serialization: Serialize newly created items with Export-UnicornItem (not SPE's Export-Item), locate the real Rainbow physical root path, handle 30-character filename truncation, and retrieve files from remote instances via Receive-RemoteItem. - Use Case: You need to scaffold a new SXA rendering with its datasource template and sample datasource item on a remote Sitecore instance, then commit the serialized YAML to your local repo. This Skill walks you through the session setup, item creation, Unicorn export, and file retrieval end to end. ## Quick Start Ask the AI to create a new rendering with its datasource template and a sample datasource item on your Sitecore instance using SPE Remoting, then serialize them with Unicorn and pull the YAML files into the local repo.