What problem does it solve? Installing pi extensions manually with shell commands like pi install or pi add skips validation and produces inconsistent results. This Skill ensures every pi extension installation goes through the extension_creator tool, which validates the extension first and performs a deterministic file copy to ~/.pi-extensions/<name>. ## Core Features & Use Cases - Tool-Enforced Installation: Routes all install requests (local path, git repo, or any source) through the extension_creator tool with mode: "install". - Pre-Install Validation: Checks package.json, tsconfig, and entrypoint before copying files, surfacing clear error messages on failure. - Automatic Replacement: Reinstalling an extension with the same name removes the old version and replaces it automatically. - Use Case: A user says "install my extension at ./my-cool-extension" — the Skill calls extension_creator with the install mode and path, then reports the result, e.g. "Installed my-cool-extension to ~/.pi-extensions/my-cool-extension". ## Quick Start Ask the assistant to install your pi extension from a given path, for example: "Install my pi extension located at ./my-cool-extension using the extension_creator tool."