What problem does it solve?
Extending the Paseo agent interface requires knowledge of its plugin contract, theming rules, RPC system, and daemon lifecycle. This Skill guides the creation, installation, reloading, and troubleshooting of Paseo plugins so contributions work correctly across desktop, mobile, and web clients.
Core Features & Use Cases
- Plugin scaffolding and lifecycle: Initialize projects with
paseo plugin init, then typecheck, install, reload, enable, disable, and remove plugins via the CLI.
- UI contributions: Add workspace panels, sidebar surfaces, and command center items using React Native primitives with theme-aware colors and compact layout handling.
- Daemon-side RPCs and attachments: Define Zod-validated RPC contracts with
defineRpc, register subprocess handlers, and contribute composer attachment sources while keeping credentials on the daemon.
- Use Case: A developer wants a sidebar counter panel plus a backend RPC that reads daemon config. The Skill walks through scaffolding the project, registering the surface and handler, typechecking, installing, and verifying the plugin reaches
running status.
Quick Start
Ask the AI to create a new Paseo plugin with a sidebar surface and install it on the local daemon.